[rt-users] sendmail error (exited with code 75) - RHEL6
Thomas Sibley
trs at bestpractical.com
Tue Sep 4 14:13:58 EDT 2012
Unrelated notes about your template below.
Hmm. Can you wrap /usr/sbin/sendmail with a tiny shell script that
tee's the input somewhere else and then passes it through to the real
sendmail?
mv -v /usr/sbin/sendmail{,.real}
cat /usr/sbin/sendmail
#!/bin/bash
exec tee -a /tmp/sendmail-stdin | /usr/sbin/sendmail.real "$@"
^D
chmod a+rx /usr/sbin/sendmail
On 09/04/2012 09:30 AM, Raphaël Berlamont wrote:
> New template i've set up, very basic though (sorry, French here ;)) :
> =================
> Subject: {$Ticket->Subject} : pris en charge par { $Ticket->OwnerObj->Name }
> Bonjour,
The lack of a blank line between your header block (containing Subject:
...) and the body of your message "Bonjour," is going to cause problems.
"Bonjour," is going to be parsed as a header. You should put a blank
line between the two lines above.
More information about the rt-users
mailing list