You are not logged in.
How to remove signature from the email, while sending a ticket or follow up?
Sending or replying on a follow up email received from GLPI generates a lot of unnecessary text.
GLPI v.85.2
Offline
One of the feature of v 0.85.2 supposed to be:
"Improved import emails (removal of the signature and the previous posts before importation)"
so the question is, how can i find it?
Offline
This feature began working automatically for me, but not 100% of the time.
Offline
I have just realized, that it started working for me too. But it is not perfect, as removal of the signature rely on the ex. Outlook configuration. GLPI will not remove the signature. It will remove old message part, but the new message with the same signature will remains.
It would be good to implement something like removing the message part, that starts from ex. 'best regards' or something.
Offline
Hello. I am sorry for refresh old post, but did somebody find the solution after 6 years?
Offline
Hi, today I casually ask myself the same thing
Offline
Hi, today I casually ask myself the same thing
Let's check a Ticket Cleaner plugin on github.com/tomolimo/ticketcleaner
I am testing this solution but for now without success.
Offline
Hi,
I remove the thunderbird default message : "On 12/12/2012 randomuser wrote :" with pre_replace like this(and you can do this for signatures)"
In mailcollector.php, find the comment "clean mail content" around line 1215
Right after the comment "clean mail conten" : add multiple variables like this with the "begin" or "end" signature characters in it.
$tkt['content'] = preg_replace('/' . preg_quote('On') .
'.*?' .
preg_quote('wrote:') . '/', '', $tkt['content']);
}
Otherwise, you got the github.com/tomolimo/mailbehaviours but not you need it updated.
Kind regards,
Support GLPI with a donation : opencollective.com/glpi-project
Offline