Nov 02, '03 06:32:00PM • Contributed by: endres
The solution turned out to be ridiculously easy. The file /usr -> libexec -> fax -> faxnotify had this line which would mail out the entire MIME message as the body of another message, causing an email with no subject and the wrong sender:
stdout, stdin = os.popen2('/usr/bin/mail ' + quote(receipents))
Changing it to the line shown below causes the mail and attachment to go out properly:
stdout, stdin = os.popen2('/usr/sbin/sendmail ' + quote(receipents))
[robg adds: I have not tested this one myself.]
