X-Git-Url: https://git.sommitrealweird.co.uk/eoc.git/blobdiff_plain/f9259c79966a76b34330a0fb57cd0c55361bbab2..c0ac7a7db01233e7aff1d4b6ef55e9f959825bce:/eoc.py diff --git a/eoc.py b/eoc.py index dadeb46..b385fcf 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.4" +VERSION = "1.2.6" PLUGIN_INTERFACE_VERSION = "1" import getopt @@ -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): @@ -657,7 +657,7 @@ class MailingList: "boundary": self.invent_boundary(), }) else: - self.info_message([recipient], "setlist-sorry", {}) + self.send_info_message([recipient], "setlist-sorry", {}) def parse_setlist_addresses(self, text): body = text.split("\n\n", 1)[1]