[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[minion-cvs] Fix typo in Modules.sendSMTPMessage



Update of /home/minion/cvsroot/src/minion/lib/mixminion
In directory moria.seul.org:/tmp/cvs-serv11081/lib/mixminion

Modified Files:
	Modules.py 
Log Message:
Fix typo in Modules.sendSMTPMessage

Mixminion can now talk to your MTA.  Be afraid. ;)


Index: Modules.py
===================================================================
RCS file: /home/minion/cvsroot/src/minion/lib/mixminion/Modules.py,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -d -r1.19 -r1.20
--- Modules.py	2 Dec 2002 03:41:49 -0000	1.19
+++ Modules.py	2 Dec 2002 04:25:52 -0000	1.20
@@ -538,7 +538,7 @@
         
 #----------------------------------------------------------------------
 def sendSMTPMessage(server, toList, fromAddr, message):
-    con = smtplib(server)
+    con = smtplib.SMTP(server)
     try:
 	con.sendmail(fromAddr, toList, message)
 	res = DELIVER_OK