In ud-mailgate use an empty envelope from when sending error messages userdir-ldap-0.3.57
authorPeter Palfrader <peter@palfrader.org>
Thu, 18 Dec 2008 09:04:19 +0000 (10:04 +0100)
committerPeter Palfrader <peter@palfrader.org>
Thu, 18 Dec 2008 09:04:19 +0000 (10:04 +0100)
debian/changelog
ud-mailgate

index 5430cfc..11e8c9a 100644 (file)
@@ -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 <weasel@debian.org>  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
index a3a21a8..90069c8 100755 (executable)
@@ -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: