From: Peter Palfrader Date: Thu, 18 Dec 2008 09:04:19 +0000 (+0100) Subject: In ud-mailgate use an empty envelope from when sending error messages X-Git-Tag: userdir-ldap-0.3.57 X-Git-Url: https://git.adam-barratt.org.uk/?p=mirror%2Fuserdir-ldap.git;a=commitdiff_plain;h=af589fbc5d5694eb2c9b36f77be3735162a5fb41 In ud-mailgate use an empty envelope from when sending error messages --- diff --git a/debian/changelog b/debian/changelog index 5430cfc..11e8c9a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +userdir-ldap (0.3.57) unstable; urgency=low + + * In ud-mailgate use an empty envelope from when sending error messages. + + -- Peter Palfrader Thu, 18 Dec 2008 10:03:35 +0100 + userdir-ldap (0.3.56) unstable; urgency=low * There is a deadlock situation when ud-mailgate gets a mail claiming diff --git a/ud-mailgate b/ud-mailgate index a3a21a8..90069c8 100755 --- a/ud-mailgate +++ b/ud-mailgate @@ -786,7 +786,7 @@ except: try: ErrReply = TemplateSubst(Subst,open(TemplatesDir+"error-reply","r").read()); - Child = os.popen("/usr/sbin/sendmail -t","w"); + Child = os.popen("/usr/sbin/sendmail -t -oi -f ''","w"); Child.write(ErrReplyHead); Child.write(ErrReply); if Child.close() != None: