I'm having the same problem. Thx for submitting the bug, hopefully it will be fixed soon.

In the meanwhile I wrote this hack:

In Kernel/Modules/AgentTicketEmail.pm:633
$GetParam{Subject} = $Self->{TicketObject}->TicketSubjectBuild(
    TicketNumber => $Tn,
    Subject => $GetParam{Subject} || '',
);
# new:
$GetParam{Subject} = substr( $GetParam{Subject},
        length( $Self->{ConfigObject}->Get('Ticket::SubjectRe') ) + 2,
length( $GetParam{Subject} ) - length( $Self->{ConfigObject}->Get('Ticket::SubjectRe') ) + 2 );
# :new
$GetParam{Body} .= "\n\n".$Signature;

This chops off the SubjectRe value and the following ": ". This way a new ticket does not contain the "Re: " piece anymore. Dirty hack but it works :)

Kind regards,

Richard Hinkamp
_______________________________________________
OTRS mailing list: otrs - Webpage: http://otrs.org/
Archive: http://lists.otrs.org/pipermail/otrs
To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/otrs
Support oder Consulting für Ihr OTRS System?
=> http://www.otrs.de/

Reply via email to