From 266821 at bugs.launchpad.net Wed Jan 2 11:08:38 2013 From: 266821 at bugs.launchpad.net (trampster) Date: Wed, 02 Jan 2013 10:08:38 -0000 Subject: [Bug 266821] Re: privacy hole in password reminder References: <20080905194256.1806.8914.launchpad@forster.canonical.com> Message-ID: <20130102100838.5156.55378.malone@gac.canonical.com> *** This bug is a duplicate of bug 265179 *** https://bugs.launchpad.net/bugs/265179 And now you are famous.... http://plaintextoffenders.com/post/38287749792/ximian-com-software- developers-gnu-mailman-sends -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/266821 Title: privacy hole in password reminder To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/266821/+subscriptions From aurelien at bompard.org Wed Jan 2 11:21:18 2013 From: aurelien at bompard.org (=?utf-8?q?Aur=C3=A9lien_Bompard?=) Date: Wed, 02 Jan 2013 10:21:18 -0000 Subject: [Bug 1091586] Re: Frequent OperationalError: database is locked with sqlite References: <20121218093500.12946.57302.malonedeb@wampee.canonical.com> Message-ID: <20130102102118.2266.66135.malone@chaenomeles.canonical.com> Hi Barry, sorry for not replying earlier, I was offline for the holidays. The hyperkitty-related errors are normal, since I'm working on it, but I did try without enabling it and I got the lockups nonetheless. I upgraded to the latest HEAD (I was on rev 7189), I'm now on rev 7199, and I'm still having the lockups. I'll attach a new log file right away. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1091586 Title: Frequent OperationalError: database is locked with sqlite To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1091586/+subscriptions From aurelien at bompard.org Wed Jan 2 11:23:17 2013 From: aurelien at bompard.org (=?utf-8?q?Aur=C3=A9lien_Bompard?=) Date: Wed, 02 Jan 2013 10:23:17 -0000 Subject: [Bug 1091586] Re: Frequent OperationalError: database is locked with sqlite References: <20121218093500.12946.57302.malonedeb@wampee.canonical.com> Message-ID: <20130102102317.2348.26344.malone@chaenomeles.canonical.com> ** Attachment added: "mailman.log.gz" https://bugs.launchpad.net/mailman/+bug/1091586/+attachment/3472439/+files/mailman.log.gz -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1091586 Title: Frequent OperationalError: database is locked with sqlite To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1091586/+subscriptions From 1095422 at bugs.launchpad.net Wed Jan 2 21:22:37 2013 From: 1095422 at bugs.launchpad.net (Barry Warsaw) Date: Wed, 02 Jan 2013 20:22:37 -0000 Subject: [Bug 1095422] [NEW] Non-queue runners should not create var/queue/* directories References: <20130102202237.18027.74579.malonedeb@gac.canonical.com> Message-ID: <20130102202237.18027.74579.malonedeb@gac.canonical.com> Public bug reported: The LMTP and REST runners are not queue runners. They are daemon processes which do not scan directories. They should not create directories in var/queue, probably by disabling the creation of the Switchboard in their subclass. ** Affects: mailman Importance: Low Status: Triaged ** 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/1095422 Title: Non-queue runners should not create var/queue/* directories To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1095422/+subscriptions From 24.sneha at gmail.com Thu Jan 3 09:09:21 2013 From: 24.sneha at gmail.com (Sneha Priscilla) Date: Thu, 03 Jan 2013 08:09:21 -0000 Subject: [Merge] lp:~stylistica/postorius/inline_helptext into lp:postorius Message-ID: <20130103080920.13628.10638.launchpad@ackee.canonical.com> Sneha Priscilla has proposed merging lp:~stylistica/postorius/inline_helptext into lp:postorius. Requested reviews: Terri (terriko) For more details, see: https://code.launchpad.net/~stylistica/postorius/inline_helptext/+merge/141710 Added inline help text for the 'more info' mouseover for each option in the list's settings. -- https://code.launchpad.net/~stylistica/postorius/inline_helptext/+merge/141710 Your team Mailman Coders is subscribed to branch lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 11891 bytes Desc: not available URL: From rnix at squarewave.at Fri Jan 4 14:41:22 2013 From: rnix at squarewave.at (Robert Niederreiter) Date: Fri, 04 Jan 2013 13:41:22 -0000 Subject: [Bug 1096066] [NEW] mailman raises exception if passed message not contains text/plain message part References: <20130104134122.20597.98867.malonedeb@chaenomeles.canonical.com> Message-ID: <20130104134122.20597.98867.malonedeb@chaenomeles.canonical.com> Public bug reported: If message sent to mailman not contains a text/plain message part (i.e. only text/html), an error is raised and the message gets swallowed. I fixed this this way in my setup: === modified file 'src/mailman/rules/approved.py' --- src/mailman/rules/approved.py 2012-07-02 20:08:58 +0000 +++ src/mailman/rules/approved.py 2013-01-04 13:31:09 +0000 @@ -73,6 +73,8 @@ stripped = False for part in typed_subpart_iterator(msg, 'text', 'plain'): break + if not part: + return False payload = part.get_payload(decode=True) if payload is not None: charset = part.get_content_charset('us-ascii') regards, robert ** 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/1096066 Title: mailman raises exception if passed message not contains text/plain message part To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1096066/+subscriptions From 1096066 at bugs.launchpad.net Fri Jan 4 16:20:53 2013 From: 1096066 at bugs.launchpad.net (Barry Warsaw) Date: Fri, 04 Jan 2013 15:20:53 -0000 Subject: [Bug 1096066] Re: mailman raises exception if passed message not contains text/plain message part References: <20130104134122.20597.98867.malonedeb@chaenomeles.canonical.com> Message-ID: <20130104152054.20753.62982.launchpad@chaenomeles.canonical.com> ** 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/1096066 Title: mailman raises exception if passed message not contains text/plain message part To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1096066/+subscriptions From davidianbell at gmail.com Mon Jan 7 11:12:55 2013 From: davidianbell at gmail.com (David Bell) Date: Mon, 07 Jan 2013 10:12:55 -0000 Subject: [Bug 1096812] [NEW] Threading issues in mailman 3.0.0b2 References: <20130107101255.19780.48094.malonedeb@chaenomeles.canonical.com> Message-ID: <20130107101255.19780.48094.malonedeb@chaenomeles.canonical.com> Public bug reported: I am seeing concurrency issues when using mailman 3 in a threaded application server. Reading the Storm documentation it states that "Store objects are not threadsafe. [...] Therefore, the best policy is usually to create a Store object for each thread which needs one" (https://storm.canonical.com/Manual#Working_with_multiple_threads) In mailman/database/base.py:141 I see a Store being created and cached. As recommended in the storm docs, Stores should not be cached. ** 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/1096812 Title: Threading issues in mailman 3.0.0b2 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1096812/+subscriptions From 1096812 at bugs.launchpad.net Mon Jan 7 15:22:45 2013 From: 1096812 at bugs.launchpad.net (Barry Warsaw) Date: Mon, 07 Jan 2013 14:22:45 -0000 Subject: [Bug 1096812] Re: Threading issues in mailman 3.0.0b2 References: <20130107101255.19780.48094.malonedeb@chaenomeles.canonical.com> Message-ID: <20130107142246.19519.68876.launchpad@chaenomeles.canonical.com> ** 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/1096812 Title: Threading issues in mailman 3.0.0b2 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1096812/+subscriptions From sakuag333 at gmail.com Thu Jan 10 01:37:47 2013 From: sakuag333 at gmail.com (Sandesh Kumar Agrawal) Date: Thu, 10 Jan 2013 00:37:47 -0000 Subject: [Bug 1095422] Re: Non-queue runners should not create var/queue/* directories References: <20130102202237.18027.74579.malonedeb@gac.canonical.com> Message-ID: <20130110003747.17978.37160.malone@chaenomeles.canonical.com> in mailman.app.config , there is function _expand_paths(self) which contains : queue_dir = category.queue_dir this results in queue_dir to get added to self.path and thus when ensure_directories_exist() is being called in config.py , it make a directory var/queue removing "queue_dir = category.queue_dir " will not allow the directory to be formed. Since i am new to mailman, can you please guide me , how to push this change to mailman 3 code ? -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1095422 Title: Non-queue runners should not create var/queue/* directories To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1095422/+subscriptions From sakuag333 at gmail.com Thu Jan 10 04:22:00 2013 From: sakuag333 at gmail.com (Sandesh Kumar Agrawal) Date: Thu, 10 Jan 2013 03:22:00 -0000 Subject: [Bug 1095422] Re: Non-queue runners should not create var/queue/* directories References: <20130102202237.18027.74579.malonedeb@gac.canonical.com> Message-ID: <20130110032201.22898.70938.launchpad@soybean.canonical.com> ** Branch linked: lp:~sakuag333/mailman/my_branch -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1095422 Title: Non-queue runners should not create var/queue/* directories To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1095422/+subscriptions From 1098162 at bugs.launchpad.net Thu Jan 10 13:24:17 2013 From: 1098162 at bugs.launchpad.net (Robie Basak) Date: Thu, 10 Jan 2013 12:24:17 -0000 Subject: [Bug 1098162] Re: mailman 1:2.1.15-1 FTBFS on amd64 in raring References: <20130110121713.24143.15877.malonedeb@wampee.canonical.com> Message-ID: <20130110122417.23109.29528.launchpad@soybean.canonical.com> ** Also 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/1098162 Title: mailman 1:2.1.15-1 FTBFS on amd64 in raring To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1098162/+subscriptions From 1098162 at bugs.launchpad.net Thu Jan 10 13:52:14 2013 From: 1098162 at bugs.launchpad.net (Robie Basak) Date: Thu, 10 Jan 2013 12:52:14 -0000 Subject: [Bug 1098162] Re: mailman 1:2.1.15-1 FTBFS on amd64 in raring References: <20130110121713.24143.15877.malonedeb@wampee.canonical.com> Message-ID: <20130110125214.18492.97092.malone@chaenomeles.canonical.com> Based on the distutils documentation, I think that calling distutils.sysconfig.get_python_inc() is a more appropriate way of determining the location of Python.h. It seems to work both after and before the transition that broke Raring. Is this appropriate for upstream as well? ** Patch added: "mailman.debdiff" https://bugs.launchpad.net/mailman/+bug/1098162/+attachment/3479074/+files/mailman.debdiff ** Description changed: mailman's configure script assumes that Python.h is present in distutils.sysconfig.get_config_var('CONFINCLUDEPY') which is arch- specific and not where it is in raring. + + https://launchpadlibrarian.net/126517790/buildlog_ubuntu-raring- + amd64.mailman_1%3A2.1.15-1_FAILEDTOBUILD.txt.gz -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1098162 Title: mailman 1:2.1.15-1 FTBFS on amd64 in raring To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1098162/+subscriptions From 1098162 at bugs.launchpad.net Thu Jan 10 13:52:56 2013 From: 1098162 at bugs.launchpad.net (Robie Basak) Date: Thu, 10 Jan 2013 12:52:56 -0000 Subject: [Bug 1098162] Re: mailman 1:2.1.15-1 FTBFS on amd64 in raring References: <20130110121713.24143.15877.malonedeb@wampee.canonical.com> Message-ID: <20130110125256.18241.22258.malone@chaenomeles.canonical.com> ** Attachment added: "mailman_2.1.15-1ubuntu1_amd64.build" https://bugs.launchpad.net/mailman/+bug/1098162/+attachment/3479075/+files/mailman_2.1.15-1ubuntu1_amd64.build -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1098162 Title: mailman 1:2.1.15-1 FTBFS on amd64 in raring To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1098162/+subscriptions From mark at msapiro.net Thu Jan 10 22:32:19 2013 From: mark at msapiro.net (Mark Sapiro) Date: Thu, 10 Jan 2013 21:32:19 -0000 Subject: [Bug 1098162] Re: mailman 1:2.1.15-1 FTBFS on amd64 in raring References: <20130110121713.24143.15877.malonedeb@wampee.canonical.com> Message-ID: <20130110213219.18012.45642.launchpad@chaenomeles.canonical.com> ** No longer affects: mailman -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1098162 Title: mailman 1:2.1.15-1 FTBFS on amd64 in raring To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/mailman/+bug/1098162/+subscriptions From 1098162 at bugs.launchpad.net Fri Jan 11 01:06:09 2013 From: 1098162 at bugs.launchpad.net (Robie Basak) Date: Fri, 11 Jan 2013 00:06:09 -0000 Subject: [Bug 1098162] Re: mailman 1:2.1.15-1 FTBFS on amd64 in raring References: <20130110121713.24143.15877.malonedeb@wampee.canonical.com> Message-ID: <20130111000609.24029.54863.malone@wampee.canonical.com> @Mark Sapiro This also affects the upstream Mailman project, since the pristine upstream tarball also will also fail to build on Ubuntu after the next release. What's the reason you removed the bug task? ** Also 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/1098162 Title: mailman 1:2.1.15-1 FTBFS on amd64 in raring To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1098162/+subscriptions From sakuag333 at gmail.com Fri Jan 11 01:30:56 2013 From: sakuag333 at gmail.com (Sandesh Kumar Agrawal) Date: Fri, 11 Jan 2013 00:30:56 -0000 Subject: [Bug 1095422] Re: Non-queue runners should not create var/queue/* directories References: <20130102202237.18027.74579.malonedeb@gac.canonical.com> Message-ID: <20130111003056.18451.4004.launchpad@chaenomeles.canonical.com> ** Branch unlinked: lp:~sakuag333/mailman/my_branch -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1095422 Title: Non-queue runners should not create var/queue/* directories To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1095422/+subscriptions From francois at debian.org Fri Jan 11 02:17:21 2013 From: francois at debian.org (=?utf-8?q?Fran=C3=A7ois_Marier?=) Date: Fri, 11 Jan 2013 01:17:21 -0000 Subject: [Merge] lp:~fmarier/postorius/browserid-url-change into lp:postorius Message-ID: <20130111011721.12196.46747.launchpad@ackee.canonical.com> Fran?ois Marier has proposed merging lp:~fmarier/postorius/browserid-url-change into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) For more details, see: https://code.launchpad.net/~fmarier/postorius/browserid-url-change/+merge/142821 The browserid.org domain is now redirecting to login.persona.org. -- https://code.launchpad.net/~fmarier/postorius/browserid-url-change/+merge/142821 Your team Mailman Coders is requested to review the proposed merge of lp:~fmarier/postorius/browserid-url-change into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 595 bytes Desc: not available URL: From 1098162 at bugs.launchpad.net Fri Jan 11 05:11:17 2013 From: 1098162 at bugs.launchpad.net (Launchpad Bug Tracker) Date: Fri, 11 Jan 2013 04:11:17 -0000 Subject: [Bug 1098162] Re: mailman 1:2.1.15-1 FTBFS on amd64 in raring References: <20130110121713.24143.15877.malonedeb@wampee.canonical.com> Message-ID: <20130111041120.18909.65304.launchpad@ackee.canonical.com> ** Branch linked: lp:mailman/2.2 ** Branch linked: lp:mailman/2.1 -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1098162 Title: mailman 1:2.1.15-1 FTBFS on amd64 in raring To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1098162/+subscriptions From mark at msapiro.net Fri Jan 11 05:17:07 2013 From: mark at msapiro.net (Mark Sapiro) Date: Fri, 11 Jan 2013 04:17:07 -0000 Subject: [Bug 1098162] Re: mailman 1:2.1.15-1 FTBFS on amd64 in raring References: <20130110121713.24143.15877.malonedeb@wampee.canonical.com> Message-ID: <20130111041707.25501.60724.malone@gac.canonical.com> I looked too quickly the first time and thought it was strictly a Debian/Ubuntu packaging issue and didn't look closely at your comment #1 ** Changed in: mailman Importance: Undecided => Low ** Changed in: mailman Status: New => Fix Committed ** Changed in: mailman Milestone: None => 2.1.16 ** 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/1098162 Title: mailman 1:2.1.15-1 FTBFS on amd64 in raring To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1098162/+subscriptions From 1098162 at bugs.launchpad.net Fri Jan 11 09:39:04 2013 From: 1098162 at bugs.launchpad.net (Robie Basak) Date: Fri, 11 Jan 2013 08:39:04 -0000 Subject: [Bug 1098162] Re: mailman 1:2.1.15-1 FTBFS on amd64 in raring References: <20130110121713.24143.15877.malonedeb@wampee.canonical.com> Message-ID: <20130111083904.30254.28661.malone@wampee.canonical.com> No problem. Thanks for the quick fix! -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1098162 Title: mailman 1:2.1.15-1 FTBFS on amd64 in raring To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1098162/+subscriptions From sakuag333 at gmail.com Fri Jan 11 12:22:30 2013 From: sakuag333 at gmail.com (Sandesh Kumar Agrawal) Date: Fri, 11 Jan 2013 11:22:30 -0000 Subject: [Bug 1095422] Re: Non-queue runners should not create var/queue/* directories References: <20130102202237.18027.74579.malonedeb@gac.canonical.com> Message-ID: <20130111112230.1926.81555.launchpad@chaenomeles.canonical.com> ** Branch linked: lp:~sakuag333/mailman/my-branch -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1095422 Title: Non-queue runners should not create var/queue/* directories To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1095422/+subscriptions From sakuag333 at gmail.com Fri Jan 11 16:24:08 2013 From: sakuag333 at gmail.com (Sandesh Kumar Agrawal) Date: Fri, 11 Jan 2013 15:24:08 -0000 Subject: [Bug 967951] Re: The LMTP runner should reject messages with duplicate Message-IDs References: <20120329030405.10615.26178.malonedeb@soybean.canonical.com> Message-ID: <20130111152408.23615.79894.launchpad@gac.canonical.com> ** Branch linked: lp:~sakuag333/mailman/lmtp-duplicate-id -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/967951 Title: The LMTP runner should reject messages with duplicate Message-IDs To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/967951/+subscriptions From sakuag333 at gmail.com Fri Jan 11 16:22:20 2013 From: sakuag333 at gmail.com (Sandesh Kumar Agrawal) Date: Fri, 11 Jan 2013 15:22:20 -0000 Subject: [Bug 1095422] Re: Non-queue runners should not create var/queue/* directories References: <20130102202237.18027.74579.malonedeb@gac.canonical.com> Message-ID: <20130111152220.8642.904.launchpad@wampee.canonical.com> ** Branch linked: lp:~sakuag333/mailman/non-queue-runner -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1095422 Title: Non-queue runners should not create var/queue/* directories To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1095422/+subscriptions From sakuag333 at gmail.com Thu Jan 17 01:14:46 2013 From: sakuag333 at gmail.com (Sandesh Kumar Agrawal) Date: Thu, 17 Jan 2013 00:14:46 -0000 Subject: [Bug 1095422] Re: Non-queue runners should not create var/queue/* directories References: <20130102202237.18027.74579.malonedeb@gac.canonical.com> Message-ID: <20130117001446.12489.1552.launchpad@soybean.canonical.com> ** Branch linked: lp:~sakuag333/mailman/BUG_non_queue_runner -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1095422 Title: Non-queue runners should not create var/queue/* directories To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1095422/+subscriptions From 1098162 at bugs.launchpad.net Thu Jan 17 18:15:15 2013 From: 1098162 at bugs.launchpad.net (Launchpad Bug Tracker) Date: Thu, 17 Jan 2013 17:15:15 -0000 Subject: [Bug 1098162] Re: mailman 1:2.1.15-1 FTBFS on amd64 in raring References: <20130110121713.24143.15877.malonedeb@wampee.canonical.com> Message-ID: <20130117171518.12866.13121.malone@ackee.canonical.com> This bug was fixed in the package mailman - 1:2.1.15-1ubuntu1 --------------- mailman (1:2.1.15-1ubuntu1) raring; urgency=low * Fix FTBFS: correct expected Python.h location in configure script (LP: #1098162). - d/control: add build dependency on dh-autoreconf - d/rules: use dh_autoreconf and dh_autoreconf_clean - d/patches/80_python_h_location.patch: patch configure.in -- Robie Basak Thu, 10 Jan 2013 12:10:20 +0000 ** Changed in: mailman (Ubuntu) Status: In Progress => 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/1098162 Title: mailman 1:2.1.15-1 FTBFS on amd64 in raring To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1098162/+subscriptions From 1095422 at bugs.launchpad.net Sun Jan 20 22:24:20 2013 From: 1095422 at bugs.launchpad.net (Barry Warsaw) Date: Sun, 20 Jan 2013 21:24:20 -0000 Subject: [Bug 1095422] Re: Non-queue runners should not create var/queue/* directories References: <20130102202237.18027.74579.malonedeb@gac.canonical.com> Message-ID: <20130120212421.1175.33583.launchpad@wampee.canonical.com> ** Changed in: mailman Status: Triaged => 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/1095422 Title: Non-queue runners should not create var/queue/* directories To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1095422/+subscriptions From david.soto at web.de Tue Jan 22 18:25:50 2013 From: david.soto at web.de (David Soto) Date: Tue, 22 Jan 2013 17:25:50 -0000 Subject: [Bug 518517] Re: Add the equivalent of postconf(1) References: <20100207193615.31330.60613.malonedeb@soybean.canonical.com> Message-ID: <20130122172550.6897.94378.malone@gac.canonical.com> I would like to work on this. I was wondering whether it would be a good approach to return the results as I'll explain below and to pass the section and key names to the command by the use of options: /bin/mailconf -s section -k key Both options would be optional. If you don't specify a key you would get a list of all the keys and their values of a given section and, if you don't specify a section, you would get a list of all the keys and values matching the given key name. If both options are provided, it would just print the value and if only one of the two is provided, it would return the "full path" of the keys, as suggested by Barry (http://mail.python.org/pipermail/mailman-developers/2012-February/021725.html). Some examples of usage: >> /bin/mailconf -s mailman -k site_owner > changeme at example.com >> /bin/mailconf -s shell > [shell] prompt : >>> > [shell] banner : Welcome to the GNU Mailman shell > [shell] use_ipython : no >> /bin/mailconf -k path > [runner.master] path: $QUEUE_DIR/$name > [logging.template] path : mailman.log > etc. > -- 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) To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/518517/+subscriptions From 518517 at bugs.launchpad.net Wed Jan 23 00:04:37 2013 From: 518517 at bugs.launchpad.net (Barry Warsaw) Date: Tue, 22 Jan 2013 23:04:37 -0000 Subject: [Bug 518517] Re: Add the equivalent of postconf(1) References: <20100207193615.31330.60613.malonedeb@soybean.canonical.com> <20130122172550.6897.94378.malone@gac.canonical.com> Message-ID: <20130122180437.7fe135d7@anarchist.wooz.org> On Jan 22, 2013, at 05:25 PM, David Soto wrote: >I would like to work on this. I was wondering whether it would be a good >approach to return the results as I'll explain below and to pass the >section and key names to the command by the use of options: > >/bin/mailconf -s section -k key > >Both options would be optional. If you don't specify a key you would get a >list of all the keys and their values of a given section and, if you don't >specify a section, you would get a list of all the keys and values matching >the given key name. If both options are provided, it would just print the >value and if only one of the two is provided, it would return the "full path" >of the keys, as suggested by Barry >(http://mail.python.org/pipermail/mailman-developers/2012-February/021725.html). > >Some examples of usage: > >>> /bin/mailconf -s mailman -k site_owner >> changeme at example.com > >>> /bin/mailconf -s shell >> [shell] prompt : >>> >> [shell] banner : Welcome to the GNU Mailman shell >> [shell] use_ipython : no > >>> /bin/mailconf -k path >> [runner.master] path: $QUEUE_DIR/$name >> [logging.template] path : mailman.log >> etc. I like this. The alternative is to accept the `[section]variable` syntax for the key, so that the retrieval syntax would match a hypothetical (i.e. not part of this bug) setting syntax. postconf can set values too, but I propose we don't worry about that for mailmanconf now. Of course the extended syntax can always be added later, so the -s and -k semantics you describe above seem reasonable. (Note that these days, this would be implemented as a bin/mailman subcommand, probably `config`.) Feel free to follow up on mailman-developers if you have further questions. -- 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) To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/518517/+subscriptions From david.soto at web.de Wed Jan 23 20:15:23 2013 From: david.soto at web.de (David Soto) Date: Wed, 23 Jan 2013 19:15:23 -0000 Subject: [Bug 518517] Re: Add the equivalent of postconf(1) References: <20100207193615.31330.60613.malonedeb@soybean.canonical.com> Message-ID: <20130123191523.1431.58749.launchpad@gac.canonical.com> ** Branch linked: lp:~david-soto/mailman/postconf_equivalent -- 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) To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/518517/+subscriptions From david.soto at web.de Wed Jan 23 20:27:37 2013 From: david.soto at web.de (David Soto) Date: Wed, 23 Jan 2013 19:27:37 -0000 Subject: [Merge] lp:~david-soto/mailman/postconf_equivalent into lp:mailman Message-ID: <20130123192736.20951.79572.launchpad@ackee.canonical.com> David Soto has proposed merging lp:~david-soto/mailman/postconf_equivalent into lp:mailman. Requested reviews: Mailman Coders (mailman-coders) Related bugs: Bug #518517 in GNU Mailman: "Add the equivalent of postconf(1)" https://bugs.launchpad.net/mailman/+bug/518517 For more details, see: https://code.launchpad.net/~david-soto/mailman/postconf_equivalent/+merge/144565 This branch adds a postconf equivalent to the subcommands which displays configuration values as described in #518517. I have included a test class with two methods which ensure that the command displays an error message if invalid sections or keys are passed. You can call the command by executing "/bin/mailman mailmanconf -s section -k key". -- https://code.launchpad.net/~david-soto/mailman/postconf_equivalent/+merge/144565 Your team Mailman Coders is requested to review the proposed merge of lp:~david-soto/mailman/postconf_equivalent into lp:mailman. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 8105 bytes Desc: not available URL: From danny.piccirillo at ubuntu.com Thu Jan 24 22:52:21 2013 From: danny.piccirillo at ubuntu.com (=?utf-8?b?S+G6j3Jh?=) Date: Thu, 24 Jan 2013 21:52:21 -0000 Subject: [Bug 1104484] [NEW] Link to post in email footer References: <20130124215221.6802.30317.malonedeb@soybean.canonical.com> Message-ID: <20130124215221.6802.30317.malonedeb@soybean.canonical.com> Public bug reported: With the new web UI, there should be a feature to have message footers include a link to the message in the web UI ** Affects: mailman Importance: Undecided Status: New ** Tags: 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/1104484 Title: Link to post in email footer To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1104484/+subscriptions From danny.piccirillo at ubuntu.com Thu Jan 24 23:09:04 2013 From: danny.piccirillo at ubuntu.com (=?utf-8?b?S+G6j3Jh?=) Date: Thu, 24 Jan 2013 22:09:04 -0000 Subject: [Bug 1104498] [NEW] Member contact requests References: <20130124220904.6802.86776.malonedeb@soybean.canonical.com> Message-ID: <20130124220904.6802.86776.malonedeb@soybean.canonical.com> Public bug reported: When configured to hide email addresses. a mailman user should be able to contact someone else by using a request contact form a profile page representing a user. This form would email the recipient of the request a short message explaining who is trying to get in contact, and the email address of the user requesting contact. ** Affects: mailman Importance: Undecided Status: New ** Tags: 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/1104498 Title: Member contact requests To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1104498/+subscriptions From danny.piccirillo at ubuntu.com Thu Jan 24 23:08:31 2013 From: danny.piccirillo at ubuntu.com (=?utf-8?b?S+G6j3Jh?=) Date: Thu, 24 Jan 2013 22:08:31 -0000 Subject: [Bug 1104497] [NEW] User profile pages References: <20130124220831.20714.28903.malonedeb@wampee.canonical.com> Message-ID: <20130124220831.20714.28903.malonedeb@wampee.canonical.com> Public bug reported: Mailman users should have a profile page that is common to all the lists in the instance. The profile should store all the user's personal information (if any), and lists all of the posts by that user. ** Affects: mailman Importance: Undecided Status: New ** Tags: 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/1104497 Title: User profile pages To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1104497/+subscriptions From danny.piccirillo at ubuntu.com Thu Jan 24 23:14:12 2013 From: danny.piccirillo at ubuntu.com (=?utf-8?b?S+G6j3Jh?=) Date: Thu, 24 Jan 2013 22:14:12 -0000 Subject: [Bug 1104507] [NEW] Web feeds References: <20130124221412.12292.56496.malonedeb@chaenomeles.canonical.com> Message-ID: <20130124221412.12292.56496.malonedeb@chaenomeles.canonical.com> Public bug reported: Mailman should create atom/rss web feeds from lists as well as individual posts (threads) or searches. ** 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/1104507 Title: Web feeds To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1104507/+subscriptions From danny.piccirillo at ubuntu.com Thu Jan 24 23:11:58 2013 From: danny.piccirillo at ubuntu.com (=?utf-8?b?S+G6j3Jh?=) Date: Thu, 24 Jan 2013 22:11:58 -0000 Subject: [Bug 1104505] [NEW] Web posting interface References: <20130124221158.12411.64504.malonedeb@chaenomeles.canonical.com> Message-ID: <20130124221158.12411.64504.malonedeb@chaenomeles.canonical.com> Public bug reported: There should be an interface for posting to a list from the Web UI ** Affects: mailman Importance: Undecided Status: New ** Tags: 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/1104505 Title: Web posting interface To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1104505/+subscriptions From david.soto at web.de Fri Jan 25 01:00:31 2013 From: david.soto at web.de (David Soto) Date: Fri, 25 Jan 2013 00:00:31 -0000 Subject: [Bug 973790] Re: 'approved' rule should not modify the message References: <20120404214625.8019.15632.malonedeb@wampee.canonical.com> Message-ID: <20130125000031.1317.97283.malone@gac.canonical.com> As far as I see, the cleanse handler removes the approved headers, too. I.e. whenever the message goes through the posting pipeline, the headers are removed. Should they get removed when the message goes through other pipelines, too? If not, I guess the removal code from the approved rule could just be deleted? -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/973790 Title: 'approved' rule should not modify the message To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/973790/+subscriptions From 1104507 at bugs.launchpad.net Fri Jan 25 05:29:17 2013 From: 1104507 at bugs.launchpad.net (Barry Warsaw) Date: Fri, 25 Jan 2013 04:29:17 -0000 Subject: [Bug 1104507] Re: Web feeds References: <20130124221412.12292.56496.malonedeb@chaenomeles.canonical.com> Message-ID: <20130125042917.20992.65895.malone@wampee.canonical.com> Added Postorius as a project since such a feed might be better done there (or as a plugin reacting to post events). ** Tags added: mailman3 ** Also affects: postorius 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/1104507 Title: Web feeds To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1104507/+subscriptions From 1104505 at bugs.launchpad.net Fri Jan 25 05:28:05 2013 From: 1104505 at bugs.launchpad.net (Barry Warsaw) Date: Fri, 25 Jan 2013 04:28:05 -0000 Subject: [Bug 1104505] Re: Web posting interface References: <20130124221158.12411.64504.malonedeb@chaenomeles.canonical.com> Message-ID: <20130125042806.12575.47428.launchpad@chaenomeles.canonical.com> ** 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/1104505 Title: Web posting interface To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1104505/+subscriptions From 1104498 at bugs.launchpad.net Fri Jan 25 05:31:09 2013 From: 1104498 at bugs.launchpad.net (Barry Warsaw) Date: Fri, 25 Jan 2013 04:31:09 -0000 Subject: [Bug 1104498] Re: Member contact requests References: <20130124220904.6802.86776.malonedeb@soybean.canonical.com> Message-ID: <20130125043109.12831.50410.launchpad@chaenomeles.canonical.com> ** Tags added: mailman3 ** Also affects: postorius 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/1104498 Title: Member contact requests To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1104498/+subscriptions From 1104497 at bugs.launchpad.net Fri Jan 25 05:30:31 2013 From: 1104497 at bugs.launchpad.net (Barry Warsaw) Date: Fri, 25 Jan 2013 04:30:31 -0000 Subject: [Bug 1104497] Re: User profile pages References: <20130124220831.20714.28903.malonedeb@wampee.canonical.com> Message-ID: <20130125043031.21174.32886.launchpad@wampee.canonical.com> ** Tags added: mailman3 ** Also affects: postorius 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/1104497 Title: User profile pages To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1104497/+subscriptions From 1104484 at bugs.launchpad.net Fri Jan 25 05:31:46 2013 From: 1104484 at bugs.launchpad.net (Barry Warsaw) Date: Fri, 25 Jan 2013 04:31:46 -0000 Subject: [Bug 1104484] Re: Link to post in email footer References: <20130124215221.6802.30317.malonedeb@soybean.canonical.com> Message-ID: <20130125043147.12488.98913.launchpad@chaenomeles.canonical.com> ** Tags added: mailman3 ** Also affects: postorius 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/1104484 Title: Link to post in email footer To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1104484/+subscriptions From danny.piccirillo at ubuntu.com Fri Jan 25 05:46:01 2013 From: danny.piccirillo at ubuntu.com (=?utf-8?b?S+G6j3Jh?=) Date: Fri, 25 Jan 2013 04:46:01 -0000 Subject: [Bug 1104505] Re: Web posting interface References: <20130124221158.12411.64504.malonedeb@chaenomeles.canonical.com> Message-ID: <20130125044601.7221.35963.launchpad@soybean.canonical.com> ** Also affects: postorius 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/1104505 Title: Web posting interface To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1104505/+subscriptions From 266062 at bugs.launchpad.net Sat Jan 26 04:00:13 2013 From: 266062 at bugs.launchpad.net (Jtate) Date: Sat, 26 Jan 2013 03:00:13 -0000 Subject: [Bug 266062] Re: Non-Ascii character in e-mail address causes traceback References: <20080905192828.27052.91095.launchpad@forster.canonical.com> Message-ID: <20130126030014.4173.1521.malone@wampee.canonical.com> Old bug is old. ** 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/266062 Title: Non-Ascii character in e-mail address causes traceback To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/266062/+subscriptions From mark at msapiro.net Sun Jan 27 05:28:33 2013 From: mark at msapiro.net (Mark Sapiro) Date: Sun, 27 Jan 2013 04:28:33 -0000 Subject: [Bug 266062] Re: Non-Ascii character in e-mail address causes traceback References: <20080905192828.27052.91095.launchpad@forster.canonical.com> Message-ID: <20130127042833.4086.76305.malone@chaenomeles.canonical.com> This was fixed in Mailman 2.1.6 by tightening the test for non-ascii in email addresses. The exception can still occur if a non-ascii email address is somehow a list member. ** Changed in: mailman Status: Invalid => 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/266062 Title: Non-Ascii character in e-mail address causes traceback To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/266062/+subscriptions