summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@iki.fi>2006-11-10 19:33:46 +0200
committerLars Wirzenius <liw@iki.fi>2006-11-10 19:33:46 +0200
commit40fddc23dd3b446e0a80bd2865c6fc94105d77f4 (patch)
tree648eb49e4047841b14220c1b47e27ab5a3aa1a38
parentb14cea5f79c3cef4a592706770a58dcee9210f72 (diff)
downloadeoc-40fddc23dd3b446e0a80bd2865c6fc94105d77f4.tar.gz
Don't kill EoC when MIME header encodings are broken. New release.
-rw-r--r--NEWS5
-rw-r--r--eoc.py4
2 files changed, 7 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 595a656..dd70ea0 100644
--- 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 8345a41..ecb8daf 100644
--- 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):