Don't kill EoC when MIME header encodings are broken. New release.
authorLars Wirzenius <liw@iki.fi>
Fri, 10 Nov 2006 17:33:46 +0000 (19:33 +0200)
committerLars Wirzenius <liw@iki.fi>
Fri, 10 Nov 2006 17:33:46 +0000 (19:33 +0200)
NEWS
eoc.py

diff --git a/NEWS b/NEWS
index 595a6568602526c78ccb75ac462d4316f1454bfe..dd70ea0279e4cc21078cd237b6c27152e233e3fa 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,10 @@
 NEWS file for Enemies of Carlotta, a mailing list manager
 
+Significant user-visible changes from version 1.2.2 to version 1.2.3:
+
+    * When there is a problem with MIME header encodings, don't kill EoC,
+      just print a warning.
+
 Significant user-visible changes from version 1.2.1 to version 1.2.2:
 
     * Manual page: documents the values to the --posting option, and has
diff --git a/eoc.py b/eoc.py
index 8345a411fc8c00030d3b9074b53feb3f267a732f..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.2"
+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):