SVN: repo-scripts/mailer.py

twittner cvs at pld-linux.org
Thu Sep 7 22:15:19 CEST 2006


Author: twittner
Date: Thu Sep  7 22:15:17 2006
New Revision: 7733

Modified:
   repo-scripts/mailer.py
Log:
- fixed options order in sendmail invokation
  ('-f -i' was wrong because, -f takes an argument)
- please sync this change with svn (and check if it works - ech)


Modified: repo-scripts/mailer.py
==============================================================================
--- repo-scripts/mailer.py	(original)
+++ repo-scripts/mailer.py	Thu Sep  7 22:15:17 2006
@@ -268,7 +268,7 @@
 
     ### gotta fix this. this is pretty specific to sendmail and qmail's
     ### mailwrapper program. should be able to use option param substitution
-    cmd = self.cmd + [ '-f', '-i', self.from_addr, self.to_addr ]
+    cmd = self.cmd + [ '-i', '-f', self.from_addr, self.to_addr ]
 
     # construct the pipe for talking to the mailer
     self.pipe = popen2.Popen3(cmd)


More information about the pld-cvs-commit mailing list