Don't kill EoC when MIME header encodings are broken. New release.
[eoc.git] / eoc.py
diff --git a/eoc.py b/eoc.py
index c2df4038be7587dfc627c0232b8c11789a746cf1..ecb8dafccf99baa56699610ba0c5db5009a3cd7a 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.1"
+VERSION = "1.2.3"
 PLUGIN_INTERFACE_VERSION = "1"
 
 import getopt
@@ -529,7 +529,7 @@ class MailingList:
         
             return "\n".join(headers) + "\n\n" + body
         except:
-            error("Cannot MIME encode header, using original ones, sorry")
+            warning("Cannot MIME encode header, using original ones, sorry")
             return text
 
     def template(self, template_name, dict):