From flo.fuchs at gmail.com Sun Apr 3 22:58:28 2011 From: flo.fuchs at gmail.com (Florian Fuchs) Date: Sun, 03 Apr 2011 20:58:28 -0000 Subject: [Merge] lp:~flo-fuchs/mailman.client/settings into lp:mailman.client Message-ID: <20110403205827.21436.60592.launchpad@loganberry.canonical.com> Florian Fuchs has proposed merging lp:~flo-fuchs/mailman.client/settings into lp:mailman.client. Requested reviews: Barry Warsaw (barry) For more details, see: https://code.launchpad.net/~flo-fuchs/mailman.client/settings/+merge/56088 Hi, I have added methods to delete mailing lists as well as a _Settings class to read and write list settings. Please feel free to make any changes you want (...and, of course, tell me if you feel this should be done completely differently... ;-) Cheers Florian -- https://code.launchpad.net/~flo-fuchs/mailman.client/settings/+merge/56088 Your team Mailman Coders is subscribed to branch lp:mailman.client. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 4502 bytes Desc: not available URL: From jeffrey.h.jacobs at gmail.com Mon Apr 4 20:35:26 2011 From: jeffrey.h.jacobs at gmail.com (Jeffrey Jacobs) Date: Mon, 4 Apr 2011 11:35:26 -0700 Subject: patch to threading.py correcting unhandled exception. Message-ID: Coders, I wrote this patch for threading.py which corrects an unhandled exception problem I ran up against. --- threading27.py Mon Apr 05 20:23:34 2010+++ threadingmod27.py Tue Mar 29 10:16:59 2011@@ -439,6 +439,7 @@ self.__stopped = False self.__block = Condition(Lock()) self.__initialized = True+ self.isSelfInLimbo = True # sys.stderr is not stored in the class like # sys.exc_info since it can be changed between instances self.__stderr = _sys.stderr@@ -484,7 +485,9 @@ finally: # Avoid a refcycle if the thread is running a function with # an argument that has a member that points to the thread.- del self.__target, self.__args, self.__kwargs+ if not self.isSelfInLimbo:+ self.isSelfInLimbo = True+ del self.__target, self.__args, self.__kwargs def __bootstrap(self): # Wrapper around the real bootstrap code that ignores@@ -515,7 +518,10 @@ self.__started.set() with _active_limbo_lock: _active[self.__ident] = self- del _limbo[self]+ if self in _limbo:+ del _limbo[self]+ else:+ self.isSelfInLimbo = False if __debug__: self._note("%s.__bootstrap(): thread started", self) I also posted this patch to the python "Asking For Help Wiki" at wiki.python.org. You can find it by searching for title "unhandled exception threading". This may not be the very best solution for the problem, but I believe some correction is in order. Sincrely, Jeff Jacobs -------------- next part -------------- An HTML attachment was scrubbed... URL: From 643949 at bugs.launchpad.net Thu Apr 7 20:41:07 2011 From: 643949 at bugs.launchpad.net (Barry Warsaw) Date: Thu, 07 Apr 2011 18:41:07 -0000 Subject: [Bug 643949] Re: Need REST API to change existing user's email References: <20100920225617.20603.19291.malonedeb@soybean.canonical.com> Message-ID: <20110407184107.4272.17898.launchpad@wampee.canonical.com> ** Changed in: mailman Status: Confirmed => In Progress -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/643949 Title: Need REST API to change existing user's email From 756943 at bugs.launchpad.net Mon Apr 11 01:05:15 2011 From: 756943 at bugs.launchpad.net (Barry Warsaw) Date: Sun, 10 Apr 2011 23:05:15 -0000 Subject: [Bug 756943] [NEW] 13 revisions removed from the branch References: <20110410230515.25540.42750.malonedeb@soybean.canonical.com> Message-ID: <20110410230515.25540.42750.malonedeb@soybean.canonical.com> Public bug reported: I did a trunk merge of lp:mailman into a local 3.0 branch that had some weird resolution issues. The email notification said "13 revisions were removed from the branch" and the test suite broke. I reverted the revision and attach the diff for future resolution. ** Affects: mailman Importance: Undecided Status: New ** Tags: mailman3 ** Tags added: mailman3 -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/756943 Title: 13 revisions removed from the branch From 756943 at bugs.launchpad.net Mon Apr 11 01:06:19 2011 From: 756943 at bugs.launchpad.net (Barry Warsaw) Date: Sun, 10 Apr 2011 23:06:19 -0000 Subject: [Bug 756943] Re: 13 revisions removed from the branch References: <20110410230515.25540.42750.malonedeb@soybean.canonical.com> Message-ID: <20110410230619.4344.49380.malone@wampee.canonical.com> ** Attachment added: "diff.txt" https://bugs.launchpad.net/mailman/+bug/756943/+attachment/2012938/+files/diff.txt -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/756943 Title: 13 revisions removed from the branch From mark at msapiro.net Mon Apr 11 05:26:49 2011 From: mark at msapiro.net (Mark Sapiro) Date: Mon, 11 Apr 2011 03:26:49 -0000 Subject: [Bug 757062] [NEW] Content filtering can remove the headers from a message/rfc822 part. References: <20110411032649.25540.48269.malonedeb@soybean.canonical.com> Message-ID: <20110411032649.25540.48269.malonedeb@soybean.canonical.com> Public bug reported: If Content filtering accepts both message/rfc822 and multipart/alternative MIME parts, and a message/rfc822 part contains a message whose content type is multipart/alternative and collapse_alternatives is Yes, the headers of the message in the message/rfc822 part will be lost. ** Affects: mailman Importance: Low Assignee: Mark Sapiro (msapiro) Status: In Progress ** Tags: mailman3 -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/757062 Title: Content filtering can remove the headers from a message/rfc822 part. From mark at msapiro.net Wed Apr 13 06:18:21 2011 From: mark at msapiro.net (Mark Sapiro) Date: Wed, 13 Apr 2011 04:18:21 -0000 Subject: [Bug 757062] Re: Content filtering can remove the headers from a message/rfc822 part. References: <20110411032649.25540.48269.malonedeb@soybean.canonical.com> Message-ID: <20110413041822.30573.72323.launchpad@palladium.canonical.com> ** Changed in: mailman Status: In Progress => Fix Committed -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/757062 Title: Content filtering can remove the headers from a message/rfc822 part. From 266812 at bugs.launchpad.net Wed Apr 13 18:22:16 2011 From: 266812 at bugs.launchpad.net (Tom Helner) Date: Wed, 13 Apr 2011 16:22:16 -0000 Subject: [Bug 266812] Re: option to discard messages that lack explicit destination References: <20080905194253.1806.35374.launchpad@forster.canonical.com> Message-ID: <20110413162216.16615.47767.malone@soybean.canonical.com> Having hold, reject and discard choices for max_num_recipients and require_explicit_destination would be a HUGE help in the lists I manage. Unfortunately, I see this bug has been open since 2005s so I am not holding my breath. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/266812 Title: option to discard messages that lack explicit destination From 756943 at bugs.launchpad.net Thu Apr 14 13:11:34 2011 From: 756943 at bugs.launchpad.net (Barry Warsaw) Date: Thu, 14 Apr 2011 11:11:34 -0000 Subject: [Bug 756943] Re: 13 revisions removed from the branch References: <20110410230515.25540.42750.malonedeb@soybean.canonical.com> Message-ID: <20110414111134.30573.13794.malone@palladium.canonical.com> All resolved now. ** Changed in: mailman Status: New => Invalid -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/756943 Title: 13 revisions removed from the branch From mark at msapiro.net Fri Apr 15 01:14:45 2011 From: mark at msapiro.net (Mark Sapiro) Date: Thu, 14 Apr 2011 23:14:45 -0000 Subject: [Bug 761232] [NEW] Warnings when setting a list with digest members digestable=No or with non-digest members nondigestable=No do not identify affected members. References: <20110414231446.24079.44550.malonedeb@wampee.canonical.com> Message-ID: <20110414231446.24079.44550.malonedeb@wampee.canonical.com> Public bug reported: It would be good to identify the affected members in the warning. ** Affects: mailman Importance: Low Assignee: Mark Sapiro (msapiro) Status: In Progress -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/761232 Title: Warnings when setting a list with digest members digestable=No or with non-digest members nondigestable=No do not identify affected members. From mark at msapiro.net Fri Apr 15 01:25:17 2011 From: mark at msapiro.net (Mark Sapiro) Date: Thu, 14 Apr 2011 23:25:17 -0000 Subject: [Bug 761232] Re: Warnings when setting a list with digest members digestable=No or with non-digest members nondigestable=No do not identify affected members. References: <20110414231446.24079.44550.malonedeb@wampee.canonical.com> Message-ID: <20110414232518.30573.22665.launchpad@palladium.canonical.com> ** Changed in: mailman Status: In Progress => Fix Committed -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/761232 Title: Warnings when setting a list with digest members digestable=No or with non-digest members nondigestable=No do not identify affected members. From 265908 at bugs.launchpad.net Fri Apr 15 23:53:52 2011 From: 265908 at bugs.launchpad.net (Cedders) Date: Fri, 15 Apr 2011 21:53:52 -0000 Subject: [Bug 265908] Re: Unsub instructions difficult to find References: <20080905192659.27052.77024.launchpad@forster.canonical.com> Message-ID: <20110415215352.4766.91457.malone@chaenomeles.canonical.com> +1 for this Also, related, unsubscribe could be prioritised in the options page once an email address is supplied. ** Patch added: "Hack to make unsubscribe via options page a bit more user-friendly" https://bugs.launchpad.net/mailman/+bug/265908/+attachment/2043827/+files/mailman-unsubscribe-page-hack.diff -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/265908 Title: Unsub instructions difficult to find From 265908 at bugs.launchpad.net Fri Apr 15 23:57:59 2011 From: 265908 at bugs.launchpad.net (Cedders) Date: Fri, 15 Apr 2011 21:57:59 -0000 Subject: [Bug 265908] Re: Unsub instructions difficult to find References: <20080905192659.27052.77024.launchpad@forster.canonical.com> Message-ID: <20110415215800.4766.43060.malone@chaenomeles.canonical.com> Here's a patch just for the English template that does what the reporter suggests ** Patch added: "Reformat listinfo template" https://bugs.launchpad.net/mailman/+bug/265908/+attachment/2043861/+files/mailman-listinfo.diff -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/265908 Title: Unsub instructions difficult to find From 266806 at bugs.launchpad.net Sat Apr 16 00:09:04 2011 From: 266806 at bugs.launchpad.net (Cedders) Date: Fri, 15 Apr 2011 22:09:04 -0000 Subject: [Bug 266806] Re: unsubscribe removal confirmation should be optional References: <20080905194251.1806.9377.launchpad@forster.canonical.com> Message-ID: <20110415220904.5197.35317.malone@chaenomeles.canonical.com> I think Sourceforge bug 1951777 is a duplicate of this, and have commented there as follows. As I understand it, this bug suggests that a list could optionally be configured not to send confirm messages and allow an unsubscribe by email without the password, or via web; having send_goodbye_msg set to "yes" provides a certain level of security against abuse. This is also suggested in a message on mailman-users in 2001 as an additional supervisor function ALLOW_OPEN_UNSUBSCRIBE, and again in 2005 . I would prefer instead of ALLOW_OPEN_SUBSCRIBE an additional value for mlist.unsubscribe_policy =2 meaning no approval and no confirmation necessary - instant unsubscribe without any authorisation needed. Perhaps it could generate a warning if send_goodbye_msg==0, but I don't see any reason site managers would want to restrict it. Note that a one-click web unsubscribe is possible for non-digest users provided "personalize" is set to "yes" (or "full"). I find that on a one-to-many list of several thousand subscribers there can be a significant number of complaints from users who simply don't seem to be able to get their head around either requesting a password or responding to a confirmation token. This failure to follow the instructions produces spam reports and requires moderator intervention. So this can go the footer (this is the short form suggested by Jimm Tittsler in http://mail.python.org/pipermail/mailman-users/2005-May/044961.html): To unsubscribe click the link below: <%(user_optionsurl)s?password=%(user_password)s&unsub=1&unsubconfirm=1> However, this isn't the full solution that another choice of unsubscribe_policy would give. (I may have a go at implementing this.) ** Bug watch added: SourceForge.net Tracker #1951777 http://sourceforge.net/support/tracker.php?aid=1951777 -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/266806 Title: unsubscribe removal confirmation should be optional From 266732 at bugs.launchpad.net Sat Apr 16 00:12:22 2011 From: 266732 at bugs.launchpad.net (Cedders) Date: Fri, 15 Apr 2011 22:12:22 -0000 Subject: [Bug 266732] Re: genaliases shouldn`t call postmap after every list References: <20080905194231.1806.66431.launchpad@forster.canonical.com> Message-ID: <20110415221222.5413.23158.malone@chaenomeles.canonical.com> This is a duplicate of bug 266408. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/266732 Title: genaliases shouldn`t call postmap after every list From mark at msapiro.net Sat Apr 16 02:17:40 2011 From: mark at msapiro.net (Mark Sapiro) Date: Sat, 16 Apr 2011 00:17:40 -0000 Subject: [Bug 266806] Re: unsubscribe removal confirmation should be optional References: <20080905194251.1806.9377.launchpad@forster.canonical.com> Message-ID: <20110416001740.8106.88503.malone@soybean.canonical.com> Cedders wrote: #4 >I think Sourceforge bug 1951777 is a duplicate of this, and have commented there as follows. Please do not use the SourceForge Tracker. All mailman items therein were migrated to Launchpad as of 2008. SourceForge RFE 1951777 is LP Bug #266874 which is marked as a duplicate of this. No Mailman developers read the SourceForge tracker any more. As it says there, "Do not use this tracker! Submit your issues at Launchpad or they will be ignored." We tried to make the SF tracker read only, but we couldn't make it world readable without making it world writable. It is available only so existing old URLs still work. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/266806 Title: unsubscribe removal confirmation should be optional From mark at msapiro.net Sat Apr 16 02:21:32 2011 From: mark at msapiro.net (Mark Sapiro) Date: Sat, 16 Apr 2011 00:21:32 -0000 Subject: [Bug 266732] Re: genaliases shouldn`t call postmap after every list References: <20080905194231.1806.66431.launchpad@forster.canonical.com> Message-ID: <20110416002134.4906.96043.launchpad@chaenomeles.canonical.com> *** This bug is a duplicate of bug 266408 *** https://bugs.launchpad.net/bugs/266408 ** This bug has been marked a duplicate of bug 266408 genaliases on Postfix is inefficient and can cause bounces * You can subscribe to bug 266408 by following this link: https://bugs.launchpad.net/mailman/+bug/266408/+subscribe -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/266732 Title: genaliases shouldn`t call postmap after every list From mark at msapiro.net Sat Apr 16 17:48:57 2011 From: mark at msapiro.net (Mark Sapiro) Date: Sat, 16 Apr 2011 15:48:57 -0000 Subject: [Bug 266408] Re: genaliases on Postfix is inefficient and can cause bounces References: <20080905193149.27052.98085.launchpad@forster.canonical.com> Message-ID: <20110416154857.4624.3701.malone@chaenomeles.canonical.com> > and call "MTA.create(None, quiet=quiet)" once more before > os.umask(omask) > in bin/genaliases Has this been tested? It looks like this will be a deadlock because genaliases has the lock at this point and MTA,create tries to obtain it. It seems that things need to be rearranged to finally: lock.unlock(unconditionally=True) MTA.create(None, quiet=quiet) os.umask(omask) ** Changed in: mailman Status: New => In Progress ** Changed in: mailman Milestone: 2.1-stable => 2.1.15 ** Changed in: mailman Assignee: (unassigned) => Mark Sapiro (msapiro) -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/266408 Title: genaliases on Postfix is inefficient and can cause bounces From mark at msapiro.net Sat Apr 16 18:42:33 2011 From: mark at msapiro.net (Mark Sapiro) Date: Sat, 16 Apr 2011 16:42:33 -0000 Subject: [Bug 266408] Re: genaliases on Postfix is inefficient and can cause bounces References: <20080905193149.27052.98085.launchpad@forster.canonical.com> Message-ID: <20110416164234.23817.88349.launchpad@wampee.canonical.com> ** Changed in: mailman Status: In Progress => Fix Committed -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/266408 Title: genaliases on Postfix is inefficient and can cause bounces From mark at msapiro.net Sun Apr 17 02:04:36 2011 From: mark at msapiro.net (Mark Sapiro) Date: Sun, 17 Apr 2011 00:04:36 -0000 Subject: [Bug 266806] Re: unsubscribe removal confirmation should be optional References: <20080905194251.1806.9377.launchpad@forster.canonical.com> Message-ID: <20110417000436.8236.85813.malone@soybean.canonical.com> Cedders wrote on 2011-04-15: #4 > I would prefer instead of ALLOW_OPEN_SUBSCRIBE an additional value for > mlist.unsubscribe_policy =2 meaning no approval and no confirmation necessary > - instant unsubscribe without any authorisation needed. Perhaps it could > generate a warning if send_goodbye_msg==0, but I don't see any reason site > managers would want to restrict it. I think you are misunderstanding the request for ALLOW_OPEN_UNSUBSCRIBE in the posts you reference. They ask for ALLOW_OPEN_UNSUBSCRIBE to work analogously to ALLOW_OPEN_SUBSCRIBE. I.e. if the site sets ALLOW_OPEN_UNSUBSCRIBE = Yes in mm_cfg.py, then Privacy options... -> Subscription rules -> unsubscribe_policy would offer a third option of "no authentication or confirmation" to the list admin, and if ALLOW_OPEN_UNSUBSCRIBE were defaulted or set to No, only the current two options would be available. Thus there would be a third option as you envision, but its availability would be controlled by the site admin. I certainly understand the desire to make it as easy as possible for people who want to leave a list to do so, but this has to be balanced against the possibility for abuse. Imagine how you would feel if some anonymous member of a list didn't like your opinions, and every time you posted you found yourself unsubscribed and had to go through the process of subscribing and setting your options all over again. In my case, I get an unsubscribe confirmation from the mailman- users at python.org list a couple of times a month. I suspect that these may at least in part be the result of spam spoofing my address sent to the -leave or -unsubscribe address, but whatever they are, I would be very annoyed if instead of the confirmation request that I could ignore, I received a notice of unsubscription and had to rejoin the list. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/266806 Title: unsubscribe removal confirmation should be optional From 266408 at bugs.launchpad.net Sun Apr 17 12:41:03 2011 From: 266408 at bugs.launchpad.net (Cedders) Date: Sun, 17 Apr 2011 10:41:03 -0000 Subject: [Bug 266408] Re: genaliases on Postfix is inefficient and can cause bounces References: <20080905193149.27052.98085.launchpad@forster.canonical.com> Message-ID: <20110417104103.5267.77557.malone@chaenomeles.canonical.com> Very good. I don't recall testing it, and wonder if it needs further testing with MTAs other than Postfix. BTW the reference to Bug [ 1809697 ] is now launchpad bug 266407. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/266408 Title: genaliases on Postfix is inefficient and can cause bounces From question147368 at answers.launchpad.net Sun Apr 17 16:16:20 2011 From: question147368 at answers.launchpad.net (Mark Sapiro) Date: Sun, 17 Apr 2011 14:16:20 -0000 Subject: [Question #147368]: Changing Incoming URL References: <20110317125214.27533.33506.lpquestions@soybean.canonical.com> Message-ID: <20110417141620.4696.94774.launchpad@chaenomeles.canonical.com> Question #147368 on mailman in Ubuntu changed: https://answers.launchpad.net/ubuntu/+source/mailman/+question/147368 Mark Sapiro proposed the following answer: Sorry, Questions are better asked on the mailman-users at python.org list unless they are Ubuntu specific. Anyway, in case you haven't found the answer, see the FAQs at http://wiki.list.org/x/mIA9 and http://wiki.list.org/x/7oA9 -- You received this question notification because you are a member of Mailman Coders, which is an answer contact for mailman in Ubuntu. From mark at msapiro.net Sun Apr 17 16:19:33 2011 From: mark at msapiro.net (Mark Sapiro) Date: Sun, 17 Apr 2011 14:19:33 -0000 Subject: [Bug 266408] Re: genaliases on Postfix is inefficient and can cause bounces References: <20080905193149.27052.98085.launchpad@forster.canonical.com> Message-ID: <20110417141933.5267.55692.malone@chaenomeles.canonical.com> It was tested with MTA = 'Manual' and MTA = 'Postfix' (the only supplied MTA modules) before being committed. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/266408 Title: genaliases on Postfix is inefficient and can cause bounces From 643949 at bugs.launchpad.net Sun Apr 17 17:37:16 2011 From: 643949 at bugs.launchpad.net (Launchpad Bug Tracker) Date: Sun, 17 Apr 2011 15:37:16 -0000 Subject: [Bug 643949] Re: Need REST API to change existing user's email References: <20100920225617.20603.19291.malonedeb@soybean.canonical.com> Message-ID: <20110417153717.25397.49148.launchpad@loganberry.canonical.com> ** Branch linked: lp:~barry/mailman/bug-643949 -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/643949 Title: Need REST API to change existing user's email From 763931 at bugs.launchpad.net Sun Apr 17 22:05:15 2011 From: 763931 at bugs.launchpad.net (Andre LaBranche) Date: Sun, 17 Apr 2011 20:05:15 -0000 Subject: [Bug 763931] [NEW] Enhancement: Export user credentials to AuthUserFile for apache References: <20110417200515.9491.18089.malonedeb@palladium.canonical.com> Message-ID: <20110417200515.9491.18089.malonedeb@palladium.canonical.com> Public bug reported: This is an enhancement request. It would be cool if Mailman had a per- list option to export the username / password credentials to an AuthUserFile formatted file, to allow Apache to authorize access to web- based resources using Mailman user accounts. I hacked together some stuff to make it work on my site, but I'm sure you guys could do a better job, so I'll just leave you with this link to what I did: http://www.dreness.com/blog/?p=205 Ideally this should be event-driven, so that any changes to the Mailman user db trigger an export to a configured AuthUserFile (assuming the option is enabled). Cheers, -dre ** Affects: mailman Importance: Undecided Status: New -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/763931 Title: Enhancement: Export user credentials to AuthUserFile for apache From bernie at codewiz.org Wed Apr 20 18:32:16 2011 From: bernie at codewiz.org (Bernie Innocenti) Date: Wed, 20 Apr 2011 16:32:16 -0000 Subject: [Bug 767335] [NEW] Attachments still being scrubbed even for lists where 'archive' is set to No. References: <20110420163217.3882.4775.malonedeb@chaenomeles.canonical.com> Message-ID: <20110420163217.3882.4775.malonedeb@chaenomeles.canonical.com> Public bug reported: This is Mailman 2.14, but the bug was also present in ancient releases. We have a list configured like this: archive=No archive_private=Yes The global settings are: DEFAULT_ARCHIVE=On DEFAULT_ARCHIVE_PRIVATE=0 ARCHIVE_TO_MBOX=2 PRIVATE_EXTERNAL_ARCHIVER=No Even though no html archives are being generated, Mailman still creates the attachments directory for this list, and saves all attachments in it. I've traced the code responsible for this to ArchiverMailbox.__init__(), invoked by HyperArchive.processUnixMailbox(). I couldn't find where Mailman uses the perl-list 'archive' flag. Only the global setting seems to be considered. ** Affects: mailman Importance: Undecided Status: New -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/767335 Title: Attachments still being scrubbed even for lists where 'archive' is set to No. From mark at msapiro.net Wed Apr 20 18:53:13 2011 From: mark at msapiro.net (Mark Sapiro) Date: Wed, 20 Apr 2011 16:53:13 -0000 Subject: [Bug 767335] Re: Attachments still being scrubbed even for lists where 'archive' is set to No. References: <20110420163217.3882.4775.malonedeb@chaenomeles.canonical.com> Message-ID: <20110420165314.3947.11920.malone@chaenomeles.canonical.com> This is not a bug. Attachments are scrubbed (removed, stored aside and replaced by a brief description and hyperlink to the stored attachment) from messages in two ways. If the list's Non-digest options -> scrub_nondigest setting is Yes, attachments are scrubbed from all messages. Otherwise, if the list's Digest options -> digestable setting is Yes, attachments are scrubbed during preparation of the plain format digest. Scrubbed attachments are stored in the lists archive structure because that is a convenient place, but otherwise they have nothing to do with archiving. If you don't want any attachments to be scrubbed, set both Non-digest options -> scrub_nondigest and Digest options -> digestable to No. ** Changed in: mailman Status: New => Invalid -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/767335 Title: Attachments still being scrubbed even for lists where 'archive' is set to No. From barry at canonical.com Fri Apr 22 21:41:00 2011 From: barry at canonical.com (Barry Warsaw) Date: Fri, 22 Apr 2011 19:41:00 -0000 Subject: [Merge] lp:~flo-fuchs/mailman.client/settings into lp:mailman.client In-Reply-To: <20110403205827.21436.60592.launchpad@loganberry.canonical.com> Message-ID: <20110422193958.12845.42711.codereview@soybean.canonical.com> Review: Approve This looks good, thanks! I have just two minor suggestions. * Where you're returning a unicode string object in the doctests, it would be better to use 'print' so you don't get the ugly u'' prefixes. E.g., instead of: >>> settings_new['description'] u'A very meaningful description.' use: >>> print settings_new['description'] A very meaningful description. * You should not need to use the u'' strings in your doctests. Mailman does a 'from __future__ import unicode_literals' in all its .py files to force literals to be unicodes (in the absence of explicit b'' prefixes). mailman.client should do the same. To make this work in doctests, you need to set the testobj's globs in the doctest's setUp(). See src/mailman/tests/test_documentation.py down about line 183 for an example. Other than that, it looks great, and please do merge it after consideration of the above. Thanks! -- https://code.launchpad.net/~flo-fuchs/mailman.client/settings/+merge/56088 Your team Mailman Coders is subscribed to branch lp:mailman.client. From barry at canonical.com Fri Apr 22 21:41:03 2011 From: barry at canonical.com (Barry Warsaw) Date: Fri, 22 Apr 2011 19:41:03 -0000 Subject: [Merge] lp:~flo-fuchs/mailman.client/settings into lp:mailman.client In-Reply-To: <20110403205827.21436.60592.launchpad@loganberry.canonical.com> Message-ID: <20110422194101.17485.56690.launchpad@loganberry.canonical.com> The proposal to merge lp:~flo-fuchs/mailman.client/settings into lp:mailman.client has been updated. Status: Needs review => Approved For more details, see: https://code.launchpad.net/~flo-fuchs/mailman.client/settings/+merge/56088 -- https://code.launchpad.net/~flo-fuchs/mailman.client/settings/+merge/56088 Your team Mailman Coders is subscribed to branch lp:mailman.client. From tkikuchi at is.kochi-u.ac.jp Sat Apr 23 03:53:31 2011 From: tkikuchi at is.kochi-u.ac.jp (Tokio Kikuchi) Date: Sat, 23 Apr 2011 01:53:31 -0000 Subject: [Bug 769318] [NEW] admindb should have 'logout' function References: <20110423015331.10072.37872.malonedeb@chaenomeles.canonical.com> Message-ID: <20110423015331.10072.37872.malonedeb@chaenomeles.canonical.com> *** This bug is a security vulnerability *** Private security bug reported: Current 2.1 admindb interface have no link (or button) to logout the administrator/moderator. An administrator can logout from mailman from admin interface but a moderator cannot logout without zapping the moderator cookie by browser's function (if it is provided) or terminating the browser. The admindb web page should have a convenient 'logout' link. Another inconvenience in admin logout funciton is that if the site-wide admin is allowed by mm_cfg.ALLOW_SITE_ADMIN_COOKIES then the administrator cannot logout with visiting the 'Logout' link in the admin page. These bugs are fixed by lp:~tkikuchi/mailman/logout-enforcement and the branch was requested to merge into 2.1 series. ** Affects: mailman Importance: Undecided Status: New -- You received this bug notification because you are a member of Mailman Coders, which is a direct subscriber. https://bugs.launchpad.net/bugs/769318 Title: admindb should have 'logout' function From leonfellows at web.de Sat Apr 23 14:48:30 2011 From: leonfellows at web.de (Leon) Date: Sat, 23 Apr 2011 12:48:30 -0000 Subject: [Bug 769484] [NEW] local_parts in README.Exim4.Debian References: <20110423124831.10265.70622.malonedeb@chaenomeles.canonical.com> Message-ID: <20110423124831.10265.70622.malonedeb@chaenomeles.canonical.com> Public bug reported: hi. I use Exim4 together with mailman. For me the documentation in /usr/share/doc/mailman/README.Exim4.Debian did not work for mailing-lists other than "mailman". I changed the code for the router part (around line 58): - local_parts = mailman + local_parts = $local_part best regards, Leon ** Affects: mailman Importance: Undecided Status: New -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/769484 Title: local_parts in README.Exim4.Debian From mark at msapiro.net Sat Apr 23 18:24:42 2011 From: mark at msapiro.net (Mark Sapiro) Date: Sat, 23 Apr 2011 16:24:42 -0000 Subject: [Bug 769484] Re: local_parts in README.Exim4.Debian References: <20110423124831.10265.70622.malonedeb@chaenomeles.canonical.com> Message-ID: <20110423162442.12925.37530.malone@soybean.canonical.com> This is not a GNU Mailman issue. It is apparently an issue with the Debian/Ubuntu Mailman package documentation and should be reported to Debian/Ubuntu. The GNU Mailman project recommends for an Exim/Mailman guide. Neither that guide nor the GNU Mailman installation manual contain any reference to local_parts in their router definition. ** Changed in: mailman Status: New => Invalid -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/769484 Title: local_parts in README.Exim4.Debian From mark at msapiro.net Sun Apr 24 02:51:19 2011 From: mark at msapiro.net (Mark Sapiro) Date: Sun, 24 Apr 2011 00:51:19 -0000 Subject: [Bug 769318] Re: admindb should have 'logout' function References: <20110423015331.10072.37872.malonedeb@chaenomeles.canonical.com> Message-ID: <20110424005119.10338.47095.launchpad@chaenomeles.canonical.com> ** Changed in: mailman Importance: Undecided => Medium ** Changed in: mailman Status: New => Fix Committed ** Changed in: mailman Milestone: None => 2.1.15 ** Changed in: mailman Assignee: (unassigned) => Mark Sapiro (msapiro) -- You received this bug notification because you are a member of Mailman Coders, which is a direct subscriber. https://bugs.launchpad.net/bugs/769318 Title: admindb should have 'logout' function From 770328 at bugs.launchpad.net Mon Apr 25 17:32:57 2011 From: 770328 at bugs.launchpad.net (Barry Warsaw) Date: Mon, 25 Apr 2011 15:32:57 -0000 Subject: [Bug 770328] [NEW] REST qrunner sometimes does not exit after tests exception References: <20110425153257.28204.36811.malonedeb@wampee.canonical.com> Message-ID: <20110425153257.28204.36811.malonedeb@wampee.canonical.com> Public bug reported: When the test suite gets an exception in the REST qrunner, it sometimes prevents the qrunner from exiting. The symptom of this is that the next time you try to run the test suite, you'll get an Address In Use error early on. This is because the test suite will try to start a new REST qrunner, which wants to bind to port 9001, but that's already in use by the "zombie" qrunner. The workaround is fairly simple. Just kill -HUP the zombie from the shell. Once it exits, the port gets freed up and the test suite will work again. ** Affects: mailman Importance: Undecided Status: New ** Tags: mailman3 -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/770328 Title: REST qrunner sometimes does not exit after tests exception From 770377 at bugs.launchpad.net Mon Apr 25 19:01:41 2011 From: 770377 at bugs.launchpad.net (Ward Vandewege) Date: Mon, 25 Apr 2011 17:01:41 -0000 Subject: [Bug 770377] [NEW] Mailman should set the 'secure' cookie flag when accessed via https References: <20110425170141.28141.4113.malonedeb@wampee.canonical.com> Message-ID: <20110425170141.28141.4113.malonedeb@wampee.canonical.com> Public bug reported: When accessed over https, Mailman should set the 'secure' cookie flag. Please see the attached patch which implements that. ** Affects: mailman Importance: Undecided Status: New -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/770377 Title: Mailman should set the 'secure' cookie flag when accessed via https From 770377 at bugs.launchpad.net Mon Apr 25 19:01:41 2011 From: 770377 at bugs.launchpad.net (Ward Vandewege) Date: Mon, 25 Apr 2011 17:01:41 -0000 Subject: [Bug 770377] Re: Mailman should set the 'secure' cookie flag when accessed via https References: <20110425170141.28141.4113.malonedeb@wampee.canonical.com> Message-ID: <20110425170142.28141.28888.malone@wampee.canonical.com> ** Attachment added: "set-secure-flag.patch" https://bugs.launchpad.net/bugs/770377/+attachment/2088440/+files/set-secure-flag.patch -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/770377 Title: Mailman should set the 'secure' cookie flag when accessed via https From mark at msapiro.net Tue Apr 26 01:23:44 2011 From: mark at msapiro.net (Mark Sapiro) Date: Mon, 25 Apr 2011 23:23:44 -0000 Subject: [Bug 770581] [NEW] The list admin or moderator password can be compromised by sending in an Approved: header References: <20110425232344.2576.47227.malonedeb@gac.canonical.com> Message-ID: <20110425232344.2576.47227.malonedeb@gac.canonical.com> Public bug reported: If posting to a list is secured by requiring an Approved: or X-Approved: header for a post to be accepted without moderation, the list admin or moderator password can be compromised by sending it in the headers of an email message. There should be a 'poster' password for this purpose only so the consequences of compromise would be less severe. ** Affects: mailman Importance: Wishlist Assignee: Mark Sapiro (msapiro) Status: In Progress -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/770581 Title: The list admin or moderator password can be compromised by sending in an Approved: header From mark at msapiro.net Tue Apr 26 03:38:32 2011 From: mark at msapiro.net (Mark Sapiro) Date: Tue, 26 Apr 2011 01:38:32 -0000 Subject: [Bug 770581] Re: The list admin or moderator password can be compromised by sending in an Approved: header References: <20110425232344.2576.47227.malonedeb@gac.canonical.com> Message-ID: <20110426013832.31064.50472.launchpad@chaenomeles.canonical.com> ** Changed in: mailman Status: In Progress => Fix Committed -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/770581 Title: The list admin or moderator password can be compromised by sending in an Approved: header From mark at msapiro.net Tue Apr 26 03:42:15 2011 From: mark at msapiro.net (Mark Sapiro) Date: Tue, 26 Apr 2011 01:42:15 -0000 Subject: [Bug 770377] Re: Mailman should set the 'secure' cookie flag when accessed via https References: <20110425170141.28141.4113.malonedeb@wampee.canonical.com> Message-ID: <20110426014216.18209.6756.malone@soybean.canonical.com> Thanks for the patch. ** Changed in: mailman Importance: Undecided => Medium ** Changed in: mailman Status: New => Fix Committed ** Changed in: mailman Milestone: None => 2.1.15 ** Changed in: mailman Assignee: (unassigned) => Mark Sapiro (msapiro) -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/770377 Title: Mailman should set the 'secure' cookie flag when accessed via https From 643949 at bugs.launchpad.net Tue Apr 26 05:03:39 2011 From: 643949 at bugs.launchpad.net (Barry Warsaw) Date: Tue, 26 Apr 2011 03:03:39 -0000 Subject: [Bug 643949] Re: Need REST API to change existing user's email References: <20100920225617.20603.19291.malonedeb@soybean.canonical.com> Message-ID: <20110426030340.18209.94047.launchpad@soybean.canonical.com> ** Changed in: mailman Status: In Progress => Fix Committed -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/643949 Title: Need REST API to change existing user's email From 756943 at bugs.launchpad.net Thu Apr 28 03:49:28 2011 From: 756943 at bugs.launchpad.net (Barry Warsaw) Date: Thu, 28 Apr 2011 01:49:28 -0000 Subject: [Bug 756943] Re: 13 revisions removed from the branch References: <20110410230515.25540.42750.malonedeb@soybean.canonical.com> Message-ID: <20110428014930.18979.34834.launchpad@soybean.canonical.com> ** Changed in: mailman Status: Invalid => Fix Committed ** Changed in: mailman Importance: Undecided => Medium ** Changed in: mailman Milestone: None => 3.0.0a7 ** Changed in: mailman Assignee: (unassigned) => Barry Warsaw (barry) -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/756943 Title: 13 revisions removed from the branch From 659951 at bugs.launchpad.net Thu Apr 28 04:08:32 2011 From: 659951 at bugs.launchpad.net (Barry Warsaw) Date: Thu, 28 Apr 2011 02:08:32 -0000 Subject: [Bug 659951] Re: REST server should support a few more writable attributes to simplify integration References: <20101013143142.4876.20255.malonedeb@palladium.canonical.com> Message-ID: <20110428020832.30472.28598.launchpad@chaenomeles.canonical.com> ** Changed in: mailman Status: Confirmed => Fix Committed -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/659951 Title: REST server should support a few more writable attributes to simplify integration From 518517 at bugs.launchpad.net Thu Apr 28 04:08:09 2011 From: 518517 at bugs.launchpad.net (Barry Warsaw) Date: Thu, 28 Apr 2011 02:08:09 -0000 Subject: [Bug 518517] Re: Add the equivalent of postconf(1) References: <20100207193615.31330.60613.malonedeb@soybean.canonical.com> Message-ID: <20110428020810.1753.34405.launchpad@gac.canonical.com> ** Changed in: mailman/3.0 Milestone: 3.0.0a7 => None -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/518517 Title: Add the equivalent of postconf(1) From 514625 at bugs.launchpad.net Thu Apr 28 04:10:01 2011 From: 514625 at bugs.launchpad.net (Barry Warsaw) Date: Thu, 28 Apr 2011 02:10:01 -0000 Subject: [Bug 514625] Re: Mailman 3 member functions should "guess" address membership References: <20100130060432.12561.63827.malonedeb@gandwana.canonical.com> Message-ID: <20110428021002.31127.17306.launchpad@chaenomeles.canonical.com> ** Changed in: mailman/3.0 Importance: Undecided => Wishlist -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/514625 Title: Mailman 3 member functions should "guess" address membership From 770328 at bugs.launchpad.net Thu Apr 28 04:12:15 2011 From: 770328 at bugs.launchpad.net (Barry Warsaw) Date: Thu, 28 Apr 2011 02:12:15 -0000 Subject: [Bug 770328] Re: REST qrunner sometimes does not exit after tests exception References: <20110425153257.28204.36811.malonedeb@wampee.canonical.com> Message-ID: <20110428021215.31064.60915.launchpad@chaenomeles.canonical.com> ** Changed in: mailman Status: New => Confirmed ** Changed in: mailman Importance: Undecided => Low -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/770328 Title: REST qrunner sometimes does not exit after tests exception From 667252 at bugs.launchpad.net Thu Apr 28 04:12:04 2011 From: 667252 at bugs.launchpad.net (Barry Warsaw) Date: Thu, 28 Apr 2011 02:12:04 -0000 Subject: [Bug 667252] Re: Mailman 3 Branch, install fails with --prefix specified References: <20101027122355.7038.41189.malonedeb@gandwana.canonical.com> Message-ID: <20110428021205.17949.66546.launchpad@soybean.canonical.com> ** Changed in: mailman Status: Incomplete => New -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/667252 Title: Mailman 3 Branch, install fails with --prefix specified From 772135 at bugs.launchpad.net Thu Apr 28 04:22:16 2011 From: 772135 at bugs.launchpad.net (Barry Warsaw) Date: Thu, 28 Apr 2011 02:22:16 -0000 Subject: [Bug 772135] [NEW] The bounce qrunner needs to be enabled References: <20110428022216.18346.71587.malonedeb@soybean.canonical.com> Message-ID: <20110428022216.18346.71587.malonedeb@soybean.canonical.com> Public bug reported: The Mailman 3 bounce qrunner isn't really enabled. It needs to be hooked up to scan_message() and tested. ** Affects: mailman Importance: Medium Status: Confirmed ** Tags: mailman3 -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/772135 Title: The bounce qrunner needs to be enabled From 643949 at bugs.launchpad.net Fri Apr 29 22:38:27 2011 From: 643949 at bugs.launchpad.net (Barry Warsaw) Date: Fri, 29 Apr 2011 20:38:27 -0000 Subject: [Bug 643949] Re: Need REST API to change existing user's email References: <20100920225617.20603.19291.malonedeb@soybean.canonical.com> Message-ID: <20110429203827.2048.22637.launchpad@gac.canonical.com> ** Changed in: mailman Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/643949 Title: Need REST API to change existing user's email From 490044 at bugs.launchpad.net Fri Apr 29 22:38:21 2011 From: 490044 at bugs.launchpad.net (Barry Warsaw) Date: Fri, 29 Apr 2011 20:38:21 -0000 Subject: [Bug 490044] Re: Implement SMTP AUTH in Mailman 3 References: <20091129190043.21324.96227.malonedeb@gangotri.canonical.com> Message-ID: <20110429203822.30936.33064.launchpad@chaenomeles.canonical.com> ** Changed in: mailman Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/490044 Title: Implement SMTP AUTH in Mailman 3 From 757062 at bugs.launchpad.net Fri Apr 29 22:40:51 2011 From: 757062 at bugs.launchpad.net (Barry Warsaw) Date: Fri, 29 Apr 2011 20:40:51 -0000 Subject: [Bug 757062] Re: Content filtering can remove the headers from a message/rfc822 part. References: <20110411032649.25540.48269.malonedeb@soybean.canonical.com> Message-ID: <20110429204051.30936.58082.launchpad@chaenomeles.canonical.com> ** Also affects: mailman/2.1 Importance: Undecided Status: New ** Also affects: mailman/2.2 Importance: Undecided Status: New ** Also affects: mailman/3.0 Importance: Low Assignee: Mark Sapiro (msapiro) Status: Fix Committed ** Changed in: mailman/2.2 Status: New => Fix Committed ** Changed in: mailman/2.2 Importance: Undecided => Low ** Changed in: mailman/2.2 Assignee: (unassigned) => Mark Sapiro (msapiro) ** Changed in: mailman/2.2 Milestone: None => 2.1.15 ** Changed in: mailman/3.0 Status: Fix Committed => New ** Changed in: mailman/3.0 Importance: Low => Undecided ** Changed in: mailman/3.0 Assignee: Mark Sapiro (msapiro) => (unassigned) ** Changed in: mailman/3.0 Milestone: 2.1.15 => None ** Changed in: mailman/2.1 Status: New => Fix Committed ** Changed in: mailman/2.1 Importance: Undecided => Low ** Changed in: mailman/2.1 Assignee: (unassigned) => Mark Sapiro (msapiro) ** Changed in: mailman/2.1 Milestone: None => 2.1.15 -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/757062 Title: Content filtering can remove the headers from a message/rfc822 part. From 685261 at bugs.launchpad.net Fri Apr 29 22:38:57 2011 From: 685261 at bugs.launchpad.net (Barry Warsaw) Date: Fri, 29 Apr 2011 20:38:57 -0000 Subject: [Bug 685261] Re: emailed command in subject header is ignored References: <20101204190441.22665.47438.malonedeb@palladium.canonical.com> Message-ID: <20110429203857.1753.31912.launchpad@gac.canonical.com> ** Also affects: mailman/3.0 Importance: Low Assignee: Mark Sapiro (msapiro) Status: Fix Committed ** Also affects: mailman/2.1 Importance: Undecided Status: New ** Also affects: mailman/2.2 Importance: Undecided Status: New ** Changed in: mailman/2.1 Status: New => Fix Committed ** Changed in: mailman/2.2 Status: New => Fix Committed ** Changed in: mailman/3.0 Status: Fix Committed => New ** Changed in: mailman/3.0 Assignee: Mark Sapiro (msapiro) => (unassigned) ** Changed in: mailman/2.2 Assignee: (unassigned) => Mark Sapiro (msapiro) ** Changed in: mailman/2.1 Assignee: (unassigned) => Mark Sapiro (msapiro) -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/685261 Title: emailed command in subject header is ignored From 645897 at bugs.launchpad.net Fri Apr 29 22:38:13 2011 From: 645897 at bugs.launchpad.net (Barry Warsaw) Date: Fri, 29 Apr 2011 20:38:13 -0000 Subject: [Bug 645897] Re: mailman scan_message exception References: <20100923100459.24867.12717.malonedeb@gandwana.canonical.com> Message-ID: <20110429203813.30624.54205.launchpad@chaenomeles.canonical.com> ** Changed in: mailman Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/645897 Title: mailman scan_message exception From 756943 at bugs.launchpad.net Fri Apr 29 22:38:49 2011 From: 756943 at bugs.launchpad.net (Barry Warsaw) Date: Fri, 29 Apr 2011 20:38:49 -0000 Subject: [Bug 756943] Re: 13 revisions removed from the branch References: <20110410230515.25540.42750.malonedeb@soybean.canonical.com> Message-ID: <20110429203850.1989.77224.launchpad@gac.canonical.com> ** Changed in: mailman Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/756943 Title: 13 revisions removed from the branch From 656946 at bugs.launchpad.net Fri Apr 29 22:38:05 2011 From: 656946 at bugs.launchpad.net (Barry Warsaw) Date: Fri, 29 Apr 2011 20:38:05 -0000 Subject: [Bug 656946] Re: Corrupt eggs in mailman-3.0.0a6.tar.gz References: <20101008154614.6625.95606.malonedeb@wampee.canonical.com> Message-ID: <20110429203806.18779.25098.launchpad@soybean.canonical.com> ** Changed in: mailman Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/656946 Title: Corrupt eggs in mailman-3.0.0a6.tar.gz From 659951 at bugs.launchpad.net Fri Apr 29 22:38:33 2011 From: 659951 at bugs.launchpad.net (Barry Warsaw) Date: Fri, 29 Apr 2011 20:38:33 -0000 Subject: [Bug 659951] Re: REST server should support a few more writable attributes to simplify integration References: <20101013143142.4876.20255.malonedeb@palladium.canonical.com> Message-ID: <20110429203834.28484.8040.launchpad@wampee.canonical.com> ** Changed in: mailman Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/659951 Title: REST server should support a few more writable attributes to simplify integration From 667472 at bugs.launchpad.net Fri Apr 29 22:38:38 2011 From: 667472 at bugs.launchpad.net (Barry Warsaw) Date: Fri, 29 Apr 2011 20:38:38 -0000 Subject: [Bug 667472] Re: Support Python 2.7 References: <20101027212100.17225.39924.malonedeb@gandwana.canonical.com> Message-ID: <20110429203839.2450.42387.launchpad@gac.canonical.com> ** Changed in: mailman Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/667472 Title: Support Python 2.7 From 710182 at bugs.launchpad.net Fri Apr 29 22:38:44 2011 From: 710182 at bugs.launchpad.net (Barry Warsaw) Date: Fri, 29 Apr 2011 20:38:44 -0000 Subject: [Bug 710182] Re: Typo in add_member() prevents subscribing an email already linked to an existing user References: <20110130144318.31813.21567.malonedeb@wampee.canonical.com> Message-ID: <20110429203845.30698.94194.launchpad@chaenomeles.canonical.com> ** Changed in: mailman Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/710182 Title: Typo in add_member() prevents subscribing an email already linked to an existing user