Print error with the right function.
[eoc.git] / eoc.py
diff --git a/eoc.py b/eoc.py
index f855b36333737e77f1599a551ba107f9732ded1c..bf106630cf4e5fd6980ec12bc7ec9fa636a2e110 100644 (file)
--- a/eoc.py
+++ b/eoc.py
@@ -4,7 +4,7 @@ This is a simple mailing list manager that mimicks the ezmlm-idx mail
 address commands. See manual page for more information.
 """
 
-VERSION = "1.2.4"
+VERSION = "1.2.5"
 PLUGIN_INTERFACE_VERSION = "1"
 
 import getopt
@@ -440,7 +440,7 @@ class MailingListManager:
                     sys.exit(1)
             else:
                 status = forkexec([self.sendmail, "-oi", "-f", 
-                                   envelope_sender] + recipienients, text)
+                                   envelope_sender] + recipients, text)
                 if status:
                     error("%s returned %s, mail sending probably failed" %
                            (self.sendmail, status))
@@ -551,7 +551,7 @@ class MailingList:
         
             return "\n".join(headers) + "\n\n" + body
         except:
-            warning("Cannot MIME encode header, using original ones, sorry")
+            info("Cannot MIME encode header, using original ones, sorry")
             return text
 
     def template(self, template_name, dict):