From 2013001 at iiitdmj.ac.in Wed Apr 1 06:31:17 2015 From: 2013001 at iiitdmj.ac.in (Aanand) Date: Wed, 01 Apr 2015 04:31:17 -0000 Subject: [Bug 1414181] Re: Include message headers in discard notifications References: <20150123211003.29705.92991.malonedeb@wampee.canonical.com> Message-ID: <20150401043117.25812.94053.malone@gac.canonical.com> One possible solution is that we add the header in src/mailman/chains/discard.py before calling notify(...) in DiscardChain eg, msg['Received'] = msgdata.get('Received'). Would it be fine? -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1414181 Title: Include message headers in discard notifications To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1414181/+subscriptions From andrew.stuart at supercoders.com.au Sun Apr 5 23:12:28 2015 From: andrew.stuart at supercoders.com.au (Andrew Stuart) Date: Sun, 05 Apr 2015 21:12:28 -0000 Subject: [Bug 1423756] Ability to define user as domainowner or serverowner References: <20150220001108.20399.87602.malonedeb@gac.canonical.com> <20150325040155.7280.72802.launchpad@chaenomeles.canonical.com> Message-ID: <6E1859D4-31E8-4F3D-9990-7FD09D5B040D@supercoders.com.au> Hi Abhilash I?m happy to test this when you?ve got it to the state that you?re happy with. thanks Andrew -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1423756 Title: Ability to define user as domainowner or serverowner To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1423756/+subscriptions From raj.abhilash1 at gmail.com Mon Apr 6 00:53:28 2015 From: raj.abhilash1 at gmail.com (Abhilash Raj) Date: Sun, 05 Apr 2015 22:53:28 -0000 Subject: [Bug 1423756] Re: Ability to define user as domainowner or serverowner References: <20150220001108.20399.87602.malonedeb@gac.canonical.com> Message-ID: <20150405225328.22185.35951.malone@wampee.canonical.com> Hi Andrew, I am working on this branch: https://code.launchpad.net/~raj- abhilash1/mailman/bug_1423756/ . The work is complete, except for one doctest on which I need some help. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1423756 Title: Ability to define user as domainowner or serverowner To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1423756/+subscriptions From andrew.stuart at supercoders.com.au Mon Apr 6 01:09:53 2015 From: andrew.stuart at supercoders.com.au (Andrew Stuart) Date: Sun, 05 Apr 2015 23:09:53 -0000 Subject: [Bug 1423756] Re: Ability to define user as domainowner or serverowner References: <20150220001108.20399.87602.malonedeb@gac.canonical.com> <20150405225328.22185.35951.malone@wampee.canonical.com> Message-ID: <7E9938C9-A93B-49A9-9E86-B1ADF9020CE4@supercoders.com.au> OK thanks Abhilash, I?ll test it tomorrow and let you know how I go. thanks as On 6 Apr 2015, at 8:53 am, Abhilash Raj wrote: Hi Andrew, I am working on this branch: https://code.launchpad.net/~raj- abhilash1/mailman/bug_1423756/ . The work is complete, except for one doctest on which I need some help. -- You received this bug notification because you are subscribed to the bug report. https://bugs.launchpad.net/bugs/1423756 Title: Ability to define user as domainowner or serverowner Status in GNU Mailman: In Progress Bug description: I had an idea about rounding out the Mailman permissions model, interested in hearing thoughts on it. Obviously there has been considerable discussion on this topic before. Mailman already carries much of the information needed for determining user permissions to Mailman resources. Only two things are missing: 1: the ability to define a user as being a ?serverowner? 2: the ability to define a user as being a ?domainowner? (You?ll need to look at this email in plain text to see the table properly). The Mailman permissions model currently looks like this: resource_type roles resource_id user_identifier where to find permission --------------------------------------------------------------------------------------------------------- user userowner n/a UUID (defined in user record) list listowner list_id subscriber (defined in list member record) list listmember list_id subscriber (defined in list member record) list listmoderator list_id subscriber (defined in list member record) list listnonmember list_id subscriber (defined in list member record) I am suggesting adding two further permissions to the existing permissions model, which would look like this: resource_type roles resource_id user_id where to find permission --------------------------------------------------------------------------------------------------------- server serverowner n/a UUID (not currently defined in Mailman) domain domainowner mail_host UUID (not currently defined in Mailman) To implement, it would need to be possible to define as user as being a ?serverowner?, and also to be able to define a user as being a ?domainowner? for any given domain. It should be possible to define multiple user with the serverowner role and it should be possible to define multiple users with the domain owner role. If it were possible to do so within the Mailman core then there would be a completely usable permissions model entirely within Mailman, and no need to store any additional permissions data outside Mailman. The permissions model would allow definition of user access to any Mailman resource including domains and servers. The interpretation of the permissions would still be up to the application that consumes the REST API, as is currently the case. There would need to be methods available via the REST API to: set domainowner role for a user set serverowner role for a user delete domainowner role from a user delete serverowner role from a user find if a specific user holds domainowner find if a specific user holds serverowner role find all domainowners for a domain find all serverowners To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1423756/+subscriptions -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1423756 Title: Ability to define user as domainowner or serverowner To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1423756/+subscriptions From 1423756 at bugs.launchpad.net Mon Apr 6 03:09:26 2015 From: 1423756 at bugs.launchpad.net (Barry Warsaw) Date: Mon, 06 Apr 2015 01:09:26 -0000 Subject: [Bug 1423756] Re: Ability to define user as domainowner or serverowner References: <20150220001108.20399.87602.malonedeb@gac.canonical.com> Message-ID: <20150406010927.26230.66293.malone@gac.canonical.com> Which doctest do you need help with, and what's the problem? ** Branch linked: lp:~raj-abhilash1/mailman/bug_1423756 -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1423756 Title: Ability to define user as domainowner or serverowner To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1423756/+subscriptions From raj.abhilash1 at gmail.com Mon Apr 6 06:43:48 2015 From: raj.abhilash1 at gmail.com (Abhilash Raj) Date: Mon, 06 Apr 2015 04:43:48 -0000 Subject: [Bug 1423756] Re: Ability to define user as domainowner or serverowner References: <20150220001108.20399.87602.malonedeb@gac.canonical.com> Message-ID: <20150406044348.8217.80223.malone@soybean.canonical.com> Check out this error trace: http://pastie.org/10075809 . I am not able to fix it. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1423756 Title: Ability to define user as domainowner or serverowner To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1423756/+subscriptions From saprativejana at gmail.com Mon Apr 6 08:58:17 2015 From: saprativejana at gmail.com (Saprative) Date: Mon, 06 Apr 2015 06:58:17 -0000 Subject: [Bug 1203359] Re: IArchiver.archive_message implementations return None References: <20130720185538.20778.48974.malonedeb@gac.canonical.com> Message-ID: <20150406065817.7381.97877.malone@chaenomeles.canonical.com> can you explain this to me in a little detail. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1203359 Title: IArchiver.archive_message implementations return None To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1203359/+subscriptions From 1203359 at bugs.launchpad.net Mon Apr 6 17:23:58 2015 From: 1203359 at bugs.launchpad.net (Barry Warsaw) Date: Mon, 06 Apr 2015 15:23:58 -0000 Subject: [Bug 1203359] Re: IArchiver.archive_message implementations return None References: <20130720185538.20778.48974.malonedeb@gac.canonical.com> Message-ID: <20150406152358.25843.87715.malone@gac.canonical.com> While the built-in archivers do currently return None, it is possible that more information can be provided about the archived message. That's why the interface leaves it open to return the archive url if available. It's possible MHonArc could be made to do this; contributions welcome. It's possible the prototype archiver could do this as well. Happy to take a contribution for this too. For now, the interface is right, but the existing IArchiver implementations should be explicit in their return of None. We don't want to rely on Python's implicit return of None. I'll make that fix. ** Tags added: mailman3 ** Changed in: mailman Milestone: None => 3.0.0b6 ** Changed in: mailman Status: New => 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/1203359 Title: IArchiver.archive_message implementations return None To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1203359/+subscriptions From 1423756 at bugs.launchpad.net Mon Apr 6 17:53:31 2015 From: 1423756 at bugs.launchpad.net (Barry Warsaw) Date: Mon, 06 Apr 2015 15:53:31 -0000 Subject: [Bug 1423756] Re: Ability to define user as domainowner or serverowner References: <20150220001108.20399.87602.malonedeb@gac.canonical.com> Message-ID: <20150406155331.8217.23902.malone@soybean.canonical.com> I'll fix that when I merge. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1423756 Title: Ability to define user as domainowner or serverowner To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1423756/+subscriptions From barry at canonical.com Tue Apr 7 03:47:27 2015 From: barry at canonical.com (Barry Warsaw) Date: Tue, 07 Apr 2015 01:47:27 -0000 Subject: [Merge] lp:~barry/mailman/lp1423756 into lp:mailman Message-ID: <20150407014722.4761.47571.launchpad@ackee.canonical.com> Barry Warsaw has proposed merging lp:~barry/mailman/lp1423756 into lp:mailman. Requested reviews: Mailman Coders (mailman-coders) Related bugs: Bug #1423756 in GNU Mailman: "Ability to define user as domainowner or serverowner " https://bugs.launchpad.net/mailman/+bug/1423756 For more details, see: https://code.launchpad.net/~barry/mailman/lp1423756/+merge/255318 Mega-merge of Abhilash's branch, with fixes. -- Your team Mailman Coders is requested to review the proposed merge of lp:~barry/mailman/lp1423756 into lp:mailman. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 51994 bytes Desc: not available URL: From 1423756 at bugs.launchpad.net Tue Apr 7 03:46:08 2015 From: 1423756 at bugs.launchpad.net (Barry Warsaw) Date: Tue, 07 Apr 2015 01:46:08 -0000 Subject: [Bug 1423756] Re: Ability to define user as domainowner or serverowner References: <20150220001108.20399.87602.malonedeb@gac.canonical.com> Message-ID: <20150407014608.8075.61031.launchpad@soybean.canonical.com> ** Branch linked: lp:~barry/mailman/lp1423756 -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1423756 Title: Ability to define user as domainowner or serverowner To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1423756/+subscriptions From noreply at launchpad.net Tue Apr 7 04:07:11 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Tue, 07 Apr 2015 02:07:11 -0000 Subject: [Merge] lp:~barry/mailman/lp1423756 into lp:mailman In-Reply-To: <20150407014722.4761.47571.launchpad@ackee.canonical.com> Message-ID: <20150407020708.7059.21032.launchpad@ackee.canonical.com> The proposal to merge lp:~barry/mailman/lp1423756 into lp:mailman has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~barry/mailman/lp1423756/+merge/255318 -- Your team Mailman Coders is requested to review the proposed merge of lp:~barry/mailman/lp1423756 into lp:mailman. From 1423756 at bugs.launchpad.net Tue Apr 7 04:07:02 2015 From: 1423756 at bugs.launchpad.net (Barry Warsaw) Date: Tue, 07 Apr 2015 02:07:02 -0000 Subject: [Bug 1423756] Re: Ability to define user as domainowner or serverowner References: <20150220001108.20399.87602.malonedeb@gac.canonical.com> Message-ID: <20150407020703.26412.68797.launchpad@gac.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/1423756 Title: Ability to define user as domainowner or serverowner To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1423756/+subscriptions From noreply at launchpad.net Tue Apr 7 09:08:50 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Tue, 07 Apr 2015 07:08:50 -0000 Subject: [Merge] lp:~flo-fuchs/mailman.client/archival_options into lp:mailman.client In-Reply-To: <20150315210620.17168.91381.launchpad@ackee.canonical.com> Message-ID: <20150407070850.7059.79527.launchpad@ackee.canonical.com> The proposal to merge lp:~flo-fuchs/mailman.client/archival_options into lp:mailman.client has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~flo-fuchs/mailman.client/archival_options/+merge/253005 -- Your team Mailman Coders is requested to review the proposed merge of lp:~flo-fuchs/mailman.client/archival_options into lp:mailman.client. From noreply at launchpad.net Tue Apr 7 09:09:23 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Tue, 07 Apr 2015 07:09:23 -0000 Subject: [Branch ~mailman-coders/mailman.client/trunk] Rev 63: Added archival options. Message-ID: <20150407070923.23485.63323.launchpad@ackee.canonical.com> Merge authors: Florian Fuchs (flo-fuchs) Related merge proposals: https://code.launchpad.net/~flo-fuchs/mailman.client/archival_options/+merge/253005 proposed by: Florian Fuchs (flo-fuchs) ------------------------------------------------------------ revno: 63 [merge] committer: Florian Fuchs branch nick: mailman.client timestamp: Tue 2015-04-07 09:08:25 +0200 message: Added archival options. modified: src/mailmanclient/NEWS.rst src/mailmanclient/_client.py src/mailmanclient/docs/using.rst src/mailmanclient/tests/data/tape.yaml The size of the diff (5603 lines) is larger than your specified limit of 1000 lines -- lp:mailman.client https://code.launchpad.net/~mailman-coders/mailman.client/trunk Your team Mailman Coders is subscribed to branch lp:mailman.client. To unsubscribe from this branch go to https://code.launchpad.net/~mailman-coders/mailman.client/trunk/+edit-subscription From bhavesh.goyal093 at gmail.com Wed Apr 8 01:12:25 2015 From: bhavesh.goyal093 at gmail.com (Bhavesh Goyal) Date: Tue, 07 Apr 2015 23:12:25 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/fixed-invalid-email-acceptance into lp:postorius Message-ID: <20150407231224.21199.73365.launchpad@ackee.canonical.com> Bhavesh Goyal has proposed merging lp:~bhavesh-goyal093/postorius/fixed-invalid-email-acceptance into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) For more details, see: https://code.launchpad.net/~bhavesh-goyal093/postorius/fixed-invalid-email-acceptance/+merge/255447 Earlier The Mass Subscription also allowed some invalid email addresses such as ..b at gmail.com, ... at gmail.com to get subscribed to a mailing list, which could have led to Server Errors in long run while sending mass mails. Now The Emails are successfully validated using Django EmailValidators and all the invalid emails including the ones ignored earlier are now rejected by throwing a Email Validation Error. -- Your team Mailman Coders is requested to review the proposed merge of lp:~bhavesh-goyal093/postorius/fixed-invalid-email-acceptance into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 2239 bytes Desc: not available URL: From pskoli93 at gmail.com Wed Apr 8 08:26:23 2015 From: pskoli93 at gmail.com (Pavan Koli) Date: Wed, 08 Apr 2015 06:26:23 -0000 Subject: [Merge] lp:~pskoli93/postorius/validation-fix into lp:postorius Message-ID: <20150408062622.8675.95081.launchpad@ackee.canonical.com> Pavan Koli has proposed merging lp:~pskoli93/postorius/validation-fix into lp:postorius. Commit message: Fixes to validation during mass subscription Requested reviews: Florian Fuchs (flo-fuchs) Related bugs: Bug #1441314 in Postorius: "Wrong email ids passing validation during mass subscription" https://bugs.launchpad.net/postorius/+bug/1441314 For more details, see: https://code.launchpad.net/~pskoli93/postorius/validation-fix/+merge/255461 While using the mass subscription option to subscribe many email ids, email ids such as '@gmail.com' are passing through. Django validators have been used now to validate the email ids. Also some changes have been made to the file postorius/src/postorius/forms.py. On leaving the Mail Host and Web Host column blank while creating a new domain, a message 'Please a domain name' used to get displayed which seems not to help much. Change has been made to now display 'Please enter a Mail Host' and 'Please enter a Web Host' if you leave that respective column blank. -- 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: 4021 bytes Desc: not available URL: From pskoli93 at gmail.com Wed Apr 8 08:42:11 2015 From: pskoli93 at gmail.com (Pavan Koli) Date: Wed, 08 Apr 2015 06:42:11 -0000 Subject: [Merge] lp:~pskoli93/postorius/validation-fix into lp:postorius In-Reply-To: <20150408062622.8675.95081.launchpad@ackee.canonical.com> Message-ID: <20150408064211.838.1225.launchpad@ackee.canonical.com> The proposal to merge lp:~pskoli93/postorius/validation-fix into lp:postorius has been updated. Description changed to: While using the mass subscription option to subscribe many email ids, email ids such as '@gmail.com' are passing through. Django validators have been used now to validate the email ids. Also some changes have been made to the file postorius/src/postorius/forms.py. On leaving the Mail Host and Web Host column blank while creating a new domain, a message 'Please a domain name' used to get displayed which seems not to help much. Change has been made to now display 'Please enter a Mail Host' and 'Please enter a Web Host' if you leave that respective column blank. Change has been added to the files postorius/src/postorius/models.py, AttributeError used to be thrown when 'EMAIL_CONFIRMATION_FROM' was not properly configured, now if 'EMAIL_CONFIRMATION_FROM' is checked if it's not present then 'DEFAULT_FROM_EMAIL' is checked. If both are not configured then ImproperlyConfigured error is thrown, it atleast conveys that there is a problem in configuration and not in the code. For more details, see: https://code.launchpad.net/~pskoli93/postorius/validation-fix/+merge/255461 -- Your team Mailman Coders is subscribed to branch lp:postorius. From komeda.shinji at gmail.com Thu Apr 9 19:31:14 2015 From: komeda.shinji at gmail.com (KOMEDA Shinji) Date: Thu, 09 Apr 2015 17:31:14 -0000 Subject: [Bug 1442298] [NEW] Find member does not match name in multibyte characters References: <20150409173114.7787.72106.malonedeb@chaenomeles.canonical.com> Message-ID: <20150409173114.7787.72106.malonedeb@chaenomeles.canonical.com> Public bug reported: findmember encoding is not match menber name encoding. ** Affects: mailman Importance: Undecided Status: New ** Patch added: "findmember.patch" https://bugs.launchpad.net/bugs/1442298/+attachment/4370718/+files/findmember.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/1442298 Title: Find member does not match name in multibyte characters To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1442298/+subscriptions From pskoli93 at gmail.com Fri Apr 10 18:11:02 2015 From: pskoli93 at gmail.com (Pavan Koli) Date: Fri, 10 Apr 2015 16:11:02 -0000 Subject: [Bug 265932] Re: add member error References: <20080905192717.27052.17494.launchpad@forster.canonical.com> Message-ID: <20150410161104.14523.52947.launchpad@soybean.canonical.com> ** Changed in: mailman Status: New => Incomplete -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/265932 Title: add member error To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/265932/+subscriptions From mark at msapiro.net Fri Apr 10 18:47:24 2015 From: mark at msapiro.net (Mark Sapiro) Date: Fri, 10 Apr 2015 16:47:24 -0000 Subject: [Bug 265932] Re: add member error References: <20080905192717.27052.17494.launchpad@forster.canonical.com> Message-ID: <20150410164724.14172.62124.malone@soybean.canonical.com> This traceback appears to result from using a post 2.1.1 Mailman with an incompatible version of the Python email package that doesn't have an errors= argument to the Header constructor. Given its age and the fact that if this condition were more widespread, the exception would be observed everywhere, I'm marking this invalid. ** Changed in: mailman Status: Incomplete => 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/265932 Title: add member error To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/265932/+subscriptions From aurelien at bompard.org Fri Apr 10 21:42:51 2015 From: aurelien at bompard.org (=?utf-8?q?Aur=C3=A9lien_Bompard?=) Date: Fri, 10 Apr 2015 19:42:51 -0000 Subject: [Bug 1414154] Re: switch to external translation system References: <20150123203254.612.75563.malonedeb@chaenomeles.canonical.com> Message-ID: <20150410194251.26637.20807.malone@gac.canonical.com> I would like to mention the existence of Zanata which is 100% Free software. Could we use that? -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1414154 Title: switch to external translation system To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1414154/+subscriptions From noreply at launchpad.net Sun Apr 12 00:34:22 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Sat, 11 Apr 2015 22:34:22 -0000 Subject: [Branch ~mailman-coders/mailman.client/trunk] Rev 64: Added some changes from the core API Message-ID: <20150411223422.2864.69013.launchpad@ackee.canonical.com> ------------------------------------------------------------ revno: 64 committer: Florian Fuchs branch nick: mailman.client timestamp: Sat 2015-04-11 18:33:16 -0400 message: Added some changes from the core API modified: src/mailmanclient/_client.py src/mailmanclient/docs/using.rst src/mailmanclient/tests/data/tape.yaml The size of the diff (5672 lines) is larger than your specified limit of 1000 lines -- lp:mailman.client https://code.launchpad.net/~mailman-coders/mailman.client/trunk Your team Mailman Coders is subscribed to branch lp:mailman.client. To unsubscribe from this branch go to https://code.launchpad.net/~mailman-coders/mailman.client/trunk/+edit-subscription From noreply at launchpad.net Mon Apr 13 16:48:40 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Mon, 13 Apr 2015 14:48:40 -0000 Subject: [Merge] lp:~pskoli93/postorius/postorius into lp:postorius In-Reply-To: <20150325130529.8957.98699.launchpad@ackee.canonical.com> Message-ID: <20150413144839.12767.30297.launchpad@ackee.canonical.com> The proposal to merge lp:~pskoli93/postorius/postorius into lp:postorius has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~pskoli93/postorius/postorius/+merge/254078 -- Your team Mailman Coders is subscribed to branch lp:postorius. From terri at toybox.ca Mon Apr 13 16:45:16 2015 From: terri at toybox.ca (Terri) Date: Mon, 13 Apr 2015 14:45:16 -0000 Subject: [Merge] lp:~pskoli93/postorius/postorius into lp:postorius In-Reply-To: <20150325130529.8957.98699.launchpad@ackee.canonical.com> Message-ID: <20150413144515.26156.45360.codereview@gac.canonical.com> Review: Approve Looks good to me. -- https://code.launchpad.net/~pskoli93/postorius/postorius/+merge/254078 Your team Mailman Coders is subscribed to branch lp:postorius. From terri at toybox.ca Mon Apr 13 17:15:34 2015 From: terri at toybox.ca (Terri) Date: Mon, 13 Apr 2015 15:15:34 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/fixed-nav-role-identification into lp:postorius In-Reply-To: <20150322150823.15547.30433.launchpad@ackee.canonical.com> Message-ID: <20150413151534.26637.18851.codereview@gac.canonical.com> Review: Needs Fixing I'm rather amused that moderators weren't allowed access to the moderation pages. Silly! This branch also includes giving moderators access to the mass subscribe interface, which they generally shouldn't have access to. Since it's a short fix to take that out, I'll probably just make the changes when I do the merge. -- https://code.launchpad.net/~bhavesh-goyal093/postorius/fixed-nav-role-identification/+merge/253771 Your team Mailman Coders is subscribed to branch lp:postorius. From raj.abhilash1 at gmail.com Mon Apr 13 17:17:22 2015 From: raj.abhilash1 at gmail.com (Abhilash Raj) Date: Mon, 13 Apr 2015 15:17:22 -0000 Subject: [Merge] lp:~raj-abhilash1/postorius/lp1437866 into lp:postorius Message-ID: <20150413151721.1462.72358.launchpad@ackee.canonical.com> Abhilash Raj has proposed merging lp:~raj-abhilash1/postorius/lp1437866 into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) For more details, see: https://code.launchpad.net/~raj-abhilash1/postorius/lp1437866/+merge/255981 Fix #1437866 and a duplicate #1430682 -- Your team Mailman Coders is requested to review the proposed merge of lp:~raj-abhilash1/postorius/lp1437866 into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 1961 bytes Desc: not available URL: From noreply at launchpad.net Mon Apr 13 17:39:01 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Mon, 13 Apr 2015 15:39:01 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/fixed-nav-role-identification into lp:postorius In-Reply-To: <20150322150823.15547.30433.launchpad@ackee.canonical.com> Message-ID: <20150413153900.12766.46091.launchpad@ackee.canonical.com> The proposal to merge lp:~bhavesh-goyal093/postorius/fixed-nav-role-identification into lp:postorius has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~bhavesh-goyal093/postorius/fixed-nav-role-identification/+merge/253771 -- Your team Mailman Coders is subscribed to branch lp:postorius. From terri at toybox.ca Mon Apr 13 18:02:58 2015 From: terri at toybox.ca (Terri) Date: Mon, 13 Apr 2015 16:02:58 -0000 Subject: [Merge] lp:~coolyashish/postorius/add_email_address_in_settings into lp:postorius In-Reply-To: <20150313182623.29879.87665.launchpad@ackee.canonical.com> Message-ID: <20150413160258.12768.46655.launchpad@ackee.canonical.com> The proposal to merge lp:~coolyashish/postorius/add_email_address_in_settings into lp:postorius has been updated. Status: Needs review => Rejected For more details, see: https://code.launchpad.net/~coolyashish/postorius/add_email_address_in_settings/+merge/252939 -- Your team Mailman Coders is subscribed to branch lp:postorius. From noreply at launchpad.net Mon Apr 13 18:12:29 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Mon, 13 Apr 2015 16:12:29 -0000 Subject: [Merge] lp:~raj-abhilash1/postorius/lp1437866 into lp:postorius In-Reply-To: <20150413151721.1462.72358.launchpad@ackee.canonical.com> Message-ID: <20150413161228.12767.93556.launchpad@ackee.canonical.com> The proposal to merge lp:~raj-abhilash1/postorius/lp1437866 into lp:postorius has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~raj-abhilash1/postorius/lp1437866/+merge/255981 -- Your team Mailman Coders is requested to review the proposed merge of lp:~raj-abhilash1/postorius/lp1437866 into lp:postorius. From noreply at launchpad.net Mon Apr 13 18:12:29 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Mon, 13 Apr 2015 16:12:29 -0000 Subject: [Merge] lp:~black-perl/postorius/fix-postorius-typo into lp:postorius In-Reply-To: <20150305084222.23344.66792.launchpad@ackee.canonical.com> Message-ID: <20150413161228.12766.82941.launchpad@ackee.canonical.com> The proposal to merge lp:~black-perl/postorius/fix-postorius-typo into lp:postorius has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~black-perl/postorius/fix-postorius-typo/+merge/251879 -- Your team Mailman Coders is requested to review the proposed merge of lp:~black-perl/postorius/fix-postorius-typo into lp:postorius. From mark at msapiro.net Mon Apr 13 18:56:18 2015 From: mark at msapiro.net (Mark Sapiro) Date: Mon, 13 Apr 2015 16:56:18 -0000 Subject: [Bug 1442298] Re: Find member does not match name in multibyte characters References: <20150409173114.7787.72106.malonedeb@chaenomeles.canonical.com> Message-ID: <20150413165618.17497.59656.malone@chaenomeles.canonical.com> I see the bug, but the patch doesn't fix the problem in all cases. I think a better patch is instead of regexp = regexp.decode() to do regexp = regexp.decode(Utils.GetCharSet(mlist.preferred_language)). I still need to do more testing, but I would like to know if providing this character set in this way still fixes the bug in your environment. The problem with the original patch is decode() without a charset uses Python's default string encoding which is often ASCII resulting in UnicodeDecodeError and no change to regexp. While this doesn't make things worse, it doesn't fix the problem unless the site has changed Python's default string encoding to a charset more appropriate to the installation. ** Changed in: mailman Importance: Undecided => Medium ** Changed in: mailman Status: New => Confirmed ** 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/1442298 Title: Find member does not match name in multibyte characters To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1442298/+subscriptions From raj.abhilash1 at gmail.com Mon Apr 13 18:01:40 2015 From: raj.abhilash1 at gmail.com (Abhilash Raj) Date: Mon, 13 Apr 2015 16:01:40 -0000 Subject: [Merge] lp:~coolyashish/postorius/add_email_address_in_settings into lp:postorius In-Reply-To: <20150313182623.29879.87665.launchpad@ackee.canonical.com> Message-ID: <20150413160139.13773.40473.codereview@wampee.canonical.com> We don't want to send confirmation email from the user's email, it should be from listowner or some other address (like noreply at domain or something). -- https://code.launchpad.net/~coolyashish/postorius/add_email_address_in_settings/+merge/252939 Your team Mailman Coders is subscribed to branch lp:postorius. From terri at toybox.ca Mon Apr 13 18:02:51 2015 From: terri at toybox.ca (Terri) Date: Mon, 13 Apr 2015 16:02:51 -0000 Subject: [Merge] lp:~coolyashish/postorius/add_email_address_in_settings into lp:postorius In-Reply-To: <20150313182623.29879.87665.launchpad@ackee.canonical.com> Message-ID: <20150413160251.26187.49403.codereview@gac.canonical.com> Abhilash has a more complete fix here https://code.launchpad.net/~raj-abhilash1/postorius/lp1437866 -- https://code.launchpad.net/~coolyashish/postorius/add_email_address_in_settings/+merge/252939 Your team Mailman Coders is subscribed to branch lp:postorius. From komeda.shinji at gmail.com Mon Apr 13 20:04:55 2015 From: komeda.shinji at gmail.com (KOMEDA Shinji) Date: Mon, 13 Apr 2015 18:04:55 -0000 Subject: [Bug 1442298] Re: Find member does not match name in multibyte characters References: <20150409173114.7787.72106.malonedeb@chaenomeles.canonical.com> Message-ID: <20150413180455.14523.89170.malone@soybean.canonical.com> I'm using Mailman 2.1.16 in Ubuntu box, in my environment DEFAULT_SERVER_LANGUAGE = 'ja' and Ubuntu has the following code in Mailman/Defaults.py import sys reload(sys) sys.setdefaultencoding('utf-8') These code came from debian/patches/91_utf8.patch. I changed "regexp.decode()" to "regexp.decode(Utils.GetCharSet(mlist.preferred_language))", It works fine. Thank you. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1442298 Title: Find member does not match name in multibyte characters To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1442298/+subscriptions From ankprashar at gmail.com Mon Apr 13 21:06:33 2015 From: ankprashar at gmail.com (Ankush Sharma) Date: Mon, 13 Apr 2015 19:06:33 -0000 Subject: [Merge] lp:~black-perl/postorius/fix-1443433 into lp:postorius Message-ID: <20150413190632.30807.12461.launchpad@ackee.canonical.com> Ankush Sharma has proposed merging lp:~black-perl/postorius/fix-1443433 into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) Related bugs: Bug #1443433 in Postorius: "List moderator cannot view the held messages, 403 status code returned " https://bugs.launchpad.net/postorius/+bug/1443433 For more details, see: https://code.launchpad.net/~black-perl/postorius/fix-1443433/+merge/256013 The list_moderator_required decorator takes place of the list_owner_required at the required places. -- Your team Mailman Coders is requested to review the proposed merge of lp:~black-perl/postorius/fix-1443433 into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 436 bytes Desc: not available URL: From ankprashar at gmail.com Mon Apr 13 21:54:24 2015 From: ankprashar at gmail.com (Ankush Sharma) Date: Mon, 13 Apr 2015 19:54:24 -0000 Subject: [Merge] lp:~black-perl/postorius/permissions-fix-in-list_nav.html into lp:postorius Message-ID: <20150413195421.12233.20648.launchpad@ackee.canonical.com> Ankush Sharma has proposed merging lp:~black-perl/postorius/permissions-fix-in-list_nav.html into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) Related bugs: Bug #1443400 in Postorius: "Wrong permissions in list_nav.html for Mass Subscription" https://bugs.launchpad.net/postorius/+bug/1443400 For more details, see: https://code.launchpad.net/~black-perl/postorius/permissions-fix-in-list_nav.html/+merge/256026 -- Your team Mailman Coders is requested to review the proposed merge of lp:~black-perl/postorius/permissions-fix-in-list_nav.html into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 890 bytes Desc: not available URL: From noreply at launchpad.net Mon Apr 13 21:56:17 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Mon, 13 Apr 2015 19:56:17 -0000 Subject: [Merge] lp:~black-perl/postorius/permissions-fix-in-list_nav.html into lp:postorius In-Reply-To: <20150413195421.12233.20648.launchpad@ackee.canonical.com> Message-ID: <20150413195616.12767.8073.launchpad@ackee.canonical.com> The proposal to merge lp:~black-perl/postorius/permissions-fix-in-list_nav.html into lp:postorius has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~black-perl/postorius/permissions-fix-in-list_nav.html/+merge/256026 -- Your team Mailman Coders is requested to review the proposed merge of lp:~black-perl/postorius/permissions-fix-in-list_nav.html into lp:postorius. From noreply at launchpad.net Mon Apr 13 22:25:21 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Mon, 13 Apr 2015 20:25:21 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/fixed-invalid-email-acceptance into lp:postorius In-Reply-To: <20150407231224.21199.73365.launchpad@ackee.canonical.com> Message-ID: <20150413202521.12767.58872.launchpad@ackee.canonical.com> The proposal to merge lp:~bhavesh-goyal093/postorius/fixed-invalid-email-acceptance into lp:postorius has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~bhavesh-goyal093/postorius/fixed-invalid-email-acceptance/+merge/255447 -- Your team Mailman Coders is subscribed to branch lp:postorius. From bhavesh.goyal093 at gmail.com Mon Apr 13 23:10:34 2015 From: bhavesh.goyal093 at gmail.com (Bhavesh Goyal) Date: Mon, 13 Apr 2015 21:10:34 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/fixed-postorius-method-decorators into lp:postorius Message-ID: <20150413211033.31467.45642.launchpad@ackee.canonical.com> Bhavesh Goyal has proposed merging lp:~bhavesh-goyal093/postorius/fixed-postorius-method-decorators into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) Related bugs: Bug #1435062 in Postorius: "Postorius gets confused in showing views for members with multiple roles" https://bugs.launchpad.net/postorius/+bug/1435062 For more details, see: https://code.launchpad.net/~bhavesh-goyal093/postorius/fixed-postorius-method-decorators/+merge/256037 Fixed Bug #1435062 which caused postorius to show incorrect nav bar view for members posessing different roles. The solution was found in correcting permissions for list_nav template and fixing method decorators for list_moderator_required which earlier didn't set is_list_owner to be True even if the user was the owner and as a result the view was shown to be incorrect. Now the attributes are set correctly according to the roles and the nav bar sows correct view or different and multiple roles. -- Your team Mailman Coders is requested to review the proposed merge of lp:~bhavesh-goyal093/postorius/fixed-postorius-method-decorators into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 1878 bytes Desc: not available URL: From terri at toybox.ca Mon Apr 13 21:57:20 2015 From: terri at toybox.ca (Terri) Date: Mon, 13 Apr 2015 19:57:20 -0000 Subject: [Merge] lp:~black-perl/postorius/permissions-fix-in-list_nav.html into lp:postorius In-Reply-To: <20150413195421.12233.20648.launchpad@ackee.canonical.com> Message-ID: <20150413195719.16993.11908.codereview@chaenomeles.canonical.com> Review: Approve -- https://code.launchpad.net/~black-perl/postorius/permissions-fix-in-list_nav.html/+merge/256026 Your team Mailman Coders is subscribed to branch lp:postorius. From terri at toybox.ca Mon Apr 13 22:14:53 2015 From: terri at toybox.ca (Terri) Date: Mon, 13 Apr 2015 20:14:53 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/fixed-invalid-email-acceptance into lp:postorius In-Reply-To: <20150407231224.21199.73365.launchpad@ackee.canonical.com> Message-ID: <20150413201452.14075.22198.codereview@soybean.canonical.com> I *think* that invalid email addresses are probably rejected by Mailman Core anyhow, but this should let us provide better error messages. I'm running some tests against the code now in preparation for merging. If someone could set up a few tox tests for this so it'll be tested going forwards, that would be most excellent. -- https://code.launchpad.net/~bhavesh-goyal093/postorius/fixed-invalid-email-acceptance/+merge/255447 Your team Mailman Coders is requested to review the proposed merge of lp:~bhavesh-goyal093/postorius/fixed-invalid-email-acceptance into lp:postorius. From terri at toybox.ca Mon Apr 13 22:24:55 2015 From: terri at toybox.ca (Terri) Date: Mon, 13 Apr 2015 20:24:55 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/fixed-invalid-email-acceptance into lp:postorius In-Reply-To: <20150407231224.21199.73365.launchpad@ackee.canonical.com> Message-ID: <20150413202454.13804.81099.codereview@wampee.canonical.com> Review: Approve -- https://code.launchpad.net/~bhavesh-goyal093/postorius/fixed-invalid-email-acceptance/+merge/255447 Your team Mailman Coders is subscribed to branch lp:postorius. From terri at toybox.ca Mon Apr 13 23:10:49 2015 From: terri at toybox.ca (Terri) Date: Mon, 13 Apr 2015 21:10:49 -0000 Subject: [Merge] lp:~akshayshah/postorius/postorius into lp:postorius In-Reply-To: <20150326115823.17717.49553.launchpad@ackee.canonical.com> Message-ID: <20150413211049.17223.46305.codereview@chaenomeles.canonical.com> Review: Needs Fixing This would make things editable, but I don't want to merge this patch unless the data is actually stored. Short term recommended fix: set this up so it only has editable fields the data stored in Mailman Core, and that it saves that information, just like the other settings pages. This might mean that the only editable thing on the profile page will be "Display name" for now. (Keep the user name even if it's not editable, though) -- https://code.launchpad.net/~akshayshah/postorius/postorius/+merge/254232 Your team Mailman Coders is subscribed to branch lp:postorius. From 1442298 at bugs.launchpad.net Tue Apr 14 00:17:54 2015 From: 1442298 at bugs.launchpad.net (Launchpad Bug Tracker) Date: Mon, 13 Apr 2015 22:17:54 -0000 Subject: [Bug 1442298] Re: Find member does not match name in multibyte characters References: <20150409173114.7787.72106.malonedeb@chaenomeles.canonical.com> Message-ID: <20150413221755.12712.63706.launchpad@ackee.canonical.com> ** 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/1442298 Title: Find member does not match name in multibyte characters To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1442298/+subscriptions From terri at toybox.ca Tue Apr 14 00:29:32 2015 From: terri at toybox.ca (Terri) Date: Mon, 13 Apr 2015 22:29:32 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/feature-implemented-mass-removal into lp:postorius In-Reply-To: <20150322220120.27475.47119.launchpad@ackee.canonical.com> Message-ID: <20150413222932.26513.30549.codereview@gac.canonical.com> Review: Needs Fixing The mass_removal template seems to be missing from this commit. Please update your branch to include it! As a note, I had some merge conflicts on this due to the other code merged at the pycon sprints, so don't be surprised if you have the same problem when you go to fix things. (Nothing serious, it's just that I merged something to fix how "subscribe" was spelled in a few places.) -- https://code.launchpad.net/~bhavesh-goyal093/postorius/feature-implemented-mass-removal/+merge/253775 Your team Mailman Coders is subscribed to branch lp:postorius. From terri at toybox.ca Tue Apr 14 00:47:26 2015 From: terri at toybox.ca (Terri) Date: Mon, 13 Apr 2015 22:47:26 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/fixed-postorius-method-decorators into lp:postorius In-Reply-To: <20150413211033.31467.45642.launchpad@ackee.canonical.com> Message-ID: <20150413224725.13905.34156.codereview@wampee.canonical.com> Whoops! Looks like you used tabs instead of spaces. I'll fix it when I do the merge, assuming my tests pass. Diff comments: > === modified file 'src/postorius/auth/decorators.py' > --- src/postorius/auth/decorators.py 2015-02-09 14:35:44 +0000 > +++ src/postorius/auth/decorators.py 2015-04-13 21:09:22 +0000 > @@ -82,13 +82,18 @@ > if getattr(user, 'is_list_owner', None): > return fn(*args, **kwargs) > if getattr(user, 'is_list_moderator', None): > - return fn(*args, **kwargs) > + return fn(*args, **kwargs) I think this is a typo? > mlist = List.objects.get_or_404(fqdn_listname=list_id) > if user.email not in mlist.moderators and \ > user.email not in mlist.owners: > raise PermissionDenied > - else: > - user.is_list_moderator = True > + else: > + if user.email in mlist.moderators and \ > + user.email not in mlist.owners: > + user.is_list_moderator = True > + else: > + user.is_list_moderator = True > + user.is_list_owner = True > return fn(*args, **kwargs) > return wrapper > > > === modified file 'src/postorius/templates/postorius/menu/list_nav.html' > --- src/postorius/templates/postorius/menu/list_nav.html 2015-04-13 19:38:03 +0000 > +++ src/postorius/templates/postorius/menu/list_nav.html 2015-04-13 21:09:22 +0000 > @@ -9,7 +9,7 @@ > {% if user.is_superuser or user.is_list_owner %} >
  • {% trans "Members" %}
  • > {% endif %} > - {% if user.is_superuser or user.is_list_moderator %} > + {% if user.is_superuser or user.is_list_owner or user.is_list_moderator %} >
  • {% trans "Held Messages" %}
  • > {% endif %} > {% if user.is_superuser or user.is_list_owner %} > -- https://code.launchpad.net/~bhavesh-goyal093/postorius/fixed-postorius-method-decorators/+merge/256037 Your team Mailman Coders is requested to review the proposed merge of lp:~bhavesh-goyal093/postorius/fixed-postorius-method-decorators into lp:postorius. From mark at msapiro.net Tue Apr 14 00:41:02 2015 From: mark at msapiro.net (Mark Sapiro) Date: Mon, 13 Apr 2015 22:41:02 -0000 Subject: [Bug 1442298] Re: Find member does not match name in multibyte characters References: <20150409173114.7787.72106.malonedeb@chaenomeles.canonical.com> Message-ID: <20150413224103.14115.19650.malone@wampee.canonical.com> This bug is 'mostly' fixed. There are potentially very complex cases of lists with English as the preferred language (admin UI language) with members whose real names contain non-ascii. In these cases, the search string POSTed by the browser may contain HTML entities such as é and é and parsing all this is complicated and error prone and not done by this fix. Since the search string is a regexp, one can just use a dot (.) instead of a problem character in these cases. For lists whose preferred language (admin UI language) is other than English, this bug should be fixed. ** Changed in: mailman Status: Confirmed => Fix Committed ** Changed in: mailman Milestone: None => 2.1.21 -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1442298 Title: Find member does not match name in multibyte characters To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1442298/+subscriptions From bhavesh.goyal093 at gmail.com Tue Apr 14 00:50:04 2015 From: bhavesh.goyal093 at gmail.com (Bhavesh Goyal) Date: Mon, 13 Apr 2015 22:50:04 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/fixed-postorius-method-decorators into lp:postorius In-Reply-To: <20150413211033.31467.45642.launchpad@ackee.canonical.com> Message-ID: <20150413225003.13622.73778.codereview@wampee.canonical.com> Sorry for the tabs! I ll take care of them next time onwards... -- https://code.launchpad.net/~bhavesh-goyal093/postorius/fixed-postorius-method-decorators/+merge/256037 Your team Mailman Coders is requested to review the proposed merge of lp:~bhavesh-goyal093/postorius/fixed-postorius-method-decorators into lp:postorius. From raj.abhilash1 at gmail.com Tue Apr 14 00:58:23 2015 From: raj.abhilash1 at gmail.com (Abhilash Raj) Date: Mon, 13 Apr 2015 22:58:23 -0000 Subject: [Merge] lp:~raj-abhilash1/postorius/sprints into lp:postorius Message-ID: <20150413225823.27410.3831.launchpad@ackee.canonical.com> Abhilash Raj has proposed merging lp:~raj-abhilash1/postorius/sprints into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) For more details, see: https://code.launchpad.net/~raj-abhilash1/postorius/sprints/+merge/256055 User can subscribe using any of its addresses now. -- Your team Mailman Coders is requested to review the proposed merge of lp:~raj-abhilash1/postorius/sprints into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 7799 bytes Desc: not available URL: From pskoli93 at gmail.com Tue Apr 14 07:05:31 2015 From: pskoli93 at gmail.com (Pavan Koli) Date: Tue, 14 Apr 2015 05:05:31 -0000 Subject: [Merge] lp:~pskoli93/postorius/Models into lp:postorius Message-ID: <20150414050531.28685.51064.launchpad@ackee.canonical.com> Pavan Koli has proposed merging lp:~pskoli93/postorius/Models into lp:postorius. Commit message: Fix for Attribute error raised during addition of new email id. Requested reviews: Terri (terriko) Related bugs: Bug #1430682 in Postorius: "AttributeError at /postorius/users/address_activation/" https://bugs.launchpad.net/postorius/+bug/1430682 Bug #1437866 in Postorius: "AttributeError while adding another email address to your account" https://bugs.launchpad.net/postorius/+bug/1437866 For more details, see: https://code.launchpad.net/~pskoli93/postorius/Models/+merge/256102 Failing to configure EMAIL_CONFIRMATION_FROM raised an attribute error instead of ImproperlyConfigured Error. Now this fix lets it check if EMAIL_CONFIRMATION_FROM is configured or not, if not then it checks for configuration of DEFAULT_FROM_EMAIL. Even if it is not configured than ImproperlyConfigured Error is raised. This error helps to identify that there are faults in the configuration and not in the code. -- 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: 1235 bytes Desc: not available URL: From pskoli93 at gmail.com Tue Apr 14 07:06:08 2015 From: pskoli93 at gmail.com (Pavan Koli) Date: Tue, 14 Apr 2015 05:06:08 -0000 Subject: [Merge] lp:~pskoli93/postorius/Models into lp:postorius In-Reply-To: <20150414050531.28685.51064.launchpad@ackee.canonical.com> Message-ID: <20150414050608.9794.87643.launchpad@ackee.canonical.com> The proposal to merge lp:~pskoli93/postorius/Models into lp:postorius has been updated. Status: Needs review => Work in progress For more details, see: https://code.launchpad.net/~pskoli93/postorius/Models/+merge/256102 -- Your team Mailman Coders is subscribed to branch lp:postorius. From pskoli93 at gmail.com Tue Apr 14 09:33:21 2015 From: pskoli93 at gmail.com (Pavan Koli) Date: Tue, 14 Apr 2015 07:33:21 -0000 Subject: [Merge] lp:~pskoli93/postorius/Fixes into lp:postorius Message-ID: <20150414073320.995.19060.launchpad@ackee.canonical.com> Pavan Koli has proposed merging lp:~pskoli93/postorius/Fixes into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) Related bugs: Bug #1443789 in Postorius: "Unclear messages while adding a new domain" https://bugs.launchpad.net/postorius/+bug/1443789 For more details, see: https://code.launchpad.net/~pskoli93/postorius/Fixes/+merge/256107 Messages like 'Please a domain name' are being displayed for leaving the Mail Host and Web Host field blank while adding a new domain. Now they are fixed and the messages 'Please enter a Mail Host' and 'Please enter a Web Host' are displayed if the fields are kept blank. -- Your team Mailman Coders is requested to review the proposed merge of lp:~pskoli93/postorius/Fixes into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 1296 bytes Desc: not available URL: From terri at toybox.ca Tue Apr 14 16:39:20 2015 From: terri at toybox.ca (Terri) Date: Tue, 14 Apr 2015 14:39:20 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/fixed-postorius-method-decorators into lp:postorius In-Reply-To: <20150413211033.31467.45642.launchpad@ackee.canonical.com> Message-ID: <20150414143920.14115.35734.codereview@wampee.canonical.com> The update seems to have fixed the test errors I saw earlier; thanks! -- https://code.launchpad.net/~bhavesh-goyal093/postorius/fixed-postorius-method-decorators/+merge/256037 Your team Mailman Coders is requested to review the proposed merge of lp:~bhavesh-goyal093/postorius/fixed-postorius-method-decorators into lp:postorius. From noreply at launchpad.net Tue Apr 14 17:02:30 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Tue, 14 Apr 2015 15:02:30 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/fixed-postorius-method-decorators into lp:postorius In-Reply-To: <20150413211033.31467.45642.launchpad@ackee.canonical.com> Message-ID: <20150414150230.9793.82949.launchpad@ackee.canonical.com> The proposal to merge lp:~bhavesh-goyal093/postorius/fixed-postorius-method-decorators into lp:postorius has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~bhavesh-goyal093/postorius/fixed-postorius-method-decorators/+merge/256037 -- Your team Mailman Coders is requested to review the proposed merge of lp:~bhavesh-goyal093/postorius/fixed-postorius-method-decorators into lp:postorius. From terri at toybox.ca Tue Apr 14 17:03:26 2015 From: terri at toybox.ca (Terri) Date: Tue, 14 Apr 2015 15:03:26 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/fixed-postorius-method-decorators into lp:postorius In-Reply-To: <20150413211033.31467.45642.launchpad@ackee.canonical.com> Message-ID: <20150414150325.26280.92330.codereview@gac.canonical.com> Also, it would be awesome if I had some tests for this behaviour. I'll open a separate bug for this. -- https://code.launchpad.net/~bhavesh-goyal093/postorius/fixed-postorius-method-decorators/+merge/256037 Your team Mailman Coders is subscribed to branch lp:postorius. From terri at toybox.ca Tue Apr 14 17:03:53 2015 From: terri at toybox.ca (Terri) Date: Tue, 14 Apr 2015 15:03:53 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/fixed-postorius-method-decorators into lp:postorius In-Reply-To: <20150413211033.31467.45642.launchpad@ackee.canonical.com> Message-ID: <20150414150353.14110.20225.codereview@soybean.canonical.com> Review: Approve -- https://code.launchpad.net/~bhavesh-goyal093/postorius/fixed-postorius-method-decorators/+merge/256037 Your team Mailman Coders is subscribed to branch lp:postorius. From f at florianfuchs.com Tue Apr 14 17:21:34 2015 From: f at florianfuchs.com (Florian Fuchs) Date: Tue, 14 Apr 2015 15:21:34 -0000 Subject: [Merge] lp:~flo-fuchs/postorius/archival_options into lp:postorius In-Reply-To: <20150414151822.29847.27482.launchpad@ackee.canonical.com> Message-ID: <20150414152134.26129.49987.codereview@gac.canonical.com> Hi Terri, just ignore every file that ends with .yaml ;-) -- these are the http recordings for the unit tests. Thanks for reviewing! Florian -- https://code.launchpad.net/~flo-fuchs/postorius/archival_options/+merge/256167 Your team Mailman Coders is subscribed to branch lp:postorius. From prakhar126 at gmail.com Tue Apr 14 17:35:38 2015 From: prakhar126 at gmail.com (pjoshi) Date: Tue, 14 Apr 2015 15:35:38 -0000 Subject: [Bug 1062963] Re: Admin notification not received References: <20121006182248.14546.68625.malonedeb@gac.canonical.com> Message-ID: <20150414153539.13858.20588.launchpad@soybean.canonical.com> ** Changed in: postorius Assignee: (unassigned) => pjoshi (prakhar126) -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1062963 Title: Admin notification not received To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1062963/+subscriptions From terri at toybox.ca Tue Apr 14 17:47:26 2015 From: terri at toybox.ca (Terri) Date: Tue, 14 Apr 2015 15:47:26 -0000 Subject: [Merge] lp:~flo-fuchs/postorius/archival_options into lp:postorius In-Reply-To: <20150414151822.29847.27482.launchpad@ackee.canonical.com> Message-ID: <20150414154725.14204.15262.codereview@soybean.canonical.com> Keeping track of minor bugs here: The archivers list doesn't maintain state (i.e. show you which ones are activated) after you hit submit. -- https://code.launchpad.net/~flo-fuchs/postorius/archival_options/+merge/256167 Your team Mailman Coders is subscribed to branch lp:postorius. From f at florianfuchs.com Tue Apr 14 18:00:45 2015 From: f at florianfuchs.com (Florian Fuchs) Date: Tue, 14 Apr 2015 16:00:45 -0000 Subject: [Merge] lp:~flo-fuchs/postorius/archival_options into lp:postorius In-Reply-To: <20150414151822.29847.27482.launchpad@ackee.canonical.com> Message-ID: <20150414160045.14494.44371.codereview@soybean.canonical.com> Interesting, it should really show the correct state after submitting. Let's investigate... -- https://code.launchpad.net/~flo-fuchs/postorius/archival_options/+merge/256167 Your team Mailman Coders is subscribed to branch lp:postorius. From f at florianfuchs.com Tue Apr 14 17:18:24 2015 From: f at florianfuchs.com (Florian Fuchs) Date: Tue, 14 Apr 2015 15:18:24 -0000 Subject: [Merge] lp:~flo-fuchs/postorius/archival_options into lp:postorius Message-ID: <20150414151822.29847.27482.launchpad@ackee.canonical.com> Florian Fuchs has proposed merging lp:~flo-fuchs/postorius/archival_options into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) Related bugs: Bug #987100 in Postorius: "Add archival options" https://bugs.launchpad.net/postorius/+bug/987100 For more details, see: https://code.launchpad.net/~flo-fuchs/postorius/archival_options/+merge/256167 This branch adds list archival options to postorius. -- The attached diff has been truncated due to its size. Your team Mailman Coders is requested to review the proposed merge of lp:~flo-fuchs/postorius/archival_options into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 524288 bytes Desc: not available URL: From f at florianfuchs.com Tue Apr 14 18:25:13 2015 From: f at florianfuchs.com (Florian Fuchs) Date: Tue, 14 Apr 2015 16:25:13 -0000 Subject: [Merge] lp:~flo-fuchs/postorius/archival_options into lp:postorius In-Reply-To: <20150414151822.29847.27482.launchpad@ackee.canonical.com> Message-ID: <20150414162512.14115.31900.codereview@wampee.canonical.com> OK, if the built-in archivers are not enabled in mailman.cfg, mailman will save the activation status for the current list internally, but they will still show up as disabled, because the archivers are not enabled globally. As soon as this is done, they will show up as enabled on the list-level tool. What we need is a message explaining this if a global *not* enabled archiver is enabled through the UI. -- https://code.launchpad.net/~flo-fuchs/postorius/archival_options/+merge/256167 Your team Mailman Coders is subscribed to branch lp:postorius. From terri at toybox.ca Tue Apr 14 18:27:44 2015 From: terri at toybox.ca (Terri) Date: Tue, 14 Apr 2015 16:27:44 -0000 Subject: [Merge] lp:~flo-fuchs/postorius/archival_options into lp:postorius In-Reply-To: <20150414151822.29847.27482.launchpad@ackee.canonical.com> Message-ID: <20150414162743.14556.30256.codereview@soybean.canonical.com> Review: Approve -- https://code.launchpad.net/~flo-fuchs/postorius/archival_options/+merge/256167 Your team Mailman Coders is subscribed to branch lp:postorius. From 1444055 at bugs.launchpad.net Tue Apr 14 18:22:23 2015 From: 1444055 at bugs.launchpad.net (Barry Warsaw) Date: Tue, 14 Apr 2015 16:22:23 -0000 Subject: [Bug 1444055] [NEW] Handle get_memberships() for other roles References: <20150414162223.16993.83460.malonedeb@chaenomeles.canonical.com> Message-ID: <20150414162223.16993.83460.malonedeb@chaenomeles.canonical.com> Public bug reported: This is a placeholder bug for work that has to be done. It may not be important enough for the 3.0 release, but let's make sure it happens early in 3.1. Members can subscribe to a mailing list either via an explicit address or via their user's preferred address. They can also have two membership records for the same role, using both techniques. IRoster.get_member() isn't able to represent this, so I added IRoster.get_memberships(). I fixed the queries for MemberRoster, and updated their implementations to match the interface. This needs to be done for the other roster implementation classes. ** Affects: mailman Importance: High Assignee: Barry Warsaw (barry) 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/1444055 Title: Handle get_memberships() for other roles To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1444055/+subscriptions From terri at toybox.ca Tue Apr 14 18:30:23 2015 From: terri at toybox.ca (Terri) Date: Tue, 14 Apr 2015 16:30:23 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/postorius-list_nav-fix into lp:postorius In-Reply-To: <20150306072323.21099.51397.launchpad@ackee.canonical.com> Message-ID: <20150414163022.16804.91387.codereview@chaenomeles.canonical.com> Review: Disapprove I believe this bug has already been fixed, so this patch is redundant now. -- https://code.launchpad.net/~bhavesh-goyal093/postorius/postorius-list_nav-fix/+merge/252064 Your team Mailman Coders is subscribed to branch lp:postorius. From terri at toybox.ca Tue Apr 14 18:37:52 2015 From: terri at toybox.ca (Terri) Date: Tue, 14 Apr 2015 16:37:52 -0000 Subject: [Merge] lp:~aanand0071/postorius/postorius into lp:postorius In-Reply-To: <20150305112127.31505.44896.launchpad@ackee.canonical.com> Message-ID: <20150414163752.17055.57382.codereview@chaenomeles.canonical.com> Review: Needs Fixing I'm getting "MailmanConnectionError: Could not connect to Mailman API" when I run this test, and only this test, so I think there may be something incorrect in the config here. Can you run against the latest version of mailman and debug? -- https://code.launchpad.net/~aanand0071/postorius/postorius/+merge/251907 Your team Mailman Coders is subscribed to branch lp:postorius. From terri at toybox.ca Tue Apr 14 18:39:08 2015 From: terri at toybox.ca (Terri) Date: Tue, 14 Apr 2015 16:39:08 -0000 Subject: [Merge] lp:~aanand0071/postorius/postorius into lp:postorius In-Reply-To: <20150305112127.31505.44896.launchpad@ackee.canonical.com> Message-ID: <20150414163907.14254.47205.codereview@wampee.canonical.com> Also, great thought on fixing all those permissions in the css/png/js -- if you want to submit that as a separate patch, I'd be happy to merge it while you debug the test case. -- https://code.launchpad.net/~aanand0071/postorius/postorius/+merge/251907 Your team Mailman Coders is subscribed to branch lp:postorius. From terri at toybox.ca Tue Apr 14 18:46:03 2015 From: terri at toybox.ca (Terri) Date: Tue, 14 Apr 2015 16:46:03 -0000 Subject: [Merge] lp:~prakhar126/postorius/postorius into lp:postorius In-Reply-To: <20150310120122.8785.34270.launchpad@ackee.canonical.com> Message-ID: <20150414164603.21708.26670.codereview@soybean.canonical.com> Review: Needs Fixing I'm getting the following error: File "/Users/terri/Code/mailman/postorius/src/postorius/tests/test_forms.py", line 58 'mail_host': 'mailman.most-desirable.org' ^ SyntaxError: invalid syntax If you could tidy that up, that would be great! -- https://code.launchpad.net/~prakhar126/postorius/postorius/+merge/252422 Your team Mailman Coders is subscribed to branch lp:postorius. From f at florianfuchs.com Tue Apr 14 20:42:06 2015 From: f at florianfuchs.com (Florian Fuchs) Date: Tue, 14 Apr 2015 18:42:06 -0000 Subject: [Merge] lp:~flo-fuchs/postorius/archival_options into lp:postorius In-Reply-To: <20150414151822.29847.27482.launchpad@ackee.canonical.com> Message-ID: <20150414184205.30309.36505.codereview@gac.canonical.com> Added a message with an explanation for the above case. -- https://code.launchpad.net/~flo-fuchs/postorius/archival_options/+merge/256167 Your team Mailman Coders is subscribed to branch lp:postorius. From noreply at launchpad.net Tue Apr 14 20:48:07 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Tue, 14 Apr 2015 18:48:07 -0000 Subject: [Merge] lp:~flo-fuchs/postorius/archival_options into lp:postorius In-Reply-To: <20150414151822.29847.27482.launchpad@ackee.canonical.com> Message-ID: <20150414184806.22516.27613.launchpad@ackee.canonical.com> The proposal to merge lp:~flo-fuchs/postorius/archival_options into lp:postorius has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~flo-fuchs/postorius/archival_options/+merge/256167 -- Your team Mailman Coders is subscribed to branch lp:postorius. From bhavesh.goyal093 at gmail.com Tue Apr 14 21:55:31 2015 From: bhavesh.goyal093 at gmail.com (Bhavesh Goyal) Date: Tue, 14 Apr 2015 19:55:31 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/postorius-page-titles into lp:postorius Message-ID: <20150414195531.6538.4162.launchpad@ackee.canonical.com> Bhavesh Goyal has proposed merging lp:~bhavesh-goyal093/postorius/postorius-page-titles into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) For more details, see: https://code.launchpad.net/~bhavesh-goyal093/postorius/postorius-page-titles/+merge/256203 Fixed Bug #1443658. Earlier Postorius Pages had no fixed titles for specific pages and all the pages used to inherit a default blank title. Now, a relevant title for each of the pages in postorius has been added which now makes it easier to differentiate between multiple pages opened simultaneously in the browser. -- Your team Mailman Coders is requested to review the proposed merge of lp:~bhavesh-goyal093/postorius/postorius-page-titles into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 12104 bytes Desc: not available URL: From raj.abhilash1 at gmail.com Tue Apr 14 23:34:28 2015 From: raj.abhilash1 at gmail.com (Abhilash Raj) Date: Tue, 14 Apr 2015 21:34:28 -0000 Subject: [Merge] lp:~raj-abhilash1/mailman/bugfix into lp:mailman Message-ID: <20150414213422.31797.67939.launchpad@ackee.canonical.com> Abhilash Raj has proposed merging lp:~raj-abhilash1/mailman/bugfix into lp:mailman. Requested reviews: Mailman Coders (mailman-coders) For more details, see: https://code.launchpad.net/~raj-abhilash1/mailman/bugfix/+merge/256233 When creating domain with single owner passed via json, InvalidEmailError was raise. Fixed that. -- Your team Mailman Coders is requested to review the proposed merge of lp:~raj-abhilash1/mailman/bugfix into lp:mailman. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 1808 bytes Desc: not available URL: From raj.abhilash1 at gmail.com Wed Apr 15 00:08:20 2015 From: raj.abhilash1 at gmail.com (Abhilash Raj) Date: Tue, 14 Apr 2015 22:08:20 -0000 Subject: [Merge] lp:~raj-abhilash1/mailman.client/domainowner into lp:mailman.client Message-ID: <20150414220819.7494.61119.launchpad@ackee.canonical.com> Abhilash Raj has proposed merging lp:~raj-abhilash1/mailman.client/domainowner into lp:mailman.client. Requested reviews: Mailman Coders (mailman-coders) For more details, see: https://code.launchpad.net/~raj-abhilash1/mailman.client/domainowner/+merge/256240 Add options for domainowner and remove contact_address field -- Your team Mailman Coders is requested to review the proposed merge of lp:~raj-abhilash1/mailman.client/domainowner into lp:mailman.client. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 1997 bytes Desc: not available URL: From raj.abhilash1 at gmail.com Wed Apr 15 00:10:35 2015 From: raj.abhilash1 at gmail.com (Abhilash Raj) Date: Tue, 14 Apr 2015 22:10:35 -0000 Subject: [Merge] lp:~raj-abhilash1/postorius/domainowner into lp:postorius Message-ID: <20150414221034.9367.20316.launchpad@ackee.canonical.com> Abhilash Raj has proposed merging lp:~raj-abhilash1/postorius/domainowner into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) For more details, see: https://code.launchpad.net/~raj-abhilash1/postorius/domainowner/+merge/256242 Add options for serverowner in domain, remove `contact_address` for domains. -- Your team Mailman Coders is requested to review the proposed merge of lp:~raj-abhilash1/postorius/domainowner into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 1875 bytes Desc: not available URL: From 1444184 at bugs.launchpad.net Wed Apr 15 00:43:34 2015 From: 1444184 at bugs.launchpad.net (Barry Warsaw) Date: Tue, 14 Apr 2015 22:43:34 -0000 Subject: [Bug 1444184] [NEW] Cannot join getting digest delivery via email interface References: <20150414224335.11277.80337.malonedeb@wampee.canonical.com> Message-ID: <20150414224335.11277.80337.malonedeb@wampee.canonical.com> Public bug reported: The -join/-subscribe email command accepts a `digest=mime` and `digest=plain` option, but this does not work in Mailman 3.0 because it isn't plumbed through the IRegistrar interface. I'm deferring fixing this regression until 3.1. ** Affects: mailman Importance: High Assignee: Barry Warsaw (barry) Status: Triaged ** Tags: mailman3 ** Description changed: - The -join/-subscribe email command accepts a `digest=mime` option, but - this does not work in Mailman 3.0 because it isn't plumbed through the - IRegistrar interface. + The -join/-subscribe email command accepts a `digest=mime` and + `digest=plain` option, but this does not work in Mailman 3.0 because it + isn't plumbed through the IRegistrar interface. I'm deferring fixing this regression until 3.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/1444184 Title: Cannot join getting digest delivery via email interface To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1444184/+subscriptions From 1414298 at bugs.launchpad.net Wed Apr 15 00:46:48 2015 From: 1414298 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 14 Apr 2015 22:46:48 -0000 Subject: [Bug 1414298] Re: ILanguageManager should be exposed as a REST resource References: <20150124134249.29885.47274.malonedeb@wampee.canonical.com> Message-ID: <20150414224649.21611.65596.malone@soybean.canonical.com> This needs to be added to mailman.client. Here's the bug report: https://bugs.launchpad.net/mailman.client/+bug/1444185 -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1414298 Title: ILanguageManager should be exposed as a REST resource To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1414298/+subscriptions From terri at toybox.ca Wed Apr 15 01:25:47 2015 From: terri at toybox.ca (Terri) Date: Tue, 14 Apr 2015 23:25:47 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/postorius-page-titles into lp:postorius In-Reply-To: <20150414195531.6538.4162.launchpad@ackee.canonical.com> Message-ID: <20150414232546.30215.42634.codereview@gac.canonical.com> This is looking pretty good. Can you double-check that these strings are grabbed correctly for translation by the django tools? https://docs.djangoproject.com/en/1.8/topics/i18n/translation/ -- https://code.launchpad.net/~bhavesh-goyal093/postorius/postorius-page-titles/+merge/256203 Your team Mailman Coders is requested to review the proposed merge of lp:~bhavesh-goyal093/postorius/postorius-page-titles into lp:postorius. From terri at toybox.ca Wed Apr 15 01:35:15 2015 From: terri at toybox.ca (Terri) Date: Tue, 14 Apr 2015 23:35:15 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/postorius-page-titles into lp:postorius In-Reply-To: <20150414195531.6538.4162.launchpad@ackee.canonical.com> Message-ID: <20150414233515.30454.84455.codereview@gac.canonical.com> Review: Needs Fixing Also, I think we probably want to put " - Mailman/Postorius" as a suffix on all the titles, for consistency and to make it easier for people searching through their history/bookmarks to find related pages. It's easier to remove this later than it would be to add it later, anyhow. -- https://code.launchpad.net/~bhavesh-goyal093/postorius/postorius-page-titles/+merge/256203 Your team Mailman Coders is subscribed to branch lp:postorius. From bhavesh.goyal093 at gmail.com Wed Apr 15 01:40:55 2015 From: bhavesh.goyal093 at gmail.com (Bhavesh Goyal) Date: Tue, 14 Apr 2015 23:40:55 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/postorius-page-titles into lp:postorius In-Reply-To: <20150414195531.6538.4162.launchpad@ackee.canonical.com> Message-ID: <20150414234055.8990.26900.codereview@chaenomeles.canonical.com> Hi Terri ! Thanks for the review :) I 'll add translation tags to the strings and the suffixes to all titles and give you an update when its done then -- https://code.launchpad.net/~bhavesh-goyal093/postorius/postorius-page-titles/+merge/256203 Your team Mailman Coders is subscribed to branch lp:postorius. From raj.abhilash1 at gmail.com Wed Apr 15 14:50:46 2015 From: raj.abhilash1 at gmail.com (Abhilash Raj) Date: Wed, 15 Apr 2015 12:50:46 -0000 Subject: [Merge] lp:~raj-abhilash1/postorius/sprints into lp:postorius In-Reply-To: <20150413225823.27410.3831.launchpad@ackee.canonical.com> Message-ID: <20150415125046.4263.5628.launchpad@ackee.canonical.com> The proposal to merge lp:~raj-abhilash1/postorius/sprints into lp:postorius has been updated. Description changed to: If a User has multiple addresses, they can choose which one to use for subscription. For more details, see: https://code.launchpad.net/~raj-abhilash1/postorius/sprints/+merge/256055 -- Your team Mailman Coders is requested to review the proposed merge of lp:~raj-abhilash1/postorius/sprints into lp:postorius. From bhavesh.goyal093 at gmail.com Wed Apr 15 16:34:22 2015 From: bhavesh.goyal093 at gmail.com (Bhavesh Goyal) Date: Wed, 15 Apr 2015 14:34:22 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/fixed-unsubscribe-redirection into lp:postorius Message-ID: <20150415143421.8374.38011.launchpad@ackee.canonical.com> Bhavesh Goyal has proposed merging lp:~bhavesh-goyal093/postorius/fixed-unsubscribe-redirection into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) For more details, see: https://code.launchpad.net/~bhavesh-goyal093/postorius/fixed-unsubscribe-redirection/+merge/256330 Fixed Bug #1444486. Now postorius redirects to Members Index page instead of the list_summary page, everytime a member is usubscribed. -- Your team Mailman Coders is requested to review the proposed merge of lp:~bhavesh-goyal093/postorius/fixed-unsubscribe-redirection into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 15546 bytes Desc: not available URL: From bhavesh.goyal093 at gmail.com Wed Apr 15 16:41:23 2015 From: bhavesh.goyal093 at gmail.com (Bhavesh Goyal) Date: Wed, 15 Apr 2015 14:41:23 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/fixed-unsubscribe-redirect into lp:postorius Message-ID: <20150415144123.9788.76381.launchpad@ackee.canonical.com> Bhavesh Goyal has proposed merging lp:~bhavesh-goyal093/postorius/fixed-unsubscribe-redirect into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) For more details, see: https://code.launchpad.net/~bhavesh-goyal093/postorius/fixed-unsubscribe-redirect/+merge/256331 Fixed Bug #1444486. Now postorius redirects to Members Index page instead of the list_summary page, everytime a member is usubscribed. -- Your team Mailman Coders is requested to review the proposed merge of lp:~bhavesh-goyal093/postorius/fixed-unsubscribe-redirect into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 495 bytes Desc: not available URL: From noreply at launchpad.net Wed Apr 15 16:44:41 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Wed, 15 Apr 2015 14:44:41 -0000 Subject: [Merge] lp:~raj-abhilash1/mailman/bugfix into lp:mailman In-Reply-To: <20150414213422.31797.67939.launchpad@ackee.canonical.com> Message-ID: <20150415144439.4262.63798.launchpad@ackee.canonical.com> The proposal to merge lp:~raj-abhilash1/mailman/bugfix into lp:mailman has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~raj-abhilash1/mailman/bugfix/+merge/256233 -- Your team Mailman Coders is requested to review the proposed merge of lp:~raj-abhilash1/mailman/bugfix into lp:mailman. From sumanah at panix.com Wed Apr 15 16:55:37 2015 From: sumanah at panix.com (Sumana Harihareswara) Date: Wed, 15 Apr 2015 14:55:37 -0000 Subject: [Merge] lp:~sumanah/postorius/held-msg-docstring into lp:postorius Message-ID: <20150415145533.14136.92045.launchpad@ackee.canonical.com> Sumana Harihareswara has proposed merging lp:~sumanah/postorius/held-msg-docstring into lp:postorius. Requested reviews: Abhilash Raj (raj-abhilash1) For more details, see: https://code.launchpad.net/~sumanah/postorius/held-msg-docstring/+merge/256334 The docstrings for dealing with held messages are inaccurate - this fixes that. -- 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: 1261 bytes Desc: not available URL: From raj.abhilash1 at gmail.com Wed Apr 15 16:57:12 2015 From: raj.abhilash1 at gmail.com (Abhilash Raj) Date: Wed, 15 Apr 2015 14:57:12 -0000 Subject: [Merge] lp:~sumanah/postorius/held-msg-docstring into lp:postorius In-Reply-To: <20150415145533.14136.92045.launchpad@ackee.canonical.com> Message-ID: <20150415145711.11277.94705.codereview@wampee.canonical.com> Review: Approve -- https://code.launchpad.net/~sumanah/postorius/held-msg-docstring/+merge/256334 Your team Mailman Coders is subscribed to branch lp:postorius. From aurelien at bompard.org Wed Apr 15 17:49:28 2015 From: aurelien at bompard.org (=?utf-8?q?Aur=C3=A9lien_Bompard?=) Date: Wed, 15 Apr 2015 15:49:28 -0000 Subject: [Merge] lp:~abompard/postorius/link-to-hyperkitty into lp:postorius Message-ID: <20150415154928.29216.82099.launchpad@ackee.canonical.com> Aur?lien Bompard has proposed merging lp:~abompard/postorius/link-to-hyperkitty into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) For more details, see: https://code.launchpad.net/~abompard/postorius/link-to-hyperkitty/+merge/256350 Add a link to HyperKitty as suggested by Sumana. Fixes bug #1444471. Right now it's just a link to HyperKitty. An improvement would be to check if the list settings allow public archiving, and if the user is allowed to see them (private or public list). At the moment it just links to HyperKitty and let it do this checking. -- Your team Mailman Coders is requested to review the proposed merge of lp:~abompard/postorius/link-to-hyperkitty into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 2107 bytes Desc: not available URL: From sumanah at panix.com Wed Apr 15 19:00:26 2015 From: sumanah at panix.com (Sumana Harihareswara) Date: Wed, 15 Apr 2015 17:00:26 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/fixed-unsubscribe-redirect into lp:postorius In-Reply-To: <20150415144123.9788.76381.launchpad@ackee.canonical.com> Message-ID: <20150415170026.11797.66318.codereview@wampee.canonical.com> Review: Approve I +1 this. -- https://code.launchpad.net/~bhavesh-goyal093/postorius/fixed-unsubscribe-redirect/+merge/256331 Your team Mailman Coders is requested to review the proposed merge of lp:~bhavesh-goyal093/postorius/fixed-unsubscribe-redirect into lp:postorius. From raj.abhilash1 at gmail.com Wed Apr 15 18:49:24 2015 From: raj.abhilash1 at gmail.com (Abhilash Raj) Date: Wed, 15 Apr 2015 16:49:24 -0000 Subject: [Merge] lp:~raj-abhilash1/postorius/change_subscription into lp:postorius Message-ID: <20150415164924.13287.29865.launchpad@ackee.canonical.com> Abhilash Raj has proposed merging lp:~raj-abhilash1/postorius/change_subscription into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) For more details, see: https://code.launchpad.net/~raj-abhilash1/postorius/change_subscription/+merge/256362 * User can choose from which address to subscribe to a list * User can change their subscription to a different address after subscribing -- Your team Mailman Coders is requested to review the proposed merge of lp:~raj-abhilash1/postorius/change_subscription into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 275189 bytes Desc: not available URL: From noreply at launchpad.net Wed Apr 15 20:17:22 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Wed, 15 Apr 2015 18:17:22 -0000 Subject: [Branch ~mailman-coders/mailman.client/trunk] Rev 65: version bump: 1.0.0b2 Message-ID: <20150415181722.5936.3974.launchpad@ackee.canonical.com> ------------------------------------------------------------ revno: 65 tags: 1.0.0b2 committer: Florian Fuchs branch nick: mailman.client timestamp: Wed 2015-04-15 14:16:34 -0400 message: version bump: 1.0.0b2 modified: src/mailmanclient/__init__.py -- lp:mailman.client https://code.launchpad.net/~mailman-coders/mailman.client/trunk Your team Mailman Coders is subscribed to branch lp:mailman.client. To unsubscribe from this branch go to https://code.launchpad.net/~mailman-coders/mailman.client/trunk/+edit-subscription -------------- next part -------------- A non-text attachment was scrubbed... Name: revision-diff.txt Type: text/x-diff Size: 320 bytes Desc: not available URL: From 1006356 at bugs.launchpad.net Wed Apr 15 20:25:08 2015 From: 1006356 at bugs.launchpad.net (Sumana Harihareswara) Date: Wed, 15 Apr 2015 18:25:08 -0000 Subject: [Bug 1006356] Re: message acceptance settings for list ignored References: <20120530115536.4422.77788.malonedeb@gac.canonical.com> Message-ID: <20150415182508.29949.38315.malone@gac.canonical.com> This is no longer reproducible in Mailman 3. I can't point to a specific fix, though, so I'm not sure whether to call it "Invalid" or "fix released" -- I'm erring on the side of "fix released". thank you! ** Changed in: mailman Status: New => Invalid ** Changed in: postorius Status: Triaged => Fix Committed ** Changed in: mailman Status: Invalid => 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/1006356 Title: message acceptance settings for list ignored To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1006356/+subscriptions From noreply at launchpad.net Wed Apr 15 21:52:39 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Wed, 15 Apr 2015 19:52:39 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/postorius-page-titles into lp:postorius In-Reply-To: <20150414195531.6538.4162.launchpad@ackee.canonical.com> Message-ID: <20150415195238.4263.57381.launchpad@ackee.canonical.com> The proposal to merge lp:~bhavesh-goyal093/postorius/postorius-page-titles into lp:postorius has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~bhavesh-goyal093/postorius/postorius-page-titles/+merge/256203 -- Your team Mailman Coders is subscribed to branch lp:postorius. From terri at toybox.ca Wed Apr 15 21:52:57 2015 From: terri at toybox.ca (Terri) Date: Wed, 15 Apr 2015 19:52:57 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/postorius-page-titles into lp:postorius In-Reply-To: <20150414195531.6538.4162.launchpad@ackee.canonical.com> Message-ID: <20150415195256.21708.52464.codereview@soybean.canonical.com> Review: Approve -- https://code.launchpad.net/~bhavesh-goyal093/postorius/postorius-page-titles/+merge/256203 Your team Mailman Coders is subscribed to branch lp:postorius. From noreply at launchpad.net Wed Apr 15 21:59:26 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Wed, 15 Apr 2015 19:59:26 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/fixed-unsubscribe-redirect into lp:postorius In-Reply-To: <20150415144123.9788.76381.launchpad@ackee.canonical.com> Message-ID: <20150415195925.4264.83631.launchpad@ackee.canonical.com> The proposal to merge lp:~bhavesh-goyal093/postorius/fixed-unsubscribe-redirect into lp:postorius has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~bhavesh-goyal093/postorius/fixed-unsubscribe-redirect/+merge/256331 -- Your team Mailman Coders is requested to review the proposed merge of lp:~bhavesh-goyal093/postorius/fixed-unsubscribe-redirect into lp:postorius. From mark at msapiro.net Wed Apr 15 21:51:10 2015 From: mark at msapiro.net (Mark Sapiro) Date: Wed, 15 Apr 2015 19:51:10 -0000 Subject: [Bug 1444673] [NEW] Anonymous lists can expose the sending domain. References: <20150415195110.29907.24669.malonedeb@gac.canonical.com> Message-ID: <20150415195110.29907.24669.malonedeb@gac.canonical.com> Public bug reported: Headers DKIM-Signature:, DomainKey-Signature: and Authentication- Results: are not removed by default from mail to an anonymous list. These headers can reveal the sending domain. ** Affects: mailman Importance: Medium 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/1444673 Title: Anonymous lists can expose the sending domain. To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1444673/+subscriptions From terri at toybox.ca Wed Apr 15 22:05:09 2015 From: terri at toybox.ca (Terri) Date: Wed, 15 Apr 2015 20:05:09 -0000 Subject: [Merge] lp:~pskoli93/postorius/Fixes into lp:postorius In-Reply-To: <20150414073320.995.19060.launchpad@ackee.canonical.com> Message-ID: <20150415200509.30013.34223.codereview@gac.canonical.com> Review: Disapprove Good idea, but probably more work for our translators that isn't super necessary at this point. Thanks for submitting, and sorry this one didn't work out! -- https://code.launchpad.net/~pskoli93/postorius/Fixes/+merge/256107 Your team Mailman Coders is subscribed to branch lp:postorius. From terri at toybox.ca Wed Apr 15 22:05:31 2015 From: terri at toybox.ca (Terri) Date: Wed, 15 Apr 2015 20:05:31 -0000 Subject: [Merge] lp:~pskoli93/postorius/Fixes into lp:postorius In-Reply-To: <20150414073320.995.19060.launchpad@ackee.canonical.com> Message-ID: <20150415200531.4264.82923.launchpad@ackee.canonical.com> The proposal to merge lp:~pskoli93/postorius/Fixes into lp:postorius has been updated. Status: Needs review => Rejected For more details, see: https://code.launchpad.net/~pskoli93/postorius/Fixes/+merge/256107 -- Your team Mailman Coders is subscribed to branch lp:postorius. From mark at msapiro.net Wed Apr 15 21:58:42 2015 From: mark at msapiro.net (Mark Sapiro) Date: Wed, 15 Apr 2015 19:58:42 -0000 Subject: [Bug 1444673] Re: Anonymous lists can expose the sending domain. References: <20150415195110.29907.24669.malonedeb@gac.canonical.com> Message-ID: <20150415195842.8922.94429.malone@chaenomeles.canonical.com> There is a work around for Mailman 2.1.17 and newer (older versions don't have ANONYMOUS_LIST_KEEP_HEADERS). Copy ANONYMOUS_LIST_KEEP_HEADERS from Defaults.py to mm_cfg.py if it's not already there. You will then have something like the following (possibly edited by you already). ANONYMOUS_LIST_KEEP_HEADERS = ['^(?!x-)', '^x-mailman-', '^x-content-filtered-by:', '^x-topics:', '^x-ack:', '^x-beenthere:', '^x-list-administrivia:', '^x-spam-', ] In this list, replace the first line with ANONYMOUS_LIST_KEEP_HEADERS = [ '^((?!x-)(?!dkim)(?!authentication)(?!domainkey))', '^x-mailman-', and keep the next 4 lines as is. I.e., you are just replacing '^(?!x-)' with '^((?!x-)(?!dkim)(?!authentication)(?!domainkey))' ** Description changed: - Headers DKIM-Signature:, DomainKey-Signature: and Authentication-Results - are not removed by default from mail to an anonymous list. These headers - can reveal the sending domain. + Headers DKIM-Signature:, DomainKey-Signature: and Authentication- + Results: are not removed by default from mail to an anonymous list. + These headers can reveal the sending domain. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1444673 Title: Anonymous lists can expose the sending domain. To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1444673/+subscriptions From terri at toybox.ca Wed Apr 15 22:16:40 2015 From: terri at toybox.ca (Terri) Date: Wed, 15 Apr 2015 20:16:40 -0000 Subject: [Merge] lp:~raj-abhilash1/postorius/domainowner into lp:postorius In-Reply-To: <20150414221034.9367.20316.launchpad@ackee.canonical.com> Message-ID: <20150415201640.8648.95533.codereview@chaenomeles.canonical.com> Review: Approve -- https://code.launchpad.net/~raj-abhilash1/postorius/domainowner/+merge/256242 Your team Mailman Coders is subscribed to branch lp:postorius. From noreply at launchpad.net Wed Apr 15 22:17:09 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Wed, 15 Apr 2015 20:17:09 -0000 Subject: [Merge] lp:~raj-abhilash1/postorius/domainowner into lp:postorius In-Reply-To: <20150414221034.9367.20316.launchpad@ackee.canonical.com> Message-ID: <20150415201708.4262.78340.launchpad@ackee.canonical.com> The proposal to merge lp:~raj-abhilash1/postorius/domainowner into lp:postorius has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~raj-abhilash1/postorius/domainowner/+merge/256242 -- Your team Mailman Coders is subscribed to branch lp:postorius. From terri at toybox.ca Wed Apr 15 22:26:48 2015 From: terri at toybox.ca (Terri) Date: Wed, 15 Apr 2015 20:26:48 -0000 Subject: [Merge] lp:~prakhar126/postorius/adding_dropdown_option into lp:postorius In-Reply-To: <20150313104423.5187.87677.launchpad@ackee.canonical.com> Message-ID: <20150415202647.8990.67933.codereview@chaenomeles.canonical.com> Review: Needs Fixing I'm finding some errors in the tests here (missing commas, for example). I'll see if they're things I can fix relatively quickly. -- https://code.launchpad.net/~prakhar126/postorius/adding_dropdown_option/+merge/252878 Your team Mailman Coders is subscribed to branch lp:postorius. From 1157875 at bugs.launchpad.net Wed Apr 15 22:21:52 2015 From: 1157875 at bugs.launchpad.net (Terri) Date: Wed, 15 Apr 2015 20:21:52 -0000 Subject: [Bug 1157875] Re: Pipeline list setting should probably be a dropdown rather than text field References: <20130320175818.11194.38065.malonedeb@wampee.canonical.com> Message-ID: <20150415202152.21496.66458.malone@soybean.canonical.com> We've got a fix to turn this into a drop-down, but it's currently hard coded. We'll still need to have a way to get this information out of mailman core and then update the drop down dynamically. ** Changed in: postorius Status: Fix Committed => Triaged ** Summary changed: - Pipeline list setting should probably be a dropdown rather than text field + Pipeline list setting should be a dropdown using pipeline info from Mailman Core -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1157875 Title: Pipeline list setting should be a dropdown using pipeline info from Mailman Core To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1157875/+subscriptions From terri at toybox.ca Wed Apr 15 22:31:31 2015 From: terri at toybox.ca (Terri) Date: Wed, 15 Apr 2015 20:31:31 -0000 Subject: [Merge] lp:~prakhar126/postorius/adding_dropdown_option into lp:postorius In-Reply-To: <20150313104423.5187.87677.launchpad@ackee.canonical.com> Message-ID: <20150415203130.8825.55903.codereview@chaenomeles.canonical.com> Here's the fixed code. There were a lot of syntax errors here. In future, please actually run the tests before you submit a merge proposal! class ListNewTest(unittest.TestCase): def test_form_fields_list(self): form = ListNew({ 'listname': 'xyz', 'mail_host': 'mailman.most-desirable.org', 'list_owner': 'contact at mailman.most-desirable.org', 'advertise': 'abcd', 'description': 'The Most Desirable organization', }) self.assertTrue(form.is_valid) def test_form_fields_list_invalid(self): form = ListNew({ 'listname': 'xy#z', 'mail_host': 'mailman.most-desirable.org', 'list_owner': 'mailman.most-desirable.org', 'advertise': 'abcd', 'description': 'The Most Desirable organization', }) self.assertFalse(form.is_valid()) -- https://code.launchpad.net/~prakhar126/postorius/adding_dropdown_option/+merge/252878 Your team Mailman Coders is subscribed to branch lp:postorius. From noreply at launchpad.net Wed Apr 15 22:34:41 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Wed, 15 Apr 2015 20:34:41 -0000 Subject: [Merge] lp:~prakhar126/postorius/adding_dropdown_option into lp:postorius In-Reply-To: <20150313104423.5187.87677.launchpad@ackee.canonical.com> Message-ID: <20150415203441.4262.70443.launchpad@ackee.canonical.com> The proposal to merge lp:~prakhar126/postorius/adding_dropdown_option into lp:postorius has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~prakhar126/postorius/adding_dropdown_option/+merge/252878 -- Your team Mailman Coders is subscribed to branch lp:postorius. From terri at toybox.ca Wed Apr 15 22:46:01 2015 From: terri at toybox.ca (Terri) Date: Wed, 15 Apr 2015 20:46:01 -0000 Subject: [Merge] lp:~coolyashish/postorius/postorius into lp:postorius In-Reply-To: <20150306114042.22934.24928.launchpad@ackee.canonical.com> Message-ID: <20150415204600.22015.91754.codereview@soybean.canonical.com> Review: Needs Fixing Can you make sure that this code works correctly with @method_decorator(list_owner_required) so that the csv export is only available to list owners? It looks like this might need some code cleanup as well so that it matches the other code. (try running the pep8 checker, at least!) -- https://code.launchpad.net/~coolyashish/postorius/postorius/+merge/252088 Your team Mailman Coders is subscribed to branch lp:postorius. From terri at toybox.ca Wed Apr 15 22:46:37 2015 From: terri at toybox.ca (Terri) Date: Wed, 15 Apr 2015 20:46:37 -0000 Subject: [Merge] lp:~coolyashish/postorius/postorius into lp:postorius In-Reply-To: <20150306114042.22934.24928.launchpad@ackee.canonical.com> Message-ID: <20150415204637.21819.60772.codereview@soybean.canonical.com> Other than that, it's looking like a great feature and I'd love to be able to merge it! -- https://code.launchpad.net/~coolyashish/postorius/postorius/+merge/252088 Your team Mailman Coders is subscribed to branch lp:postorius. From 1444673 at bugs.launchpad.net Wed Apr 15 22:59:10 2015 From: 1444673 at bugs.launchpad.net (Launchpad Bug Tracker) Date: Wed, 15 Apr 2015 20:59:10 -0000 Subject: [Bug 1444673] Re: Anonymous lists can expose the sending domain. References: <20150415195110.29907.24669.malonedeb@gac.canonical.com> Message-ID: <20150415205911.4217.14841.launchpad@ackee.canonical.com> ** 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/1444673 Title: Anonymous lists can expose the sending domain. To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1444673/+subscriptions From mark at msapiro.net Wed Apr 15 23:00:22 2015 From: mark at msapiro.net (Mark Sapiro) Date: Wed, 15 Apr 2015 21:00:22 -0000 Subject: [Bug 1444673] Re: Anonymous lists can expose the sending domain. References: <20150415195110.29907.24669.malonedeb@gac.canonical.com> Message-ID: <20150415210023.29719.10790.launchpad@gac.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/1444673 Title: Anonymous lists can expose the sending domain. To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1444673/+subscriptions From 1414298 at bugs.launchpad.net Wed Apr 15 23:03:21 2015 From: 1414298 at bugs.launchpad.net (Sumana Harihareswara) Date: Wed, 15 Apr 2015 21:03:21 -0000 Subject: [Bug 1414298] Re: ILanguageManager should be exposed as a REST resource References: <20150124134249.29885.47274.malonedeb@wampee.canonical.com> Message-ID: <20150415210321.8990.5013.malone@chaenomeles.canonical.com> Since Mailman Suite 3.0 will not be fully translatable, I've removed this from the mailman3 suite blockers. Let's target this for Postorius 1.1 and Mailman Suite 3.1. ** Tags removed: mailman3-suite-blocker -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1414298 Title: ILanguageManager should be exposed as a REST resource To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1414298/+subscriptions From terri at toybox.ca Wed Apr 15 23:20:22 2015 From: terri at toybox.ca (Terri) Date: Wed, 15 Apr 2015 21:20:22 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/postorius-fix-ui into lp:postorius In-Reply-To: <20150307115421.7968.34759.launchpad@ackee.canonical.com> Message-ID: <20150415212021.30309.8131.codereview@gac.canonical.com> Review: Needs Information On my test setup using Firefox 37.0, this patch makes everything a bit too wide. This may be a browser-specific problem that needs a bit more finesse so that it appears consistent across platforms, or it's possible that the underlying code was fixed in one of the other updates merged since your original pull request. Could you test and see if the latest version fixes the issue you were seeing? -- https://code.launchpad.net/~bhavesh-goyal093/postorius/postorius-fix-ui/+merge/252202 Your team Mailman Coders is subscribed to branch lp:postorius. From terri at toybox.ca Wed Apr 15 23:21:20 2015 From: terri at toybox.ca (Terri) Date: Wed, 15 Apr 2015 21:21:20 -0000 Subject: [Merge] lp:~abompard/postorius/link-to-hyperkitty into lp:postorius In-Reply-To: <20150415154928.29216.82099.launchpad@ackee.canonical.com> Message-ID: <20150415212120.4262.42933.launchpad@ackee.canonical.com> The proposal to merge lp:~abompard/postorius/link-to-hyperkitty into lp:postorius has been updated. Status: Needs review => Approved For more details, see: https://code.launchpad.net/~abompard/postorius/link-to-hyperkitty/+merge/256350 -- Your team Mailman Coders is requested to review the proposed merge of lp:~abompard/postorius/link-to-hyperkitty into lp:postorius. From terri at toybox.ca Wed Apr 15 23:27:16 2015 From: terri at toybox.ca (Terri) Date: Wed, 15 Apr 2015 21:27:16 -0000 Subject: [Merge] lp:~coolyashish/postorius/mass_unsubscribe into lp:postorius In-Reply-To: <20150313192321.11065.79449.launchpad@ackee.canonical.com> Message-ID: <20150415212716.9091.35327.codereview@chaenomeles.canonical.com> Review: Needs Fixing Can you switch this to use django's built-in email address validation, please? -- https://code.launchpad.net/~coolyashish/postorius/mass_unsubscribe/+merge/252943 Your team Mailman Coders is subscribed to branch lp:postorius. From terri at toybox.ca Wed Apr 15 23:31:12 2015 From: terri at toybox.ca (Terri) Date: Wed, 15 Apr 2015 21:31:12 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/feature-added-search-postorius-lists into lp:postorius In-Reply-To: <20150309122621.17889.494.launchpad@ackee.canonical.com> Message-ID: <20150415213112.21819.9610.codereview@soybean.canonical.com> Review: Needs Fixing This looks like a useful feature, but I believe this needs some more careful validation of the search string. Could you double-check that you're following best practices since the search string is being displayed in the page? -- https://code.launchpad.net/~bhavesh-goyal093/postorius/feature-added-search-postorius-lists/+merge/252274 Your team Mailman Coders is subscribed to branch lp:postorius. From 1444709 at bugs.launchpad.net Wed Apr 15 23:30:09 2015 From: 1444709 at bugs.launchpad.net (Sumana Harihareswara) Date: Wed, 15 Apr 2015 21:30:09 -0000 Subject: [Bug 1444709] [NEW] Wishlist: change the domain of an existing list References: <20150415213010.11143.88871.malonedeb@wampee.canonical.com> Message-ID: <20150415213010.11143.88871.malonedeb@wampee.canonical.com> Public bug reported: Wishlist: list owners should be able to change the domain of an existing list (that is, to move it from example.com to example.org). ** Affects: mailman Importance: Undecided Status: New ** Affects: postorius Importance: Undecided Status: New ** Tags: mailman3 wishlist ** 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/1444709 Title: Wishlist: change the domain of an existing list To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1444709/+subscriptions From aurelien at bompard.org Wed Apr 15 23:52:25 2015 From: aurelien at bompard.org (=?utf-8?q?Aur=C3=A9lien_Bompard?=) Date: Wed, 15 Apr 2015 21:52:25 -0000 Subject: [Merge] lp:~abompard/postorius/ugettext into lp:postorius Message-ID: <20150415215224.30140.80875.launchpad@ackee.canonical.com> Aur?lien Bompard has proposed merging lp:~abompard/postorius/ugettext into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) For more details, see: https://code.launchpad.net/~abompard/postorius/ugettext/+merge/256401 Get the translations in unicode -- Your team Mailman Coders is requested to review the proposed merge of lp:~abompard/postorius/ugettext into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 419 bytes Desc: not available URL: From terri at toybox.ca Thu Apr 16 00:00:14 2015 From: terri at toybox.ca (Terri) Date: Wed, 15 Apr 2015 22:00:14 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/feature-implemented-mass-removal into lp:postorius In-Reply-To: <20150322220120.27475.47119.launchpad@ackee.canonical.com> Message-ID: <20150415220013.11444.24503.codereview@wampee.canonical.com> Review: Approve Looking great! I'm just running a few more tests, but I think I'll be merging this in a few minutes. -- https://code.launchpad.net/~bhavesh-goyal093/postorius/feature-implemented-mass-removal/+merge/253775 Your team Mailman Coders is subscribed to branch lp:postorius. From noreply at launchpad.net Thu Apr 16 00:03:25 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Wed, 15 Apr 2015 22:03:25 -0000 Subject: [Merge] lp:~abompard/postorius/link-to-hyperkitty into lp:postorius In-Reply-To: <20150415154928.29216.82099.launchpad@ackee.canonical.com> Message-ID: <20150415220325.4263.21472.launchpad@ackee.canonical.com> The proposal to merge lp:~abompard/postorius/link-to-hyperkitty into lp:postorius has been updated. Status: Approved => Merged For more details, see: https://code.launchpad.net/~abompard/postorius/link-to-hyperkitty/+merge/256350 -- Your team Mailman Coders is requested to review the proposed merge of lp:~abompard/postorius/link-to-hyperkitty into lp:postorius. From noreply at launchpad.net Thu Apr 16 00:03:26 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Wed, 15 Apr 2015 22:03:26 -0000 Subject: [Merge] lp:~bhavesh-goyal093/postorius/feature-implemented-mass-removal into lp:postorius In-Reply-To: <20150322220120.27475.47119.launchpad@ackee.canonical.com> Message-ID: <20150415220326.4264.53867.launchpad@ackee.canonical.com> The proposal to merge lp:~bhavesh-goyal093/postorius/feature-implemented-mass-removal into lp:postorius has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~bhavesh-goyal093/postorius/feature-implemented-mass-removal/+merge/253775 -- Your team Mailman Coders is subscribed to branch lp:postorius. From terri at toybox.ca Thu Apr 16 00:05:52 2015 From: terri at toybox.ca (Terri) Date: Wed, 15 Apr 2015 22:05:52 -0000 Subject: [Merge] lp:~coolyashish/postorius/mass_unsubscribe into lp:postorius In-Reply-To: <20150313192321.11065.79449.launchpad@ackee.canonical.com> Message-ID: <20150415220552.11174.32447.codereview@wampee.canonical.com> Review: Disapprove I've merged a similar patch that includes this functionality as well as an unsubscribe all button, so I'm going to reject this one. Thank you so much for your contribution, though, it's still decent code and you should be proud of it! -- https://code.launchpad.net/~coolyashish/postorius/mass_unsubscribe/+merge/252943 Your team Mailman Coders is subscribed to branch lp:postorius. From terri at toybox.ca Thu Apr 16 00:05:59 2015 From: terri at toybox.ca (Terri) Date: Wed, 15 Apr 2015 22:05:59 -0000 Subject: [Merge] lp:~coolyashish/postorius/mass_unsubscribe into lp:postorius In-Reply-To: <20150313192321.11065.79449.launchpad@ackee.canonical.com> Message-ID: <20150415220558.4263.76085.launchpad@ackee.canonical.com> The proposal to merge lp:~coolyashish/postorius/mass_unsubscribe into lp:postorius has been updated. Status: Needs review => Rejected For more details, see: https://code.launchpad.net/~coolyashish/postorius/mass_unsubscribe/+merge/252943 -- Your team Mailman Coders is subscribed to branch lp:postorius. From 1444746 at bugs.launchpad.net Thu Apr 16 00:55:39 2015 From: 1444746 at bugs.launchpad.net (Sumana Harihareswara) Date: Wed, 15 Apr 2015 22:55:39 -0000 Subject: [Bug 1444746] [NEW] implement per-list roster visibility options References: <20150415225539.11376.65538.malonedeb@wampee.canonical.com> Message-ID: <20150415225539.11376.65538.malonedeb@wampee.canonical.com> Public bug reported: This is for feature parity with Mailman 2.x. Each list should have an option, changeable by the list owner, for three options for list roster visibility: * the member roster is entirely public * any list member can view the member roster * only list moderators and above (list owners, domain owners, admins, superusers) can view the member roster (In Mailman 2.x, a list moderator can approve pending subscriptions, msgs, and unsubscriptions. but cannot subscribe new members. If the roster is private only to list owners, then moderators can see the member roster.) This needs to be implemented in Mailman core, be available via the core API, be implemented in mailman.client, and then be implemented in Postorius. ** Affects: mailman Importance: Undecided Status: New ** Affects: mailman.client Importance: Undecided Status: New ** Affects: postorius Importance: Undecided Status: New ** Tags: security ** Also affects: postorius Importance: Undecided Status: New ** Also affects: mailman.client 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/1444746 Title: implement per-list roster visibility options To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1444746/+subscriptions From 1444746 at bugs.launchpad.net Thu Apr 16 01:19:08 2015 From: 1444746 at bugs.launchpad.net (Barry Warsaw) Date: Wed, 15 Apr 2015 23:19:08 -0000 Subject: [Bug 1444746] Re: implement per-list roster visibility options References: <20150415225539.11376.65538.malonedeb@wampee.canonical.com> Message-ID: <20150415231908.21675.27524.launchpad@soybean.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/1444746 Title: implement per-list roster visibility options To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1444746/+subscriptions From noreply at launchpad.net Thu Apr 16 01:44:19 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Wed, 15 Apr 2015 23:44:19 -0000 Subject: [Merge] lp:~sumanah/postorius/held-msg-docstring into lp:postorius In-Reply-To: <20150415145533.14136.92045.launchpad@ackee.canonical.com> Message-ID: <20150415234419.4263.29351.launchpad@ackee.canonical.com> The proposal to merge lp:~sumanah/postorius/held-msg-docstring into lp:postorius has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~sumanah/postorius/held-msg-docstring/+merge/256334 -- Your team Mailman Coders is subscribed to branch lp:postorius. From raj.abhilash1 at gmail.com Thu Apr 16 04:54:26 2015 From: raj.abhilash1 at gmail.com (Abhilash Raj) Date: Thu, 16 Apr 2015 02:54:26 -0000 Subject: [Merge] lp:~raj-abhilash1/mailman/bugfix into lp:mailman Message-ID: <20150416025422.14264.85364.launchpad@ackee.canonical.com> Abhilash Raj has proposed merging lp:~raj-abhilash1/mailman/bugfix into lp:mailman. Requested reviews: Mailman Coders (mailman-coders) For more details, see: https://code.launchpad.net/~raj-abhilash1/mailman/bugfix/+merge/256418 Updated the templates and reason for held message. -- Your team Mailman Coders is requested to review the proposed merge of lp:~raj-abhilash1/mailman/bugfix into lp:mailman. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 978 bytes Desc: not available URL: From pskoli93 at gmail.com Thu Apr 16 08:41:22 2015 From: pskoli93 at gmail.com (Pavan Koli) Date: Thu, 16 Apr 2015 06:41:22 -0000 Subject: [Merge] lp:~pskoli93/postorius/RedirectFix into lp:postorius Message-ID: <20150416064121.10092.69538.launchpad@ackee.canonical.com> Pavan Koli has proposed merging lp:~pskoli93/postorius/RedirectFix into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) For more details, see: https://code.launchpad.net/~pskoli93/postorius/RedirectFix/+merge/256424 On choosing any list, when the list owner wants to unsubscribe from a list(where he had subscribed previously). On clicking the unsubscribe the owner is redirected to list_members page, instead of the list_summary page. -- Your team Mailman Coders is requested to review the proposed merge of lp:~pskoli93/postorius/RedirectFix into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 495 bytes Desc: not available URL: From pskoli93 at gmail.com Thu Apr 16 10:06:24 2015 From: pskoli93 at gmail.com (Pavan Koli) Date: Thu, 16 Apr 2015 08:06:24 -0000 Subject: [Merge] lp:~pskoli93/postorius/Add-a-single-member into lp:postorius Message-ID: <20150416080623.330.43170.launchpad@ackee.canonical.com> Pavan Koli has proposed merging lp:~pskoli93/postorius/Add-a-single-member into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) Related bugs: Bug #1444699 in Postorius: "I can't add a single member (non-owner, non-moderator) from the Members page." https://bugs.launchpad.net/postorius/+bug/1444699 For more details, see: https://code.launchpad.net/~pskoli93/postorius/Add-a-single-member/+merge/256440 Option to add a single member from the members page has been included in this branch. -- Your team Mailman Coders is requested to review the proposed merge of lp:~pskoli93/postorius/Add-a-single-member into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 3698 bytes Desc: not available URL: From noreply at launchpad.net Thu Apr 16 15:40:27 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Thu, 16 Apr 2015 13:40:27 -0000 Subject: [Branch ~mailman-coders/mailman.client/trunk] 1 revision removed Message-ID: <20150416134027.23620.64974.launchpad@ackee.canonical.com> 1 revision was removed from the branch. -- lp:mailman.client https://code.launchpad.net/~mailman-coders/mailman.client/trunk Your team Mailman Coders is subscribed to branch lp:mailman.client. To unsubscribe from this branch go to https://code.launchpad.net/~mailman-coders/mailman.client/trunk/+edit-subscription From noreply at launchpad.net Thu Apr 16 15:40:37 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Thu, 16 Apr 2015 13:40:37 -0000 Subject: [Branch ~mailman-coders/mailman.client/trunk] Rev 65: added doctest for subscription requests Message-ID: <20150416134037.23948.35104.launchpad@ackee.canonical.com> ------------------------------------------------------------ revno: 65 committer: Florian Fuchs branch nick: mailman.client timestamp: Tue 2015-04-14 19:18:47 -0400 message: added doctest for subscription requests modified: src/mailmanclient/docs/using.rst src/mailmanclient/tests/data/tape.yaml The size of the diff (5246 lines) is larger than your specified limit of 1000 lines -- lp:mailman.client https://code.launchpad.net/~mailman-coders/mailman.client/trunk Your team Mailman Coders is subscribed to branch lp:mailman.client. To unsubscribe from this branch go to https://code.launchpad.net/~mailman-coders/mailman.client/trunk/+edit-subscription From noreply at launchpad.net Thu Apr 16 15:40:38 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Thu, 16 Apr 2015 13:40:38 -0000 Subject: [Branch ~mailman-coders/mailman.client/trunk] Rev 66: added subscription policy features Message-ID: <20150416134038.23948.89713.launchpad@ackee.canonical.com> ------------------------------------------------------------ revno: 66 committer: Florian Fuchs branch nick: mailman.client timestamp: Thu 2015-04-16 09:38:27 -0400 message: added subscription policy features modified: src/mailmanclient/_client.py src/mailmanclient/docs/using.rst src/mailmanclient/tests/data/tape.yaml The size of the diff (6369 lines) is larger than your specified limit of 1000 lines -- lp:mailman.client https://code.launchpad.net/~mailman-coders/mailman.client/trunk Your team Mailman Coders is subscribed to branch lp:mailman.client. To unsubscribe from this branch go to https://code.launchpad.net/~mailman-coders/mailman.client/trunk/+edit-subscription From noreply at launchpad.net Thu Apr 16 15:40:38 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Thu, 16 Apr 2015 13:40:38 -0000 Subject: [Branch ~mailman-coders/mailman.client/trunk] Rev 67: version bump Message-ID: <20150416134038.23948.50999.launchpad@ackee.canonical.com> Merge authors: Florian Fuchs (flo-fuchs) ------------------------------------------------------------ revno: 67 [merge] committer: Florian Fuchs branch nick: mailman.client timestamp: Thu 2015-04-16 09:39:15 -0400 message: version bump modified: src/mailmanclient/__init__.py -- lp:mailman.client https://code.launchpad.net/~mailman-coders/mailman.client/trunk Your team Mailman Coders is subscribed to branch lp:mailman.client. To unsubscribe from this branch go to https://code.launchpad.net/~mailman-coders/mailman.client/trunk/+edit-subscription -------------- next part -------------- A non-text attachment was scrubbed... Name: revision-diff.txt Type: text/x-diff Size: 320 bytes Desc: not available URL: From barry at canonical.com Thu Apr 16 16:22:51 2015 From: barry at canonical.com (Barry Warsaw) Date: Thu, 16 Apr 2015 14:22:51 -0000 Subject: [Merge] lp:~raj-abhilash1/mailman/bugfix into lp:mailman In-Reply-To: <20150416025422.14264.85364.launchpad@ackee.canonical.com> Message-ID: <20150416142250.1408.15363.launchpad@ackee.canonical.com> The proposal to merge lp:~raj-abhilash1/mailman/bugfix into lp:mailman has been updated. Status: Needs review => Approved For more details, see: https://code.launchpad.net/~raj-abhilash1/mailman/bugfix/+merge/256418 -- Your team Mailman Coders is requested to review the proposed merge of lp:~raj-abhilash1/mailman/bugfix into lp:mailman. From sumanah at panix.com Thu Apr 16 16:38:48 2015 From: sumanah at panix.com (Sumana Harihareswara) Date: Thu, 16 Apr 2015 14:38:48 -0000 Subject: [Merge] lp:~pskoli93/postorius/Add-a-single-member into lp:postorius In-Reply-To: <20150416080623.330.43170.launchpad@ackee.canonical.com> Message-ID: <20150416143848.30348.97686.codereview@gac.canonical.com> Review: Needs Fixing I believe your strings (in your error messages and the success message) need fixing to prep them for translation. Diff comments: > === modified file 'src/postorius/forms.py' > --- src/postorius/forms.py 2015-04-16 01:18:49 +0000 > +++ src/postorius/forms.py 2015-04-16 08:05:38 +0000 > @@ -91,6 +91,14 @@ > 'required': _('Please enter an email adddress.'), > 'invalid': _('Please enter a valid email adddress.')}) > > +class NewSubscriberForm(forms.Form): > + > + """Add a subscriber.""" > + subscriber_email = forms.EmailField( > + label=_('Email Address'), > + error_messages={ > + 'required': _('Please enter an email adddress.'), I think this should be surrounded by the {% %} syntax to prepare it for translation, and I think your other hardcoded English strings should be too. > + 'invalid': _('Please enter a valid email adddress.')}) > > class ListNew(FieldsetForm): > > > === modified file 'src/postorius/templates/postorius/lists/members.html' > --- src/postorius/templates/postorius/lists/members.html 2015-04-15 21:48:46 +0000 > +++ src/postorius/templates/postorius/lists/members.html 2015-04-16 08:05:38 +0000 > @@ -65,6 +65,17 @@ > > >

    {% trans "Members" %}

    > +
    {% csrf_token %} > + > + {{ subscriber_form.subscriber_email }} > + > +
    > + > + > + {% trans 'Address' %} > +   > + > + > > > > > === modified file 'src/postorius/views/list.py' > --- src/postorius/views/list.py 2015-04-15 23:44:05 +0000 > +++ src/postorius/views/list.py 2015-04-16 08:05:38 +0000 > @@ -77,22 +77,38 @@ > % request.POST['moderator_email'])) > except HTTPError as e: > messages.error(request, _(e.msg)) > + if 'subscriber_email' in request.POST: > + subscriber_form = NewSubscriberForm(request.POST) > + if subscriber_form.is_valid(): > + try: > + self.mailing_list.subscribe( > + subscriber_form.cleaned_data['subscriber_email']) > + messages.success( > + request, _('%s has been subscribed.' > + % request.POST['subscriber_email'])) > + except HTTPError as e: > + messages.error(request,_(e.msg)) > + return redirect('list_members', self.mailing_list.list_id) > owner_form = NewOwnerForm() > moderator_form = NewModeratorForm() > + subscriber_form = NewSubscriberForm() > return render_to_response('postorius/lists/members.html', > {'list': self.mailing_list, > 'owner_form': owner_form, > - 'moderator_form': moderator_form}, > + 'moderator_form': moderator_form, > + 'subscriber_form': subscriber_form}, > context_instance=RequestContext(request)) > > @method_decorator(list_owner_required) > def get(self, request, list_id, page=1): > owner_form = NewOwnerForm() > moderator_form = NewModeratorForm() > + subscriber_form = NewSubscriberForm() > return render_to_response('postorius/lists/members.html', > {'list': self.mailing_list, > 'owner_form': owner_form, > - 'moderator_form': moderator_form}, > + 'moderator_form': moderator_form, > + 'subscriber_form': subscriber_form}, > context_instance=RequestContext(request)) > > > -- https://code.launchpad.net/~pskoli93/postorius/Add-a-single-member/+merge/256440 Your team Mailman Coders is requested to review the proposed merge of lp:~pskoli93/postorius/Add-a-single-member into lp:postorius. From noreply at launchpad.net Thu Apr 16 16:43:07 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Thu, 16 Apr 2015 14:43:07 -0000 Subject: [Merge] lp:~raj-abhilash1/mailman/bugfix into lp:mailman In-Reply-To: <20150416025422.14264.85364.launchpad@ackee.canonical.com> Message-ID: <20150416144307.1408.24529.launchpad@ackee.canonical.com> The proposal to merge lp:~raj-abhilash1/mailman/bugfix into lp:mailman has been updated. Status: Approved => Merged For more details, see: https://code.launchpad.net/~raj-abhilash1/mailman/bugfix/+merge/256418 -- Your team Mailman Coders is requested to review the proposed merge of lp:~raj-abhilash1/mailman/bugfix into lp:mailman. From pskoli93 at gmail.com Thu Apr 16 17:46:36 2015 From: pskoli93 at gmail.com (Pavan Koli) Date: Thu, 16 Apr 2015 15:46:36 -0000 Subject: [Merge] lp:~pskoli93/postorius/Add-a-single-member into lp:postorius In-Reply-To: <20150416143848.30348.97686.codereview@gac.canonical.com> Message-ID: <20150416154636.29907.48655.codereview@gac.canonical.com> > I believe your strings (in your error messages and the success message) need > fixing to prep them for translation. Made the required changes. Also used function ugettext() instead of gettext() for translations. Referring(https://docs.djangoproject.com/en/1.8/topics/i18n/translation/#standard-translation). -- https://code.launchpad.net/~pskoli93/postorius/Add-a-single-member/+merge/256440 Your team Mailman Coders is requested to review the proposed merge of lp:~pskoli93/postorius/Add-a-single-member into lp:postorius. From coolyashish at gmail.com Thu Apr 16 18:20:46 2015 From: coolyashish at gmail.com (Ashish) Date: Thu, 16 Apr 2015 16:20:46 -0000 Subject: [Merge] lp:~coolyashish/postorius/postorius into lp:postorius In-Reply-To: <20150306114042.22934.24928.launchpad@ackee.canonical.com> Message-ID: <20150416162046.22015.2289.codereview@soybean.canonical.com> Hi Terri, I have added @list_owner_required. It is working fine with it. Also I had ran pep8 in both the files and did cleanup of the code. Thanks -- https://code.launchpad.net/~coolyashish/postorius/postorius/+merge/252088 Your team Mailman Coders is subscribed to branch lp:postorius. From terri at toybox.ca Thu Apr 16 18:24:29 2015 From: terri at toybox.ca (Terri) Date: Thu, 16 Apr 2015 16:24:29 -0000 Subject: [Merge] lp:~abompard/postorius/ugettext into lp:postorius In-Reply-To: <20150415215224.30140.80875.launchpad@ackee.canonical.com> Message-ID: <20150416162429.21274.55824.codereview@soybean.canonical.com> Review: Approve -- https://code.launchpad.net/~abompard/postorius/ugettext/+merge/256401 Your team Mailman Coders is subscribed to branch lp:postorius. From noreply at launchpad.net Thu Apr 16 18:24:44 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Thu, 16 Apr 2015 16:24:44 -0000 Subject: [Merge] lp:~abompard/postorius/ugettext into lp:postorius In-Reply-To: <20150415215224.30140.80875.launchpad@ackee.canonical.com> Message-ID: <20150416162443.1409.34253.launchpad@ackee.canonical.com> The proposal to merge lp:~abompard/postorius/ugettext into lp:postorius has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~abompard/postorius/ugettext/+merge/256401 -- Your team Mailman Coders is subscribed to branch lp:postorius. From mark at msapiro.net Thu Apr 16 18:42:33 2015 From: mark at msapiro.net (Mark Sapiro) Date: Thu, 16 Apr 2015 16:42:33 -0000 Subject: [Bug 1445108] [NEW] Runner exception if list's convert html to plaintext is Yes References: <20150416164233.8612.11792.malonedeb@chaenomeles.canonical.com> Message-ID: <20150416164233.8612.11792.malonedeb@chaenomeles.canonical.com> Public bug reported: Traceback: Apr 16 09:32:51 2015 (6263) Uncaught runner exception: No section or category named HTML_TO_PLAIN_TEXT_COMMAND. Apr 16 09:32:51 2015 (6263) Traceback (most recent call last): ??File "/var/MM/mailman-bundler/venv-3.4/lib/python3.4/site-packages/mailman/core/runner.py", line 165, in _one_iteration ????self._process_one_file(msg, msgdata) ??File "/var/MM/mailman-bundler/venv-3.4/lib/python3.4/site-packages/mailman/core/runner.py", line 257, in _process_one_file ????keepqueued = self._dispose(mlist, msg, msgdata) ??File "/var/MM/mailman-bundler/venv-3.4/lib/python3.4/site-packages/mailman/runners/pipeline.py", line 41, in _dispose ????process(mlist, msg, msgdata, pipeline) ??File "/var/MM/mailman-bundler/venv-3.4/lib/python3.4/site-packages/mailman/core/pipelines.py", line 62, in process ????handler.process(mlist, msg, msgdata) ??File "/var/MM/mailman-bundler/venv-3.4/lib/python3.4/site-packages/mailman/handlers/mime_delete.py", line 297, in process ????process(mlist, msg, msgdata) ??File "/var/MM/mailman-bundler/venv-3.4/lib/python3.4/site-packages/mailman/handlers/mime_delete.py", line 148, in process ????if mlist.convert_html_to_plaintext and config.HTML_TO_PLAIN_TEXT_COMMAND: ??File "/var/MM/mailman-bundler/venv-3.4/lib/python3.4/site-packages/mailman/config/config.py", line 99, in __getattr__ ????return getattr(self._config, name) ??File "/var/MM/mailman-bundler/venv-3.4/lib/python3.4/site-packages/lazr/config/_config.py", line 513, in __getattr__ ????raise AttributeError("No section or category named %s." % name) AttributeError: No section or category named HTML_TO_PLAIN_TEXT_COMMAND. ** Affects: mailman Importance: Undecided Assignee: Barry Warsaw (barry) Status: New ** Tags: mailman3 ** Description changed: Traceback: - Apr 16 09:32:51 2015 (6263) Uncaught runner exception: No section or category na - med HTML_TO_PLAIN_TEXT_COMMAND. + Apr 16 09:32:51 2015 (6263) Uncaught runner exception: No section or category named HTML_TO_PLAIN_TEXT_COMMAND. Apr 16 09:32:51 2015 (6263) Traceback (most recent call last): - File "/var/MM/mailman-bundler/venv-3.4/lib/python3.4/site-packages/mailman/cor - e/runner.py", line 165, in _one_iteration - self._process_one_file(msg, msgdata) - File "/var/MM/mailman-bundler/venv-3.4/lib/python3.4/site-packages/mailman/cor - e/runner.py", line 257, in _process_one_file - keepqueued = self._dispose(mlist, msg, msgdata) - File "/var/MM/mailman-bundler/venv-3.4/lib/python3.4/site-packages/mailman/run - ners/pipeline.py", line 41, in _dispose - process(mlist, msg, msgdata, pipeline) - File "/var/MM/mailman-bundler/venv-3.4/lib/python3.4/site-packages/mailman/cor - e/pipelines.py", line 62, in process - handler.process(mlist, msg, msgdata) - File "/var/MM/mailman-bundler/venv-3.4/lib/python3.4/site-packages/mailman/han - dlers/mime_delete.py", line 297, in process - process(mlist, msg, msgdata) - File "/var/MM/mailman-bundler/venv-3.4/lib/python3.4/site-packages/mailman/han - dlers/mime_delete.py", line 148, in process - if mlist.convert_html_to_plaintext and config.HTML_TO_PLAIN_TEXT_COMMAND: - File "/var/MM/mailman-bundler/venv-3.4/lib/python3.4/site-packages/mailman/config/config.py", line 99, in __getattr__ - return getattr(self._config, name) - File "/var/MM/mailman-bundler/venv-3.4/lib/python3.4/site-packages/lazr/config/_config.py", line 513, in __getattr__ - raise AttributeError("No section or category named %s." % name) + ??File "/var/MM/mailman-bundler/venv-3.4/lib/python3.4/site-packages/mailman/core/runner.py", line 165, in _one_iteration + ????self._process_one_file(msg, msgdata) + ??File "/var/MM/mailman-bundler/venv-3.4/lib/python3.4/site-packages/mailman/core/runner.py", line 257, in _process_one_file + ????keepqueued = self._dispose(mlist, msg, msgdata) + ??File "/var/MM/mailman-bundler/venv-3.4/lib/python3.4/site-packages/mailman/runners/pipeline.py", line 41, in _dispose + ????process(mlist, msg, msgdata, pipeline) + ??File "/var/MM/mailman-bundler/venv-3.4/lib/python3.4/site-packages/mailman/core/pipelines.py", line 62, in process + ????handler.process(mlist, msg, msgdata) + ??File "/var/MM/mailman-bundler/venv-3.4/lib/python3.4/site-packages/mailman/handlers/mime_delete.py", line 297, in process + ????process(mlist, msg, msgdata) + ??File "/var/MM/mailman-bundler/venv-3.4/lib/python3.4/site-packages/mailman/handlers/mime_delete.py", line 148, in process + ????if mlist.convert_html_to_plaintext and config.HTML_TO_PLAIN_TEXT_COMMAND: + ??File "/var/MM/mailman-bundler/venv-3.4/lib/python3.4/site-packages/mailman/config/config.py", line 99, in __getattr__ + ????return getattr(self._config, name) + ??File "/var/MM/mailman-bundler/venv-3.4/lib/python3.4/site-packages/lazr/config/_config.py", line 513, in __getattr__ + ????raise AttributeError("No section or category named %s." % name) AttributeError: No section or category named HTML_TO_PLAIN_TEXT_COMMAND. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1445108 Title: Runner exception if list's convert html to plaintext is Yes To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1445108/+subscriptions From terri at toybox.ca Thu Apr 16 19:03:06 2015 From: terri at toybox.ca (Terri) Date: Thu, 16 Apr 2015 17:03:06 -0000 Subject: [Merge] lp:~coolyashish/postorius/postorius into lp:postorius In-Reply-To: <20150306114042.22934.24928.launchpad@ackee.canonical.com> Message-ID: <20150416170305.8825.97234.codereview@chaenomeles.canonical.com> Review: Needs Fixing Excellent! Can you run the tox tests as well? Also, it looks like you've got some leftovers from the merge, e.g. ("<<<<<<< TREE") that you might need to clean up. We're just going to grab lunch, but I'll take a more detailed look at this when I get back in an hour or so. -- https://code.launchpad.net/~coolyashish/postorius/postorius/+merge/252088 Your team Mailman Coders is subscribed to branch lp:postorius. From mark at msapiro.net Thu Apr 16 19:06:02 2015 From: mark at msapiro.net (Mark Sapiro) Date: Thu, 16 Apr 2015 17:06:02 -0000 Subject: [Bug 1445121] [NEW] Template replacements not correct References: <20150416170602.8825.33189.malonedeb@chaenomeles.canonical.com> Message-ID: <20150416170602.8825.33189.malonedeb@chaenomeles.canonical.com> Public bug reported: The welcome.txt templat contains replacements $fqdn_listname, $listinfo_uri, $user_options_uri and $list_requests. In a test list named list1 at msapiro.net, these are replaced as follows: $fqdn_listname = list1 at msapiro.net $listinfo_uri = http://msapiro.net/listinfo/list1 at msapiro.net $user_options_uri = http://example.com/mark at ms2.msapiro.net $list_requests = list1-request at msapiro.net I'm not sure about $listinfo_uri because I don't have the web server fully set up, but $user_options_uri is clearly wrong. ** 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/1445121 Title: Template replacements not correct To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1445121/+subscriptions From noreply at launchpad.net Thu Apr 16 20:19:40 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Thu, 16 Apr 2015 18:19:40 -0000 Subject: [Merge] lp:~coolyashish/postorius/postorius into lp:postorius In-Reply-To: <20150306114042.22934.24928.launchpad@ackee.canonical.com> Message-ID: <20150416181940.1409.65265.launchpad@ackee.canonical.com> The proposal to merge lp:~coolyashish/postorius/postorius into lp:postorius has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~coolyashish/postorius/postorius/+merge/252088 -- Your team Mailman Coders is subscribed to branch lp:postorius. From terri at toybox.ca Thu Apr 16 20:24:04 2015 From: terri at toybox.ca (Terri) Date: Thu, 16 Apr 2015 18:24:04 -0000 Subject: [Merge] lp:~coolyashish/postorius/postorius into lp:postorius In-Reply-To: <20150306114042.22934.24928.launchpad@ackee.canonical.com> Message-ID: <20150416182404.21611.61304.codereview@soybean.canonical.com> Review: Approve I fixed the errors and merged without waiting 'cause I need to catch my train soon! -- https://code.launchpad.net/~coolyashish/postorius/postorius/+merge/252088 Your team Mailman Coders is subscribed to branch lp:postorius. From coolyashish at gmail.com Thu Apr 16 20:26:19 2015 From: coolyashish at gmail.com (Ashish) Date: Thu, 16 Apr 2015 18:26:19 -0000 Subject: [Merge] lp:~coolyashish/postorius/postorius into lp:postorius In-Reply-To: <20150306114042.22934.24928.launchpad@ackee.canonical.com> Message-ID: <20150416182618.9192.15475.codereview@chaenomeles.canonical.com> Hi, I have created a new branch https://code.launchpad.net/~coolyashish/postorius/CSV_EXPORT with propert testing with tox and Current remote changes merged into it. -- https://code.launchpad.net/~coolyashish/postorius/postorius/+merge/252088 Your team Mailman Coders is subscribed to branch lp:postorius. From coolyashish at gmail.com Thu Apr 16 20:27:23 2015 From: coolyashish at gmail.com (Ashish) Date: Thu, 16 Apr 2015 18:27:23 -0000 Subject: [Merge] lp:~coolyashish/postorius/CSV_EXPORT into lp:postorius Message-ID: <20150416182722.5635.55295.launchpad@ackee.canonical.com> Ashish has proposed merging lp:~coolyashish/postorius/CSV_EXPORT into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) For more details, see: https://code.launchpad.net/~coolyashish/postorius/CSV_EXPORT/+merge/256548 -- Your team Mailman Coders is requested to review the proposed merge of lp:~coolyashish/postorius/CSV_EXPORT into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 742 bytes Desc: not available URL: From coolyashish at gmail.com Thu Apr 16 20:36:27 2015 From: coolyashish at gmail.com (Ashish) Date: Thu, 16 Apr 2015 18:36:27 -0000 Subject: [Merge] lp:~coolyashish/postorius/postorius into lp:postorius In-Reply-To: <20150416182618.9192.15475.codereview@chaenomeles.canonical.com> Message-ID: Thanks :) On Thu, Apr 16, 2015 at 11:56 PM, Ashish wrote: > Hi, > > I have created a new branch > https://code.launchpad.net/~coolyashish/postorius/CSV_EXPORT with propert > testing with tox and Current remote changes merged into it. > > > > -- > https://code.launchpad.net/~coolyashish/postorius/postorius/+merge/252088 > You are the owner of lp:~coolyashish/postorius/postorius. > -- https://code.launchpad.net/~coolyashish/postorius/postorius/+merge/252088 Your team Mailman Coders is subscribed to branch lp:postorius. From barry at canonical.com Thu Apr 16 21:39:06 2015 From: barry at canonical.com (Barry Warsaw) Date: Thu, 16 Apr 2015 19:39:06 -0000 Subject: [Merge] lp:~barry/mailman/requests into lp:mailman Message-ID: <20150416193905.18270.3389.launchpad@ackee.canonical.com> The proposal to merge lp:~barry/mailman/requests into lp:mailman has been updated. Status: Needs review => Work in progress For more details, see: https://code.launchpad.net/~barry/mailman/requests/+merge/256560 -- Your team Mailman Coders is requested to review the proposed merge of lp:~barry/mailman/requests into lp:mailman. From barry at canonical.com Thu Apr 16 21:39:26 2015 From: barry at canonical.com (Barry Warsaw) Date: Thu, 16 Apr 2015 19:39:26 -0000 Subject: [Merge] lp:~barry/mailman/requests into lp:mailman In-Reply-To: <20150416193905.18270.3389.launchpad@ackee.canonical.com> Message-ID: <20150416193921.26906.22949.launchpad@ackee.canonical.com> Barry Warsaw has proposed merging lp:~barry/mailman/requests into lp:mailman. Requested reviews: Mailman Coders (mailman-coders) For more details, see: https://code.launchpad.net/~barry/mailman/requests/+merge/256560 Fix subscription holds exposure to REST. -- Your team Mailman Coders is requested to review the proposed merge of lp:~barry/mailman/requests into lp:mailman. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 39277 bytes Desc: not available URL: From aurelien at bompard.org Thu Apr 16 22:01:25 2015 From: aurelien at bompard.org (=?utf-8?q?Aur=C3=A9lien_Bompard?=) Date: Thu, 16 Apr 2015 20:01:25 -0000 Subject: [Bug 1445191] [NEW] There may be a bug in the --force References: <20150416200125.13927.2267.malonedeb@wampee.canonical.com> Message-ID: <20150416200125.13927.2267.malonedeb@wampee.canonical.com> Public bug reported: When installing Mailman3 on a new host, a previous start of Mailman had to be killed because of memory issues. After getting more RAM, starting mailman failed with a message that kinda looked like: "these are not the pidfiles you are looking for". It also suggested us to use the --force. Being rather in the dark (side) about this, we tried. Apparently, we must do it, or do it not, but there is no try. Mailman didn't start this time either. This felt like a great disturbance in the --force, which may require some investigation. We hope this is unrelated to the millenium bug in Falcon. ** 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/1445191 Title: There may be a bug in the --force To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1445191/+subscriptions From raj.abhilash1 at gmail.com Thu Apr 16 22:55:33 2015 From: raj.abhilash1 at gmail.com (Abhilash Raj) Date: Thu, 16 Apr 2015 20:55:33 -0000 Subject: [Merge] lp:~raj-abhilash1/mailman/bugfix into lp:mailman Message-ID: <20150416205530.11596.27668.launchpad@ackee.canonical.com> Abhilash Raj has proposed merging lp:~raj-abhilash1/mailman/bugfix into lp:mailman. Requested reviews: Mailman Coders (mailman-coders) For more details, see: https://code.launchpad.net/~raj-abhilash1/mailman/bugfix/+merge/256569 Add test case for the falcon bug. -- Your team Mailman Coders is requested to review the proposed merge of lp:~raj-abhilash1/mailman/bugfix into lp:mailman. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 1181 bytes Desc: not available URL: From 1445191 at bugs.launchpad.net Fri Apr 17 04:41:49 2015 From: 1445191 at bugs.launchpad.net (Barry Warsaw) Date: Fri, 17 Apr 2015 02:41:49 -0000 Subject: [Bug 1445191] Re: There may be a bug in the --force References: <20150416200125.13927.2267.malonedeb@wampee.canonical.com> Message-ID: <20150417024149.16900.47953.launchpad@soybean.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/1445191 Title: There may be a bug in the --force To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1445191/+subscriptions From coolyashish at gmail.com Fri Apr 17 09:06:23 2015 From: coolyashish at gmail.com (Ashish) Date: Fri, 17 Apr 2015 07:06:23 -0000 Subject: [Merge] lp:~coolyashish/postorius/tests into lp:postorius Message-ID: <20150417070622.12189.41907.launchpad@ackee.canonical.com> Ashish has proposed merging lp:~coolyashish/postorius/tests into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) Related bugs: Bug #1414352 in Postorius: "Improve code coverage by adding tests" https://bugs.launchpad.net/postorius/+bug/1414352 For more details, see: https://code.launchpad.net/~coolyashish/postorius/tests/+merge/256620 -- Your team Mailman Coders is requested to review the proposed merge of lp:~coolyashish/postorius/tests into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 3294 bytes Desc: not available URL: From pskoli93 at gmail.com Fri Apr 17 10:36:23 2015 From: pskoli93 at gmail.com (Pavan Koli) Date: Fri, 17 Apr 2015 08:36:23 -0000 Subject: [Merge] lp:~pskoli93/postorius/Add-a-single-member into lp:postorius Message-ID: <20150417083623.1509.43259.launchpad@ackee.canonical.com> Pavan Koli has proposed merging lp:~pskoli93/postorius/Add-a-single-member into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) Sumana Harihareswara (sumanah) Related bugs: Bug #1444699 in Postorius: "I can't add a single member (non-owner, non-moderator) from the Members page." https://bugs.launchpad.net/postorius/+bug/1444699 For more details, see: https://code.launchpad.net/~pskoli93/postorius/Add-a-single-member/+merge/256625 Option to add a single member from the members page has been included in this branch. Made the changes required to support translations. -- Your team Mailman Coders is requested to review the proposed merge of lp:~pskoli93/postorius/Add-a-single-member into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 20545 bytes Desc: not available URL: From noreply at launchpad.net Fri Apr 17 20:21:02 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Fri, 17 Apr 2015 18:21:02 -0000 Subject: [Merge] lp:~barry/mailman/requests into lp:mailman In-Reply-To: <20150416193905.18270.3389.launchpad@ackee.canonical.com> Message-ID: <20150417182059.27186.77530.launchpad@ackee.canonical.com> The proposal to merge lp:~barry/mailman/requests into lp:mailman has been updated. Status: Work in progress => Merged For more details, see: https://code.launchpad.net/~barry/mailman/requests/+merge/256560 -- Your team Mailman Coders is requested to review the proposed merge of lp:~barry/mailman/requests into lp:mailman. From noreply at launchpad.net Fri Apr 17 21:38:22 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Fri, 17 Apr 2015 19:38:22 -0000 Subject: [Branch ~mailman-coders/mailman.client/trunk] Rev 68: Changes related to the subscription policy additions in the mailman core package: Message-ID: <20150417193822.16924.65098.launchpad@ackee.canonical.com> ------------------------------------------------------------ revno: 68 committer: Florian Fuchs branch nick: mailman.client timestamp: Fri 2015-04-17 15:33:54 -0400 message: Changes related to the subscription policy additions in the mailman core package: * Subscribing to lists now allows to set the pre_verfified, pre_confirmed and pre_approved flags. * Disposal of subscription requests has been added. modified: src/mailmanclient/NEWS.rst src/mailmanclient/_client.py src/mailmanclient/docs/using.rst src/mailmanclient/tests/data/tape.yaml The size of the diff (7449 lines) is larger than your specified limit of 1000 lines -- lp:mailman.client https://code.launchpad.net/~mailman-coders/mailman.client/trunk Your team Mailman Coders is subscribed to branch lp:mailman.client. To unsubscribe from this branch go to https://code.launchpad.net/~mailman-coders/mailman.client/trunk/+edit-subscription From 757062 at bugs.launchpad.net Fri Apr 17 23:35:53 2015 From: 757062 at bugs.launchpad.net (Barry Warsaw) Date: Fri, 17 Apr 2015 21:35:53 -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: <20150417213555.13723.66295.launchpad@chaenomeles.canonical.com> ** Changed in: mailman/3.0 Milestone: 3.0.0 => 3.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/757062 Title: Content filtering can remove the headers from a message/rfc822 part. To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/757062/+subscriptions From noreply at launchpad.net Fri Apr 17 23:52:52 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Fri, 17 Apr 2015 21:52:52 -0000 Subject: [Merge] lp:~raj-abhilash1/postorius/change_subscription into lp:postorius In-Reply-To: <20150415164924.13287.29865.launchpad@ackee.canonical.com> Message-ID: <20150417215252.27186.15834.launchpad@ackee.canonical.com> The proposal to merge lp:~raj-abhilash1/postorius/change_subscription into lp:postorius has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~raj-abhilash1/postorius/change_subscription/+merge/256362 -- Your team Mailman Coders is requested to review the proposed merge of lp:~raj-abhilash1/postorius/change_subscription into lp:postorius. From f at florianfuchs.com Fri Apr 17 23:57:05 2015 From: f at florianfuchs.com (Florian Fuchs) Date: Fri, 17 Apr 2015 21:57:05 -0000 Subject: [Merge] lp:~pskoli93/postorius/RedirectFix into lp:postorius In-Reply-To: <20150416064121.10092.69538.launchpad@ackee.canonical.com> Message-ID: <20150417215704.16798.35548.codereview@soybean.canonical.com> Review: Approve Hi Pavan, thanks for that fix! Only I just readlized I had already fixed that in another branch. Marking it as approved... Florian -- https://code.launchpad.net/~pskoli93/postorius/RedirectFix/+merge/256424 Your team Mailman Coders is subscribed to branch lp:postorius. From noreply at launchpad.net Sat Apr 18 00:11:22 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Fri, 17 Apr 2015 22:11:22 -0000 Subject: [Branch ~mailman-coders/mailman.client/trunk] Rev 69: * Version bump. Message-ID: <20150417221122.28223.89000.launchpad@ackee.canonical.com> ------------------------------------------------------------ revno: 69 committer: Florian Fuchs branch nick: mailman.client timestamp: Fri 2015-04-17 18:10:08 -0400 message: * Version bump. * Updated news file. modified: src/mailmanclient/NEWS.rst src/mailmanclient/__init__.py -- lp:mailman.client https://code.launchpad.net/~mailman-coders/mailman.client/trunk Your team Mailman Coders is subscribed to branch lp:mailman.client. To unsubscribe from this branch go to https://code.launchpad.net/~mailman-coders/mailman.client/trunk/+edit-subscription -------------- next part -------------- A non-text attachment was scrubbed... Name: revision-diff.txt Type: text/x-diff Size: 634 bytes Desc: not available URL: From noreply at launchpad.net Sat Apr 18 01:06:27 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Fri, 17 Apr 2015 23:06:27 -0000 Subject: [Merge] lp:~raj-abhilash1/mailman.client/domainowner into lp:mailman.client In-Reply-To: <20150414220819.7494.61119.launchpad@ackee.canonical.com> Message-ID: <20150417230626.27185.10445.launchpad@ackee.canonical.com> The proposal to merge lp:~raj-abhilash1/mailman.client/domainowner into lp:mailman.client has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~raj-abhilash1/mailman.client/domainowner/+merge/256240 -- Your team Mailman Coders is requested to review the proposed merge of lp:~raj-abhilash1/mailman.client/domainowner into lp:mailman.client. From noreply at launchpad.net Sat Apr 18 01:07:23 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Fri, 17 Apr 2015 23:07:23 -0000 Subject: [Branch ~mailman-coders/mailman.client/trunk] Rev 70: Fix adding owners (by Abhilash Raj) Message-ID: <20150417230723.9021.70291.launchpad@ackee.canonical.com> Merge authors: Abhilash Raj (raj-abhilash1) Related merge proposals: https://code.launchpad.net/~raj-abhilash1/mailman.client/domainowner/+merge/256240 proposed by: Abhilash Raj (raj-abhilash1) ------------------------------------------------------------ revno: 70 [merge] committer: Florian Fuchs branch nick: mailman.client timestamp: Fri 2015-04-17 19:05:16 -0400 message: Fix adding owners (by Abhilash Raj) modified: src/mailmanclient/_client.py -- lp:mailman.client https://code.launchpad.net/~mailman-coders/mailman.client/trunk Your team Mailman Coders is subscribed to branch lp:mailman.client. To unsubscribe from this branch go to https://code.launchpad.net/~mailman-coders/mailman.client/trunk/+edit-subscription -------------- next part -------------- A non-text attachment was scrubbed... Name: revision-diff.txt Type: text/x-diff Size: 1983 bytes Desc: not available URL: From noreply at launchpad.net Sat Apr 18 03:42:45 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Sat, 18 Apr 2015 01:42:45 -0000 Subject: [Merge] lp:~raj-abhilash1/mailman/docs into lp:mailman In-Reply-To: <20150129222421.27155.18370.launchpad@ackee.canonical.com> Message-ID: <20150418014244.23808.91432.launchpad@ackee.canonical.com> The proposal to merge lp:~raj-abhilash1/mailman/docs into lp:mailman has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~raj-abhilash1/mailman/docs/+merge/248059 -- Your team Mailman Coders is requested to review the proposed merge of lp:~raj-abhilash1/mailman/docs into lp:mailman. From pskoli93 at gmail.com Sat Apr 18 12:00:37 2015 From: pskoli93 at gmail.com (Pavan Koli) Date: Sat, 18 Apr 2015 10:00:37 -0000 Subject: [Merge] lp:~pskoli93/postorius/list-name-limit into lp:postorius Message-ID: <20150418100037.21194.83129.launchpad@ackee.canonical.com> Pavan Koli has proposed merging lp:~pskoli93/postorius/list-name-limit into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) For more details, see: https://code.launchpad.net/~pskoli93/postorius/list-name-limit/+merge/256734 A maximum character limit is necessary for name of the list, here a limit of 100 characters has been proposed to the list name. A folder corresponding to the list-name at domain is created at the path mailam/var/lists. There is character limit on the name that can be given for path and file(more info- http://stackoverflow.com/a/6571568/3601099, http://unix.stackexchange.com/a/29001). If we specify a very long name suppose exceeding 150 characters during the creation of the folder an error arises with the makedir() which leads to a HTTP 500 error. -- Your team Mailman Coders is requested to review the proposed merge of lp:~pskoli93/postorius/list-name-limit into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 523 bytes Desc: not available URL: From pskoli93 at gmail.com Sat Apr 18 12:07:42 2015 From: pskoli93 at gmail.com (Pavan Koli) Date: Sat, 18 Apr 2015 10:07:42 -0000 Subject: [Merge] lp:~pskoli93/postorius/list-name-limit into lp:postorius In-Reply-To: <20150418100037.21194.83129.launchpad@ackee.canonical.com> Message-ID: <20150418100742.23810.1965.launchpad@ackee.canonical.com> The proposal to merge lp:~pskoli93/postorius/list-name-limit into lp:postorius has been updated. Description changed to: When creating a new list a maximum character limit is necessary for name of the list, here a limit of 100 characters has been proposed to the list name. A folder corresponding to the list-name at domain is created at the path mailam/var/lists. There is character limit on the name that can be given for path and file(more info- http://stackoverflow.com/a/6571568/3601099, http://unix.stackexchange.com/a/29001). If we specify a very long name suppose exceeding 150 characters during the creation of the folder an error arises with the makedir() which leads to a HTTP 500 error. For more details, see: https://code.launchpad.net/~pskoli93/postorius/list-name-limit/+merge/256734 -- Your team Mailman Coders is requested to review the proposed merge of lp:~pskoli93/postorius/list-name-limit into lp:postorius. From 1445764 at bugs.launchpad.net Sat Apr 18 14:19:16 2015 From: 1445764 at bugs.launchpad.net (Danil Smirnov) Date: Sat, 18 Apr 2015 12:19:16 -0000 Subject: [Bug 1445764] [NEW] "The executable /usr/bin/python3.4 does not exist" error when Installling Mailman 3 on Centos 7 References: <20150418121916.32277.67461.malonedeb@gac.canonical.com> Message-ID: <20150418121916.32277.67461.malonedeb@gac.canonical.com> Public bug reported: Short summary: when installing Mailman 3 onto new Centos 7 box using manual at page http://mailman-bundler.readthedocs.org/en/latest/ after step (venv)[root at host mailman-bundler]# pip install zc.buildout (venv)[root at host mailman-bundler]# buildout getting the error: --- Installing mailman. The executable /usr/bin/python3.4 (from --python=/usr/bin/python3.4) does not exist /tmp/tmpePyrQ3/run: line 2: /usr/local/src/mailman-bundler/venv-3.4/bin/pip: No such file or directory While: Installing mailman. --- Now in details: Fresh new CentOS Linux release 7.1.1503 (Core) installed as kvm guest. System python package installed: python-2.7.5-16.el7.x86_64 Python 3.4.3 was installed by commands: [root at host ~]# cd /usr/local/src [root at host src]# curl -O https://www.python.org/ftp/python/3.4.3/Python-3.4.3.tgz [root at host src]# tar -xvzf Python-3.4.3.tgz [root at host src]# cd /usr/local/src/Python-3.4.3 [root at host Python-3.4.3]# ./configure --enable-shared --prefix=/usr/local LDFLAGS="-Wl,-rpath /usr/local/lib" [root at host Python-3.4.3]# make [root at host Python-3.4.3]# make altinstall Virtualenv was installed from package python-virtualenv.noarch 0:1.10.1-2.el7 with dependant python-devel.x86_64 0:2.7.5-16.el7 Then everything was don according http://mailman-bundler.readthedocs.org/en/latest/ until the error mentioned above occurred. When I did (venv)[root at host mailman-bundler]# ln -s /usr/local/bin/python3.4 /usr/bin/python3.4 I've got another error: --- (venv)[root at host mailman-bundler]# buildout Develop: '/usr/local/src/mailman-bundler/.' warning: no files found matching '*.in' under directory 'mailman_bundler' warning: no files found matching '*.in' under directory 'deployment' warning: no files found matching 'deployment/mailman-web.logrotate.conf' Updating mailman-web. Updating main. Installing mailman. Running virtualenv with interpreter /usr/bin/python3.4 Using base prefix '/usr/local' New python executable in /usr/local/src/mailman-bundler/venv-3.4/bin/python3.4 Also creating executable in /usr/local/src/mailman-bundler/venv-3.4/bin/python Failed to import the site module Traceback (most recent call last): File "/usr/local/src/mailman-bundler/venv-3.4/lib/python3.4/site.py", line 67, in import os File "/usr/local/src/mailman-bundler/venv-3.4/lib/python3.4/os.py", line 616, in from _collections_abc import MutableMapping ImportError: No module named '_collections_abc' ERROR: The executable /usr/local/src/mailman-bundler/venv-3.4/bin/python3.4 is not functioning ERROR: It thinks sys.prefix is '/usr/local/src/mailman-bundler' (should be '/usr/local/src/mailman-bundler/venv-3.4') ERROR: virtualenv is not compatible with this system or executable /tmp/tmpTl6JgC/run: line 2: /usr/local/src/mailman-bundler/venv-3.4/bin/pip: No such file or directory While: Installing mailman. An internal error occurred due to a bug in either zc.buildout or in a recipe being used: Traceback (most recent call last): File "/usr/local/src/venv/lib/python2.7/site-packages/zc/buildout/buildout.py", line 1946, in main getattr(buildout, command)(args) File "/usr/local/src/venv/lib/python2.7/site-packages/zc/buildout/buildout.py", line 626, in install installed_files = self[part]._call(recipe.install) File "/usr/local/src/venv/lib/python2.7/site-packages/zc/buildout/buildout.py", line 1370, in _call return f() File "/usr/local/src/mailman-bundler/eggs/collective.recipe.cmd-0.10-py2.7.egg/collective/recipe/cmd/__init__.py", line 56, in install self.execute() File "/usr/local/src/mailman-bundler/eggs/collective.recipe.cmd-0.10-py2.7.egg/collective/recipe/cmd/__init__.py", line 69, in execute run_commands(cmds, self.shell) File "/usr/local/src/mailman-bundler/eggs/collective.recipe.cmd-0.10-py2.7.egg/collective/recipe/cmd/__init__.py", line 39, in run_commands check_call('%s %s' % (shell, tmpfile), shell=True) File "/usr/lib64/python2.7/subprocess.py", line 542, in check_call raise CalledProcessError(retcode, cmd) CalledProcessError: Command 'sh /tmp/tmpTl6JgC/run' returned non-zero exit status 127 --- ** 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/1445764 Title: "The executable /usr/bin/python3.4 does not exist" error when Installling Mailman 3 on Centos 7 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1445764/+subscriptions From pskoli93 at gmail.com Sat Apr 18 14:27:01 2015 From: pskoli93 at gmail.com (Pavan Koli) Date: Sat, 18 Apr 2015 12:27:01 -0000 Subject: [Bug 1445764] Re: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 References: <20150418121916.32277.67461.malonedeb@gac.canonical.com> Message-ID: <20150418122702.13384.22182.launchpad@chaenomeles.canonical.com> ** Summary changed: - "The executable /usr/bin/python3.4 does not exist" error when Installling Mailman 3 on Centos 7 + "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1445764 Title: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1445764/+subscriptions From aurelien at bompard.org Sat Apr 18 16:10:09 2015 From: aurelien at bompard.org (=?utf-8?q?Aur=C3=A9lien_Bompard?=) Date: Sat, 18 Apr 2015 14:10:09 -0000 Subject: [Bug 1445764] Re: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 References: <20150418121916.32277.67461.malonedeb@gac.canonical.com> Message-ID: <20150418141009.13723.71570.malone@chaenomeles.canonical.com> Oh yeah sorry, the path to python3.4 was hardcoded. I fixed this an hour ago, sorry for not replying earlier but I was on a plane from PyCon. Please update your mailman-bundler 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/1445764 Title: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1445764/+subscriptions From 1445764 at bugs.launchpad.net Sat Apr 18 18:07:49 2015 From: 1445764 at bugs.launchpad.net (Barry Warsaw) Date: Sat, 18 Apr 2015 16:07:49 -0000 Subject: [Bug 1445764] Re: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 References: <20150418121916.32277.67461.malonedeb@gac.canonical.com> Message-ID: <20150418160750.13514.99006.launchpad@wampee.canonical.com> ** Changed in: mailman Status: New => 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/1445764 Title: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1445764/+subscriptions From 1445764 at bugs.launchpad.net Sat Apr 18 21:06:07 2015 From: 1445764 at bugs.launchpad.net (Danil Smirnov) Date: Sat, 18 Apr 2015 19:06:07 -0000 Subject: [Bug 1445764] Re: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 References: <20150418121916.32277.67461.malonedeb@gac.canonical.com> Message-ID: <20150418190607.13233.76910.malone@chaenomeles.canonical.com> Hi Aur?lien Bompard! Thank you for patching. Now this error does not occur. But I stil can't build the mailman with the error I reposted in the bottom of my bug report: --- (venv)[root at host mailman-bundler]# buildout Develop: '/usr/local/src/mailman-bundler/.' warning: no files found matching '*.in' under directory 'mailman_bundler' warning: no files found matching '*.in' under directory 'deployment' warning: no files found matching 'deployment/mailman-web.logrotate.conf' Updating mailman-web. Updating main. Installing mailman. Running virtualenv with interpreter /usr/local/bin/python3.4 Using base prefix '/usr/local' New python executable in /usr/local/src/mailman-bundler/venv-3.4/bin/python3.4 Not overwriting existing python script /usr/local/src/mailman-bundler/venv-3.4/bin/python (you must use /usr/local/src/mailman-bundler/venv-3.4/bin/python3.4) Failed to import the site module Traceback (most recent call last): File "/usr/local/src/mailman-bundler/venv-3.4/lib/python3.4/site.py", line 67, in import os File "/usr/local/src/mailman-bundler/venv-3.4/lib/python3.4/os.py", line 616, in from _collections_abc import MutableMapping ImportError: No module named '_collections_abc' ERROR: The executable /usr/local/src/mailman-bundler/venv-3.4/bin/python3.4 is not functioning ERROR: It thinks sys.prefix is '/usr/local/src/mailman-bundler' (should be '/usr/local/src/mailman-bundler/venv-3.4') ERROR: virtualenv is not compatible with this system or executable /tmp/tmpeMECwh/run: line 2: /usr/local/src/mailman-bundler/venv-3.4/bin/pip: ??? ?????? ????? ??? ???????? While: Installing mailman. An internal error occurred due to a bug in either zc.buildout or in a recipe being used: Traceback (most recent call last): File "/usr/local/src/venv/lib/python2.7/site-packages/zc/buildout/buildout.py", line 1946, in main getattr(buildout, command)(args) File "/usr/local/src/venv/lib/python2.7/site-packages/zc/buildout/buildout.py", line 626, in install installed_files = self[part]._call(recipe.install) File "/usr/local/src/venv/lib/python2.7/site-packages/zc/buildout/buildout.py", line 1370, in _call return f() File "/usr/local/src/mailman-bundler/eggs/collective.recipe.cmd-0.10-py2.7.egg/collective/recipe/cmd/__init__.py", line 56, in install self.execute() File "/usr/local/src/mailman-bundler/eggs/collective.recipe.cmd-0.10-py2.7.egg/collective/recipe/cmd/__init__.py", line 69, in execute run_commands(cmds, self.shell) File "/usr/local/src/mailman-bundler/eggs/collective.recipe.cmd-0.10-py2.7.egg/collective/recipe/cmd/__init__.py", line 39, in run_commands check_call('%s %s' % (shell, tmpfile), shell=True) File "/usr/lib64/python2.7/subprocess.py", line 542, in check_call raise CalledProcessError(retcode, cmd) CalledProcessError: Command 'sh /tmp/tmpeMECwh/run' returned non-zero exit status 127 --- Should I fill another bug report for this case? -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1445764 Title: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1445764/+subscriptions From aurelien at bompard.org Sat Apr 18 21:32:04 2015 From: aurelien at bompard.org (=?utf-8?q?Aur=C3=A9lien_Bompard?=) Date: Sat, 18 Apr 2015 19:32:04 -0000 Subject: [Bug 1445764] Re: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 References: <20150418121916.32277.67461.malonedeb@gac.canonical.com> Message-ID: <20150418193204.13657.29625.malone@chaenomeles.canonical.com> Hmm, it looks like there could be a problem with the version of Python 3.4 you compiled, see the lines starting with "ERROR:" and the ImportError. Could you be missing some devel libraries ? Does your distribution have a version of Python 3.4 that would be parallel- installable? -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1445764 Title: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1445764/+subscriptions From 1445764 at bugs.launchpad.net Sat Apr 18 21:34:02 2015 From: 1445764 at bugs.launchpad.net (Barry Warsaw) Date: Sat, 18 Apr 2015 19:34:02 -0000 Subject: [Bug 1445764] Re: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 References: <20150418121916.32277.67461.malonedeb@gac.canonical.com> Message-ID: <20150418193402.13260.75817.malone@chaenomeles.canonical.com> Everything worked for me on Ubuntu 15.04 -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1445764 Title: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1445764/+subscriptions From mark at msapiro.net Sat Apr 18 21:44:08 2015 From: mark at msapiro.net (Mark Sapiro) Date: Sat, 18 Apr 2015 19:44:08 -0000 Subject: [Bug 1445764] Re: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 References: <20150418121916.32277.67461.malonedeb@gac.canonical.com> Message-ID: <20150418194408.13921.6057.malone@chaenomeles.canonical.com> Please start over from the point of creating the first venv with a fresh branch of mailman-bundler and report the error if that doesn't 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/1445764 Title: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1445764/+subscriptions From 1445764 at bugs.launchpad.net Sat Apr 18 22:10:25 2015 From: 1445764 at bugs.launchpad.net (Danil Smirnov) Date: Sat, 18 Apr 2015 20:10:25 -0000 Subject: [Bug 1445764] Re: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 References: <20150418121916.32277.67461.malonedeb@gac.canonical.com> Message-ID: <20150418201025.16292.7632.malone@soybean.canonical.com> Aur?lien: >Could you be missing some devel libraries? I don't think so but I'm ready to check something yo want. >Does your distribution have a version of Python 3.4 that would be parallel-installable? I could not find any with "yum search python". As I reported, this is fresh new Centos 7 installation. Mark: I did everything you advice with the error posted above. Few more experiments: (venv)[root at host mailman-bundler]# ls -l /usr/local/src/mailman-bundler/venv-3.4/bin/python3.4 -rwxr-xr-x 1 root root 17544 apr 18 22:55 /usr/local/src/mailman-bundler/venv-3.4/bin/python3.4 (venv)[root at host mailman-bundler]# /usr/local/src/mailman-bundler/venv-3.4/bin/python3.4 Failed to import the site module Traceback (most recent call last): File "/usr/local/src/mailman-bundler/venv-3.4/lib/python3.4/site.py", line 67, in import os File "/usr/local/src/mailman-bundler/venv-3.4/lib/python3.4/os.py", line 616, in from _collections_abc import MutableMapping ImportError: No module named '_collections_abc' I have very poor knowing of Python and its environment. I'm unable to find what's wrong with the Python installation. I can provide to you any additional data if you request. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1445764 Title: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1445764/+subscriptions From 1445764 at bugs.launchpad.net Sat Apr 18 22:25:42 2015 From: 1445764 at bugs.launchpad.net (Danil Smirnov) Date: Sat, 18 Apr 2015 20:25:42 -0000 Subject: [Bug 1445764] Re: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 References: <20150418121916.32277.67461.malonedeb@gac.canonical.com> Message-ID: <20150418202542.16769.75685.malone@soybean.canonical.com> 2Barry: I don't think Ubuntu is primary distribution for the Mailman. It much more important to proof it's installable on Debian, Centos and others distributions, which common on web servers. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1445764 Title: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1445764/+subscriptions From 1445764 at bugs.launchpad.net Sat Apr 18 22:27:47 2015 From: 1445764 at bugs.launchpad.net (Danil Smirnov) Date: Sat, 18 Apr 2015 20:27:47 -0000 Subject: [Bug 1445764] Re: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 References: <20150418121916.32277.67461.malonedeb@gac.canonical.com> Message-ID: <20150418202747.13421.18589.malone@wampee.canonical.com> It's terrible that I can't correct typos and errors here -- sorry for them, it's almost Midnight here... -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1445764 Title: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1445764/+subscriptions From mark at msapiro.net Sat Apr 18 22:40:01 2015 From: mark at msapiro.net (Mark Sapiro) Date: Sat, 18 Apr 2015 20:40:01 -0000 Subject: [Bug 1445764] Re: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 References: <20150418121916.32277.67461.malonedeb@gac.canonical.com> Message-ID: <20150418204001.13590.83318.malone@chaenomeles.canonical.com> There is something wrong with your Python 3.4. What happens if you just do $ /usr/local/bin/python3.4 >>> import os >>> import _collections_abc and $ /usr/local/src/mailman-bundler/venv-3.4/lib/python3.4 >>> import os >>> import _collections_abc I suspect you will get ImportError on all of those which means your Python 3.4 install is broken. You need to have a working Python 3.4 that can successfully import os -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1445764 Title: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1445764/+subscriptions From 1445764 at bugs.launchpad.net Sat Apr 18 22:40:27 2015 From: 1445764 at bugs.launchpad.net (Barry Warsaw) Date: Sat, 18 Apr 2015 20:40:27 -0000 Subject: [Bug 1445764] Re: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 References: <20150418121916.32277.67461.malonedeb@gac.canonical.com> <20150418202542.16769.75685.malone@soybean.canonical.com> Message-ID: <20150418164027.4b4d287a@limelight.wooz.org> On Apr 18, 2015, at 08:25 PM, Danil Smirnov wrote: >2Barry: I don't think Ubuntu is primary distribution for the Mailman. It >much more important to proof it's installable on Debian, Centos and >others distributions, which common on web servers. Um, what? Ubuntu is a popular distribution for servers. We want Mailman to work on any modern POSIX platform, so that includes Debian, Ubuntu, Fedora, Centos, RedHat, OS X, and others. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1445764 Title: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1445764/+subscriptions From 1445764 at bugs.launchpad.net Sat Apr 18 22:54:55 2015 From: 1445764 at bugs.launchpad.net (Danil Smirnov) Date: Sat, 18 Apr 2015 20:54:55 -0000 Subject: [Bug 1445764] Re: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 References: <20150418121916.32277.67461.malonedeb@gac.canonical.com> Message-ID: <20150418205455.14185.62451.malone@wampee.canonical.com> Mark: [root at host ~]# /usr/local/bin/python3.4 Python 3.4.3 (default, Apr 17 2015, 18:24:27) [GCC 4.8.3 20140911 (Red Hat 4.8.3-9)] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import os >>> import _collections_abc >>> It's okay with all these commands - no error messages. But: /usr/local/src/mailman-bundler/venv-3.4/lib/python3.4 is a directory! [root at host ~]# ls /usr/local/src/mailman-bundler/venv-3.4/lib/python3.4 abc.py copy.py __future__.py lib-dynload orig-prefix.txt reprlib.py sre_compile.py tarfile.py warnings.py bisect.py copyreg.py genericpath.py linecache.py os.py re.py sre_constants.py tempfile.py weakref.py codecs.py encodings heapq.py locale.py posixpath.py shutil.py sre_parse.py tokenize.py _weakrefset.py collections fnmatch.py io.py no-global-site-packages.txt __pycache__ site-packages stat.py token.py config-3.4m functools.py keyword.py ntpath.py random.py site.py struct.py types.py -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1445764 Title: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1445764/+subscriptions From mark at msapiro.net Sat Apr 18 23:33:01 2015 From: mark at msapiro.net (Mark Sapiro) Date: Sat, 18 Apr 2015 21:33:01 -0000 Subject: [Bug 1445764] Re: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 References: <20150418121916.32277.67461.malonedeb@gac.canonical.com> Message-ID: <20150418213301.13822.95242.malone@chaenomeles.canonical.com> > /usr/local/src/mailman-bundler/venv-3.4/lib/python3.4 is a directory! Sorry, that should have been /usr/local/src/mailman-bundler/venv-3.4/bin/python3.4 but the fact that I don't see _collections_abc.py in the lib directory could be an issue unless it's in site-packages. Here's what mine looks like. $ ls -F mailman-bundler/venv-3.4/lib/python3.4 abc.py@ hmac.py@ rlcompleter.py@ base64.py@ importlib@ shutil.py@ bisect.py@ imp.py@ site-packages/ _bootlocale.py@ io.py@ site.py codecs.py@ keyword.py@ sre_compile.py@ collections@ lib-dynload@ sre_constants.py@ _collections_abc.py@ linecache.py@ sre_parse.py@ config-3.4m-x86_64-linux-gnu@ locale.py@ stat.py@ copy.py@ no-global-site-packages.txt struct.py@ copyreg.py@ ntpath.py@ tarfile.py@ distutils/ operator.py@ tempfile.py@ _dummy_thread.py@ orig-prefix.txt tokenize.py@ encodings@ os.py@ token.py@ fnmatch.py@ plat-x86_64-linux-gnu@ types.py@ functools.py@ posixpath.py@ warnings.py@ __future__.py@ __pycache__/ weakref.py@ genericpath.py@ random.py@ _weakrefset.py@ hashlib.py@ reprlib.py@ heapq.py@ re.py@ The ones with '@' are all symlinks to the corresponding /usr/lib/python3.4/ file. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1445764 Title: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1445764/+subscriptions From 1445764 at bugs.launchpad.net Sat Apr 18 23:47:51 2015 From: 1445764 at bugs.launchpad.net (Danil Smirnov) Date: Sat, 18 Apr 2015 21:47:51 -0000 Subject: [Bug 1445764] Re: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 References: <20150418121916.32277.67461.malonedeb@gac.canonical.com> Message-ID: <20150418214751.31936.74527.malone@gac.canonical.com> Mark, you are right (see below). I will investigate further tomorrow. [root at host ~]# /usr/local/src/mailman-bundler/venv-3.4/bin/python3.4 Failed to import the site module Traceback (most recent call last): File "/usr/local/src/mailman-bundler/venv-3.4/lib/python3.4/site.py", line 67, in import os File "/usr/local/src/mailman-bundler/venv-3.4/lib/python3.4/os.py", line 616, in from _collections_abc import MutableMapping ImportError: No module named '_collections_abc' [root at host ~]# /usr/local/src/mailman-bundler/venv-3.4/bin/python3.4 Failed to import the site module Traceback (most recent call last): File "/usr/local/src/mailman-bundler/venv-3.4/lib/python3.4/site.py", line 67, in import os File "/usr/local/src/mailman-bundler/venv-3.4/lib/python3.4/os.py", line 616, in from _collections_abc import MutableMapping ImportError: No module named '_collections_abc' -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1445764 Title: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1445764/+subscriptions From noreply at launchpad.net Sun Apr 19 03:26:23 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Sun, 19 Apr 2015 01:26:23 -0000 Subject: [Branch ~abompard/mailman-bundler/mailman-bundler] Rev 62: Add file logging to the devel config Message-ID: <20150419012623.5918.57313.launchpad@ackee.canonical.com> ------------------------------------------------------------ revno: 62 committer: Aur?lien Bompard branch nick: mailman-bundler timestamp: Sun 2015-04-19 03:26:06 +0200 message: Add file logging to the devel config modified: mailman_web/development.py mailman_web/production.py -- lp:mailman-bundler https://code.launchpad.net/~abompard/mailman-bundler/mailman-bundler Your team Mailman Coders is subscribed to branch lp:mailman-bundler. To unsubscribe from this branch go to https://code.launchpad.net/~abompard/mailman-bundler/mailman-bundler/+edit-subscription -------------- next part -------------- A non-text attachment was scrubbed... Name: revision-diff.txt Type: text/x-diff Size: 2039 bytes Desc: not available URL: From barry at canonical.com Sun Apr 19 13:55:20 2015 From: barry at canonical.com (Barry Warsaw) Date: Sun, 19 Apr 2015 11:55:20 -0000 Subject: [Merge] lp:~raj-abhilash1/mailman/bugfix into lp:mailman In-Reply-To: <20150416205530.11596.27668.launchpad@ackee.canonical.com> Message-ID: <20150419115519.32147.75360.codereview@gac.canonical.com> I'd like to merge this into trunk and create a release blocking bug for it. Then when Falcon releases 0.3 in the next day or two, we can verify that it fixes this problem and block the MM3 release. Can you resolve the conflict? -- https://code.launchpad.net/~raj-abhilash1/mailman/bugfix/+merge/256569 Your team Mailman Coders is requested to review the proposed merge of lp:~raj-abhilash1/mailman/bugfix into lp:mailman. From 1445764 at bugs.launchpad.net Sun Apr 19 15:44:34 2015 From: 1445764 at bugs.launchpad.net (Danil Smirnov) Date: Sun, 19 Apr 2015 13:44:34 -0000 Subject: [Bug 1445764] Re: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 References: <20150418121916.32277.67461.malonedeb@gac.canonical.com> Message-ID: <20150419134434.32348.32868.malone@gac.canonical.com> I have reinstalled Python 3.4.3, checked if everything is all right with its installation. I can see '_collections_abc.py' module in /usr/local/lib/python3.4 directory. But there is no such file in (venv)[root at host mailman-bundler]# ls -F venv-3.4/lib/python3.4 abc.py@ copy.py@ __future__.py@ lib-dynload@ orig-prefix.txt reprlib.py@ sre_compile.py@ tarfile.py@ warnings.py@ bisect.py@ copyreg.py@ genericpath.py@ linecache.py@ os.py@ re.py@ sre_constants.py@ tempfile.py@ weakref.py@ codecs.py@ encodings@ heapq.py@ locale.py@ posixpath.py@ shutil.py@ sre_parse.py@ tokenize.py@ _weakrefset.py@ collections@ fnmatch.py@ io.py@ no-global-site-packages.txt __pycache__/ site-packages/ stat.py@ token.py@ config-3.4m@ functools.py@ keyword.py@ ntpath.py@ random.py@ site.py struct.py@ types.py@ So, I think that the problem is somewhere in the process of 'venv-3.4' directory creation. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1445764 Title: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1445764/+subscriptions From mark at msapiro.net Sun Apr 19 18:18:41 2015 From: mark at msapiro.net (Mark Sapiro) Date: Sun, 19 Apr 2015 16:18:41 -0000 Subject: [Bug 1445764] Re: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 References: <20150418121916.32277.67461.malonedeb@gac.canonical.com> Message-ID: <20150419161841.13384.43348.malone@chaenomeles.canonical.com> I'm not sure why the buildout process is not installing a working python3.4 in mailman-bundler/venv-3.4/, but it isn't. I suggest the following: 1) remove all the symlinks you added. Ones mentioned in the thread starting at include: ln -s /usr/local/bin/python /usr/bin/python ln -s /usr/local/bin/python3.4 /usr/local/bin/python3 ln -s /usr/local/bin/python3.4 /usr/bin/python3.4 You may not have added all those and you may have added others, but remove all you added. 2) remove the venv and venv-3.4 directories from mailman-bundler/ 3) If your mailman-bundler is not at rev. 62, at least do a bzr pull to update it. Better still, remove mailman-bundler/ and start from the beginning. 4) if after running buildout you still don't have a working Python 3 in mailman-bundler/venv3-4, you can probably "fix" it by removing mailman- bundler/venv3-4/lib/python3.4 and replacing it with a symlink to /usr/local/lib/python3.4, but it's not clear to me that the prior symlinking is not somehow involved with the current issue so you should proceed with caution. The real issue here is why is buildout not installing a complete, working python3.4 in venv-3.4. What happens if you just do cd virtualenv -p python3.4 xxx ./xxx/bin/python -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1445764 Title: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1445764/+subscriptions From 1445764 at bugs.launchpad.net Sun Apr 19 18:53:41 2015 From: 1445764 at bugs.launchpad.net (Danil Smirnov) Date: Sun, 19 Apr 2015 16:53:41 -0000 Subject: [Bug 1445764] Re: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 References: <20150418121916.32277.67461.malonedeb@gac.canonical.com> Message-ID: <20150419165341.31776.81685.malone@gac.canonical.com> 1) All they were removed right after they did not help. 2) Removed several times with the whole mailman-bundler/ directory. 3) Did it all the time after pulling once. 4) I don't want to fix or work around, I can wait until we will understand what happening. I 'm going to run additional tests with another version of Centos tomorrow. Answer: [root at host ~]# cd [root at host ~]# virtualenv -p python3.4 xxx Running virtualenv with interpreter /usr/local/bin/python3.4 Using base prefix '/usr/local' New python executable in xxx/bin/python3.4 Also creating executable in xxx/bin/python Failed to import the site module Traceback (most recent call last): File "/root/xxx/lib/python3.4/site.py", line 67, in import os File "/root/xxx/lib/python3.4/os.py", line 616, in from _collections_abc import MutableMapping ImportError: No module named '_collections_abc' ERROR: The executable xxx/bin/python3.4 is not functioning ERROR: It thinks sys.prefix is '/root' (should be '/root/xxx') ERROR: virtualenv is not compatible with this system or executable [root at host ~]# ./xxx/bin/python Failed to import the site module Traceback (most recent call last): File "/root/xxx/lib/python3.4/site.py", line 67, in import os File "/root/xxx/lib/python3.4/os.py", line 616, in from _collections_abc import MutableMapping ImportError: No module named '_collections_abc' -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1445764 Title: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1445764/+subscriptions From mark at msapiro.net Sun Apr 19 20:07:13 2015 From: mark at msapiro.net (Mark Sapiro) Date: Sun, 19 Apr 2015 18:07:13 -0000 Subject: [Bug 1445764] Re: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 References: <20150418121916.32277.67461.malonedeb@gac.canonical.com> Message-ID: <20150419180713.14148.35425.malone@wampee.canonical.com> The last test result, indicates the problem is with your installed virtualenv. I.e. virtualenv, running standalone, outside of mailman- bundler and buildout, doesn't/can't install a working python3.4 in the virtual environment. I can see the same problem with python-virtualenv.noarch 1:1.7.2-2.el5 on CentOS 5 I was able to fix it by following the instructioins at to install setuptools 15.1 and then running easy-install virtualenv to install virtualenv 12.1.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/1445764 Title: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1445764/+subscriptions From maxking at asynchronous.in Mon Apr 20 03:54:36 2015 From: maxking at asynchronous.in (Abhilash Raj) Date: Mon, 20 Apr 2015 01:54:36 -0000 Subject: [Merge] lp:~raj-abhilash1/mailman/bugfix into lp:mailman In-Reply-To: <20150416205530.11596.27668.launchpad@ackee.canonical.com> Message-ID: <20150420015434.13548.50066.codereview@chaenomeles.canonical.com> I will do that asap! -- https://code.launchpad.net/~raj-abhilash1/mailman/bugfix/+merge/256569 Your team Mailman Coders is requested to review the proposed merge of lp:~raj-abhilash1/mailman/bugfix into lp:mailman. From 1445764 at bugs.launchpad.net Mon Apr 20 15:59:53 2015 From: 1445764 at bugs.launchpad.net (Danil Smirnov) Date: Mon, 20 Apr 2015 13:59:53 -0000 Subject: [Bug 1445764] Re: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 References: <20150418121916.32277.67461.malonedeb@gac.canonical.com> Message-ID: <20150420135953.13751.92568.malone@wampee.canonical.com> It is 1.10.1 version here on Centos 7. I have installed setuptools 15.1 but it can't help me to install 'virtualenv' newer than 1.10.1: [root at host ~]# easy_install virtualenv # note that correct spelling easy_install, not easy-install! Searching for virtualenv Best match: virtualenv 1.10.1 Adding virtualenv 1.10.1 to easy-install.pth file Using /usr/lib/python2.7/site-packages Processing dependencies for virtualenv Finished processing dependencies for virtualenv --- Did I miss something, Mark? -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1445764 Title: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1445764/+subscriptions From 1445764 at bugs.launchpad.net Mon Apr 20 16:25:29 2015 From: 1445764 at bugs.launchpad.net (Danil Smirnov) Date: Mon, 20 Apr 2015 14:25:29 -0000 Subject: [Bug 1445764] Re: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 References: <20150418121916.32277.67461.malonedeb@gac.canonical.com> Message-ID: <20150420142529.32074.92787.malone@gac.canonical.com> I have successfully installed Virtualenv 12.1.1 using this manual https://virtualenv.pypa.io/en/latest/installation.html and this source file: https://pypi.python.org/pypi/virtualenv/12.1.1#downloads $ curl -O https://pypi.python.org/packages/source/v/virtualenv/virtualenv-12.1.1.tar.gz $ tar xvfz virtualenv-12.1.1.tar.gz $ cd virtualenv-12.1.1 $ python setup.py install Now 'buildout' command completes successfully. I have no time to check if everything installed correct right now but I will do it later today. I think this virtualenv problem should be reflected in the installation manual. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1445764 Title: "The executable /usr/bin/python3.4 does not exist" error when Installing Mailman 3 on Centos 7 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1445764/+subscriptions From averkiev.d at gmail.com Tue Apr 21 16:54:00 2015 From: averkiev.d at gmail.com (Dmitry) Date: Tue, 21 Apr 2015 14:54:00 -0000 Subject: [Bug 1446711] [NEW] Postorius crashes on saving "Message Acceptance" settings. References: <20150421145400.16385.55479.malonedeb@soybean.canonical.com> Message-ID: <20150421145400.16385.55479.malonedeb@soybean.canonical.com> Public bug reported: Hello. I just installed maiman-bundler according to http://mailman-bundler.readthedocs.org/en/latest/ . When I trying to save settings at Lists -> "listname" -> Settings -> Message Acceptance, I got 500 Internal Server Error with such traceback: ERROR 2015-04-21 09:23:53,854 base 19674 -1217132864 Internal Server Error: /mailman3/lists/brian.lists.cloud-groups.com/settings/message_acceptance Traceback (most recent call last): File "/home/mailman/mailman-bundler/eggs/Django-1.7.7-py2.7.egg/django/core/handlers/base.py", line 111, in get_response response = wrapped_callback(request, *callback_args, **callback_kwargs) File "/home/mailman/mailman-bundler/eggs/postorius-1.0.0-py2.7.egg/postorius/auth/decorators.py", line 58, in wrapper return fn(*args, **kwargs) File "/home/mailman/mailman-bundler/eggs/postorius-1.0.0-py2.7.egg/postorius/views/list.py", line 787, in list_settings except HTTPError as e: UnboundLocalError: local variable 'HTTPError' referenced before assignment ERROR 2015-04-21 09:23:53,854 base 19674 -1217132864 Internal Server Error: /mailman3/lists/brian.lists.cloud-groups.com/settings/message_acceptance Traceback (most recent call last): File "/home/mailman/mailman-bundler/eggs/Django-1.7.7-py2.7.egg/django/core/handlers/base.py", line 111, in get_response response = wrapped_callback(request, *callback_args, **callback_kwargs) File "/home/mailman/mailman-bundler/eggs/postorius-1.0.0-py2.7.egg/postorius/auth/decorators.py", line 58, in wrapper return fn(*args, **kwargs) File "/home/mailman/mailman-bundler/eggs/postorius-1.0.0-py2.7.egg/postorius/views/list.py", line 787, in list_settings except HTTPError as e: UnboundLocalError: local variable 'HTTPError' referenced before assignment ERROR 2015-04-21 09:23:53,854 base 19674 -1217132864 Internal Server Error: /mailman3/lists/brian.lists.cloud-groups.com/settings/message_acceptance Traceback (most recent call last): File "/home/mailman/mailman-bundler/eggs/Django-1.7.7-py2.7.egg/django/core/handlers/base.py", line 111, in get_response response = wrapped_callback(request, *callback_args, **callback_kwargs) File "/home/mailman/mailman-bundler/eggs/postorius-1.0.0-py2.7.egg/postorius/auth/decorators.py", line 58, in wrapper return fn(*args, **kwargs) File "/home/mailman/mailman-bundler/eggs/postorius-1.0.0-py2.7.egg/postorius/views/list.py", line 787, in list_settings except HTTPError as e: UnboundLocalError: local variable 'HTTPError' referenced before assignment After reloading page I see that settings are saved. OS Vession: CentOS 6.5 Python versions (built from sources): 2.7.9 and 3.4.3 ** Affects: mailman-bundler Importance: Undecided Status: New -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman suite bundler. https://bugs.launchpad.net/bugs/1446711 Title: Postorius crashes on saving "Message Acceptance" settings. To manage notifications about this bug go to: https://bugs.launchpad.net/mailman-bundler/+bug/1446711/+subscriptions From noreply at launchpad.net Wed Apr 22 00:23:37 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Tue, 21 Apr 2015 22:23:37 -0000 Subject: [Merge] lp:~raj-abhilash1/mailman/bugfix into lp:mailman In-Reply-To: <20150416205530.11596.27668.launchpad@ackee.canonical.com> Message-ID: <20150421222336.21287.71281.launchpad@ackee.canonical.com> The proposal to merge lp:~raj-abhilash1/mailman/bugfix into lp:mailman has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~raj-abhilash1/mailman/bugfix/+merge/256569 -- Your team Mailman Coders is requested to review the proposed merge of lp:~raj-abhilash1/mailman/bugfix into lp:mailman. From 1446881 at bugs.launchpad.net Wed Apr 22 00:16:58 2015 From: 1446881 at bugs.launchpad.net (Barry Warsaw) Date: Tue, 21 Apr 2015 22:16:58 -0000 Subject: [Bug 1446881] [NEW] Require Falcon 0.3 References: <20150421221658.16455.85553.malonedeb@soybean.canonical.com> Message-ID: <20150421221658.16455.85553.malonedeb@soybean.canonical.com> Public bug reported: Falcon 0.2 contains a bug in parsing fields with commas and newlines. We will block the Mailman 3 final release on the release of Falcon 0.3 to PyPI. ** Affects: mailman Importance: Critical Assignee: Barry Warsaw (barry) Status: Triaged ** Tags: mailman3 mailman3-suite-blocker ** Branch linked: lp:~raj-abhilash1/mailman/bugfix ** Tags added: mailman3-suite-blocker -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1446881 Title: Require Falcon 0.3 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1446881/+subscriptions From 1095552 at bugs.launchpad.net Wed Apr 22 00:20:22 2015 From: 1095552 at bugs.launchpad.net (Barry Warsaw) Date: Tue, 21 Apr 2015 22:20:22 -0000 Subject: [Bug 1095552] Re: Subscribe/unsubscribe policy for lists References: <20130103082910.18225.11931.malonedeb@gac.canonical.com> Message-ID: <20150421222023.13452.54677.launchpad@wampee.canonical.com> ** Changed in: mailman Milestone: None => 3.0.0 ** Changed in: mailman Assignee: (unassigned) => Barry Warsaw (barry) ** Changed in: mailman Importance: Undecided => High ** Changed in: mailman Status: New => 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/1095552 Title: Subscribe/unsubscribe policy for lists To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1095552/+subscriptions From 1435941 at bugs.launchpad.net Wed Apr 22 00:20:51 2015 From: 1435941 at bugs.launchpad.net (Barry Warsaw) Date: Tue, 21 Apr 2015 22:20:51 -0000 Subject: [Bug 1435941] Re: Postgresql support is broken References: <20150324155017.7787.99641.malonedeb@chaenomeles.canonical.com> Message-ID: <20150421222052.14106.35442.launchpad@wampee.canonical.com> ** Changed in: mailman Milestone: None => 3.0.0 ** Changed in: mailman Importance: Undecided => High ** Changed in: mailman Status: New => Triaged -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1435941 Title: Postgresql support is broken To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1435941/+subscriptions From 1435941 at bugs.launchpad.net Wed Apr 22 02:11:26 2015 From: 1435941 at bugs.launchpad.net (Barry Warsaw) Date: Wed, 22 Apr 2015 00:11:26 -0000 Subject: [Bug 1435941] Re: Postgresql support is broken References: <20150324155017.7787.99641.malonedeb@chaenomeles.canonical.com> Message-ID: <20150422001127.13927.85235.malone@wampee.canonical.com> Ug. Lots of pg failures :( ** Changed in: mailman Status: Triaged => Confirmed ** Changed in: mailman Importance: High => Critical -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1435941 Title: Postgresql support is broken To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1435941/+subscriptions From barry at canonical.com Wed Apr 22 03:54:13 2015 From: barry at canonical.com (Barry Warsaw) Date: Wed, 22 Apr 2015 01:54:13 -0000 Subject: [Merge] lp:~barry/mailman/lp1435941 into lp:mailman Message-ID: <20150422015411.16783.49116.launchpad@ackee.canonical.com> The proposal to merge lp:~barry/mailman/lp1435941 into lp:mailman has been updated. Status: Needs review => Work in progress For more details, see: https://code.launchpad.net/~barry/mailman/lp1435941/+merge/257022 -- Your team Mailman Coders is requested to review the proposed merge of lp:~barry/mailman/lp1435941 into lp:mailman. From barry at canonical.com Wed Apr 22 03:55:31 2015 From: barry at canonical.com (Barry Warsaw) Date: Wed, 22 Apr 2015 01:55:31 -0000 Subject: [Merge] lp:~barry/mailman/lp1435941 into lp:mailman In-Reply-To: <20150422015411.16783.49116.launchpad@ackee.canonical.com> Message-ID: <20150422015528.15699.72778.launchpad@ackee.canonical.com> Barry Warsaw has proposed merging lp:~barry/mailman/lp1435941 into lp:mailman. Requested reviews: Mailman Coders (mailman-coders) Related bugs: Bug #1435941 in GNU Mailman: "Postgresql support is broken" https://bugs.launchpad.net/mailman/+bug/1435941 For more details, see: https://code.launchpad.net/~barry/mailman/lp1435941/+merge/257022 Try to make the test suite run under PostgreSQL -- Your team Mailman Coders is requested to review the proposed merge of lp:~barry/mailman/lp1435941 into lp:mailman. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 2918 bytes Desc: not available URL: From 1435941 at bugs.launchpad.net Wed Apr 22 03:52:58 2015 From: 1435941 at bugs.launchpad.net (Barry Warsaw) Date: Wed, 22 Apr 2015 01:52:58 -0000 Subject: [Bug 1435941] Re: Postgresql support is broken References: <20150324155017.7787.99641.malonedeb@chaenomeles.canonical.com> Message-ID: <20150422015258.13415.6112.malone@chaenomeles.canonical.com> Try running the following: $ MAILMAN_EXTRA_TESTING_CFG=/home/barry/projects/mailman/postgres.cfg tox -e pg where you replace the path to the postgres.cfg with one of your own as described in src/mailman/docs/START.rst Pretty quickly we hit an exception: ====================================================================== ERROR: LayerSuite ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/barry/projects/mailman/trunk/.tox/pg/lib/python3.4/site-packages/sqlalchemy/engine/base.py", line 1139, in _execute_context context) File "/home/barry/projects/mailman/trunk/.tox/pg/lib/python3.4/site-packages/sqlalchemy/engine/default.py", line 442, in do_execute cursor.execute(statement, parameters) psycopg2.ProgrammingError: column "id" does not exist LINE 1: ...LECT setval('"domain_owner_id_seq"', coalesce(max("id"), 1), ^ The above exception was the direct cause of the following exception: Traceback (most recent call last): File "/home/barry/projects/mailman/trunk/src/mailman/testing/layers.py", line 207, in testTearDown reset_the_world() File "/home/barry/projects/mailman/trunk/src/mailman/testing/helpers.py", line 476, in reset_the_world config.db._reset() File "/home/barry/projects/mailman/trunk/src/mailman/database/factory.py", line 123, in _reset self._post_reset(self.store) File "/home/barry/projects/mailman/trunk/src/mailman/database/postgresql.py", line 49, in _post_reset """.format(table)) File "/home/barry/projects/mailman/trunk/.tox/pg/lib/python3.4/site-packages/sqlalchemy/orm/session.py", line 1023, in execute bind, close_with_result=True).execute(clause, params or {}) File "/home/barry/projects/mailman/trunk/.tox/pg/lib/python3.4/site-packages/sqlalchemy/engine/base.py", line 914, in execute return meth(self, multiparams, params) File "/home/barry/projects/mailman/trunk/.tox/pg/lib/python3.4/site-packages/sqlalchemy/sql/elements.py", line 323, in _execute_on_connection return connection._execute_clauseelement(self, multiparams, params) File "/home/barry/projects/mailman/trunk/.tox/pg/lib/python3.4/site-packages/sqlalchemy/engine/base.py", line 1010, in _execute_clauseelement compiled_sql, distilled_params File "/home/barry/projects/mailman/trunk/.tox/pg/lib/python3.4/site-packages/sqlalchemy/engine/base.py", line 1146, in _execute_context context) File "/home/barry/projects/mailman/trunk/.tox/pg/lib/python3.4/site-packages/sqlalchemy/engine/base.py", line 1332, in _handle_dbapi_exception exc_info File "/home/barry/projects/mailman/trunk/.tox/pg/lib/python3.4/site-packages/sqlalchemy/util/compat.py", line 188, in raise_from_cause reraise(type(exception), exception, tb=exc_tb, cause=exc_value) File "/home/barry/projects/mailman/trunk/.tox/pg/lib/python3.4/site-packages/sqlalchemy/util/compat.py", line 181, in reraise raise value.with_traceback(tb) File "/home/barry/projects/mailman/trunk/.tox/pg/lib/python3.4/site-packages/sqlalchemy/engine/base.py", line 1139, in _execute_context context) File "/home/barry/projects/mailman/trunk/.tox/pg/lib/python3.4/site-packages/sqlalchemy/engine/default.py", line 442, in do_execute cursor.execute(statement, parameters) sqlalchemy.exc.ProgrammingError: (psycopg2.ProgrammingError) column "id" does not exist LINE 1: ...LECT setval('"domain_owner_id_seq"', coalesce(max("id"), 1), ^ [SQL: ' SELECT setval(\'"domain_owner_id_seq"\', coalesce(max("id"), 1),\n max("id") IS NOT null)\n FROM "domain_owner";\n '] The domain_owner table does not have an id column. The workflowstate table doesn't either, but adding it to the latter causes other problems. Clearly we are not ready for PG. ** Branch linked: lp:~barry/mailman/lp1435941 -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1435941 Title: Postgresql support is broken To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1435941/+subscriptions From aurelien at bompard.org Wed Apr 22 15:38:27 2015 From: aurelien at bompard.org (=?utf-8?q?Aur=C3=A9lien_Bompard?=) Date: Wed, 22 Apr 2015 13:38:27 -0000 Subject: [Merge] lp:~abompard/mailman/lp1435941 into lp:mailman Message-ID: <20150422133823.8966.34971.launchpad@ackee.canonical.com> Aur?lien Bompard has proposed merging lp:~abompard/mailman/lp1435941 into lp:mailman. Requested reviews: Mailman Coders (mailman-coders) Related bugs: Bug #1435941 in GNU Mailman: "Postgresql support is broken" https://bugs.launchpad.net/mailman/+bug/1435941 For more details, see: https://code.launchpad.net/~abompard/mailman/lp1435941/+merge/257090 Here's how I think we should fix bug #1435941. -- Your team Mailman Coders is requested to review the proposed merge of lp:~abompard/mailman/lp1435941 into lp:mailman. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 4968 bytes Desc: not available URL: From aurelien at bompard.org Wed Apr 22 15:38:41 2015 From: aurelien at bompard.org (=?utf-8?q?Aur=C3=A9lien_Bompard?=) Date: Wed, 22 Apr 2015 13:38:41 -0000 Subject: [Bug 1435941] Re: Postgresql support is broken References: <20150324155017.7787.99641.malonedeb@chaenomeles.canonical.com> Message-ID: <20150422133842.13927.82563.malone@wampee.canonical.com> Alright I just linked to a branch with 4 commits fixing all the PostgreSQL issues. Please review, I may have left print statements in the code... ;-) ** Branch linked: lp:~abompard/mailman/lp1435941 -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1435941 Title: Postgresql support is broken To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1435941/+subscriptions From 1435941 at bugs.launchpad.net Wed Apr 22 15:56:13 2015 From: 1435941 at bugs.launchpad.net (Barry Warsaw) Date: Wed, 22 Apr 2015 13:56:13 -0000 Subject: [Bug 1435941] Re: Postgresql support is broken References: <20150324155017.7787.99641.malonedeb@chaenomeles.canonical.com> Message-ID: <20150422135613.13652.43992.malone@wampee.canonical.com> Thanks! Looking over the diff I think I understand all the changes. I'm running the test suite now for both pg and sqlite. The one change I don't understand is to the importer code. Why did you choose to do it this way instead of the old way? -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1435941 Title: Postgresql support is broken To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1435941/+subscriptions From 1435941 at bugs.launchpad.net Wed Apr 22 16:28:31 2015 From: 1435941 at bugs.launchpad.net (Barry Warsaw) Date: Wed, 22 Apr 2015 14:28:31 -0000 Subject: [Bug 1435941] Re: Postgresql support is broken References: <20150324155017.7787.99641.malonedeb@chaenomeles.canonical.com> Message-ID: <20150422142832.31803.34467.launchpad@gac.canonical.com> ** Changed in: mailman Assignee: (unassigned) => Aur?lien Bompard (abompard) ** 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/1435941 Title: Postgresql support is broken To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1435941/+subscriptions From mark at msapiro.net Thu Apr 23 06:39:32 2015 From: mark at msapiro.net (Mark Sapiro) Date: Thu, 23 Apr 2015 04:39:32 -0000 Subject: [Bug 1447445] [NEW] Web subscribe can fail in cases of load balancers or other devices. References: <20150423043932.26920.60572.malonedeb@gac.canonical.com> Message-ID: <20150423043932.26920.60572.malonedeb@gac.canonical.com> Public bug reported: The fix for (LP: #1082746) implemented a SUBSCRIBE_FORM_SECRET feature. If this is enabled by a site, the subscribe form on the listinfo page contains a hidden input field which includes a hash of various data including the IP address that the GET of the listinfo came from. Upon submission of the form, this hash is recomputed using the IP address that the POST of the form came from, and if the hashes don't match, the subscribe fails. This can cause legitimate subscribes to fail if the user is connected via a load balancer or other device which submits http(s) requests using a possibly different IP for each request. ** Affects: mailman Importance: Medium 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/1447445 Title: Web subscribe can fail in cases of load balancers or other devices. To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1447445/+subscriptions From pskoli93 at gmail.com Thu Apr 23 14:15:18 2015 From: pskoli93 at gmail.com (Pavan Koli) Date: Thu, 23 Apr 2015 12:15:18 -0000 Subject: [Bug 1422757] Re: offer a CSV of current subscribers References: <20150217145557.20821.80441.malonedeb@gac.canonical.com> Message-ID: <20150423121519.25451.77371.launchpad@gac.canonical.com> ** Changed in: postorius Status: In Progress => Fix Committed -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1422757 Title: offer a CSV of current subscribers To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1422757/+subscriptions From 1414154 at bugs.launchpad.net Thu Apr 23 22:04:17 2015 From: 1414154 at bugs.launchpad.net (Barry Warsaw) Date: Thu, 23 Apr 2015 20:04:17 -0000 Subject: [Bug 1414154] Re: switch to external translation system References: <20150123203254.612.75563.malonedeb@chaenomeles.canonical.com> <20150410194251.26637.20807.malone@gac.canonical.com> Message-ID: <20150423160417.49d99a03@limelight.wooz.org> On Apr 10, 2015, at 07:42 PM, Aur?lien Bompard wrote: >I would like to mention the existence of Zanata >which is 100% Free software. Could we use that? At least the license looks pretty decent, being GPL'd. I've just signed up and will try to create a Mailman project once I get the confirmation email. Then we can at least play with it and see if it'll do the trick for us. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1414154 Title: switch to external translation system To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1414154/+subscriptions From 1446881 at bugs.launchpad.net Fri Apr 24 00:06:25 2015 From: 1446881 at bugs.launchpad.net (Barry Warsaw) Date: Thu, 23 Apr 2015 22:06:25 -0000 Subject: [Bug 1446881] Re: Require Falcon 0.3 References: <20150421221658.16455.85553.malonedeb@soybean.canonical.com> Message-ID: <20150423220625.27883.80667.malone@gac.canonical.com> As part of this blocking bug, our internal hack needs to either be ported to Falcon's new pluggable routers, and/or it needs to handle the new internal APIs. The former is preferred, but that would prohibit compatibility with Falcon 0.2. Do we want to keep backward compatibility with Falcon 0.2? -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1446881 Title: Require Falcon 0.3 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1446881/+subscriptions From 1447845 at bugs.launchpad.net Fri Apr 24 01:26:26 2015 From: 1447845 at bugs.launchpad.net (Barry Warsaw) Date: Thu, 23 Apr 2015 23:26:26 -0000 Subject: [Bug 1447845] [NEW] Port to the Falcon 0.3 routing architecture References: <20150423232626.13892.19931.malonedeb@chaenomeles.canonical.com> Message-ID: <20150423232626.13892.19931.malonedeb@chaenomeles.canonical.com> Public bug reported: In Mailman 3.0 we're still using a hacky subclass of falcon.API to integrate with Falcon 0.3. This works fine for now, but with Falcon's new pluggable routing architecture, there's a better way: http://falcon.readthedocs.org/en/latest/api/routing.html#routing It's too disruptive this close to the MM3.0 release to port our Falcon integration to this API, but we'll do it early in the MM3.1 development cycle. ** Affects: mailman Importance: High Assignee: Barry Warsaw (barry) 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/1447845 Title: Port to the Falcon 0.3 routing architecture To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1447845/+subscriptions From 1446881 at bugs.launchpad.net Fri Apr 24 01:26:56 2015 From: 1446881 at bugs.launchpad.net (Barry Warsaw) Date: Thu, 23 Apr 2015 23:26:56 -0000 Subject: [Bug 1446881] Re: Require Falcon 0.3 References: <20150421221658.16455.85553.malonedeb@soybean.canonical.com> Message-ID: <20150423232656.16862.14956.malone@soybean.canonical.com> We'll do the port to the new Falcon APIs in MM 3.1. See LP: #1447845 ** Changed in: mailman Status: Triaged => 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/1446881 Title: Require Falcon 0.3 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1446881/+subscriptions From 1446881 at bugs.launchpad.net Fri Apr 24 01:41:43 2015 From: 1446881 at bugs.launchpad.net (Barry Warsaw) Date: Thu, 23 Apr 2015 23:41:43 -0000 Subject: [Bug 1446881] Re: Require Falcon 0.3 References: <20150421221658.16455.85553.malonedeb@soybean.canonical.com> Message-ID: <20150423234144.13855.81212.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/1446881 Title: Require Falcon 0.3 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1446881/+subscriptions From 1447445 at bugs.launchpad.net Fri Apr 24 02:49:34 2015 From: 1447445 at bugs.launchpad.net (Launchpad Bug Tracker) Date: Fri, 24 Apr 2015 00:49:34 -0000 Subject: [Bug 1447445] Re: Web subscribe can fail in cases of load balancers or other devices. References: <20150423043932.26920.60572.malonedeb@gac.canonical.com> Message-ID: <20150424004936.32371.22606.launchpad@ackee.canonical.com> ** 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/1447445 Title: Web subscribe can fail in cases of load balancers or other devices. To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1447445/+subscriptions From mark at msapiro.net Fri Apr 24 02:55:59 2015 From: mark at msapiro.net (Mark Sapiro) Date: Fri, 24 Apr 2015 00:55:59 -0000 Subject: [Bug 1447445] Re: Web subscribe can fail in cases of load balancers or other devices. References: <20150423043932.26920.60572.malonedeb@gac.canonical.com> Message-ID: <20150424005559.13892.73840.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/1447445 Title: Web subscribe can fail in cases of load balancers or other devices. To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1447445/+subscriptions From pskoli93 at gmail.com Sat Apr 25 10:33:22 2015 From: pskoli93 at gmail.com (Pavan Koli) Date: Sat, 25 Apr 2015 08:33:22 -0000 Subject: [Merge] lp:~pskoli93/postorius/Add-a-member into lp:postorius Message-ID: <20150425083322.23984.61802.launchpad@ackee.canonical.com> Pavan Koli has proposed merging lp:~pskoli93/postorius/Add-a-member into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) Related bugs: Bug #1444699 in Postorius: "I can't add a single member (non-owner, non-moderator) from the Members page." https://bugs.launchpad.net/postorius/+bug/1444699 For more details, see: https://code.launchpad.net/~pskoli93/postorius/Add-a-member/+merge/257456 Option to add a single member was previously missing as pointed in the bug report, that option has been now added. -- Your team Mailman Coders is requested to review the proposed merge of lp:~pskoli93/postorius/Add-a-member into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 3946 bytes Desc: not available URL: From pskoli93 at gmail.com Sat Apr 25 10:30:06 2015 From: pskoli93 at gmail.com (Pavan Koli) Date: Sat, 25 Apr 2015 08:30:06 -0000 Subject: [Bug 1444699] Re: I can't add a single member (non-owner, non-moderator) from the Members page. References: <20150415210607.11689.15134.malonedeb@wampee.canonical.com> Message-ID: <20150425083006.23534.29614.launchpad@wampee.canonical.com> ** Branch linked: lp:~pskoli93/postorius/Add-a-member -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1444699 Title: I can't add a single member (non-owner, non-moderator) from the Members page. To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1444699/+subscriptions From pskoli93 at gmail.com Sat Apr 25 11:42:22 2015 From: pskoli93 at gmail.com (Pavan Koli) Date: Sat, 25 Apr 2015 09:42:22 -0000 Subject: [Merge] lp:~pskoli93/postorius/Redirection-Fixes into lp:postorius Message-ID: <20150425094222.8957.65253.launchpad@ackee.canonical.com> Pavan Koli has proposed merging lp:~pskoli93/postorius/Redirection-Fixes into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) For more details, see: https://code.launchpad.net/~pskoli93/postorius/Redirection-Fixes/+merge/257457 There are some redirection issues during unsubscription, suppose we want to unsubscribe a member if we click on unsubscribe button present on the list_members page then we are redirected to list_summary page instead we should be redirected to the list_members page. So we have to check the email if it is equal to request.user.email, then we should redirect to list_summary page else redirect to list_members page. -- Your team Mailman Coders is requested to review the proposed merge of lp:~pskoli93/postorius/Redirection-Fixes into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 659 bytes Desc: not available URL: From pskoli93 at gmail.com Sat Apr 25 11:49:19 2015 From: pskoli93 at gmail.com (Pavan Koli) Date: Sat, 25 Apr 2015 09:49:19 -0000 Subject: [Bug 1444080] Re: 'browserid' is not a valid tag library: ImportError raised loading django_browserid.templatetags.browserid: cannot import name generic_tag_compiler References: <20150414172134.8550.80681.malonedeb@chaenomeles.canonical.com> Message-ID: <20150425094919.13548.81475.malone@chaenomeles.canonical.com> I am not sure but the issue seems to be related with Django 1.8, I found a way around it by installing Django 1.7.7, just go to postorius/setup.py Line 42 replace 'django>=1.6' with 'django<1.8'. Then go to terminal and cd to postorius folder and type python setup.py develop Hopefully this should resolve the issue. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1444080 Title: 'browserid' is not a valid tag library: ImportError raised loading django_browserid.templatetags.browserid: cannot import name generic_tag_compiler To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1444080/+subscriptions From pskoli93 at gmail.com Sat Apr 25 15:27:22 2015 From: pskoli93 at gmail.com (Pavan Koli) Date: Sat, 25 Apr 2015 13:27:22 -0000 Subject: [Merge] lp:~pskoli93/postorius/Helptext-Fixes into lp:postorius Message-ID: <20150425132722.3622.55453.launchpad@ackee.canonical.com> Pavan Koli has proposed merging lp:~pskoli93/postorius/Helptext-Fixes into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) For more details, see: https://code.launchpad.net/~pskoli93/postorius/Helptext-Fixes/+merge/257460 If we go to a list settings page and click on the question mark to open the more info tab, a new tab opens with an error that ListSettings is not defined globally. Initially a ListSettings form was there but now different forms have been created for different list tasks like ListIdentityForm, ListAutomaticResponseForm etc. In all these forms if a user clicks on more info tab the 'formid' is equal to 'list_settings' and every form has the same 'formid', so there is no clear way to identify for which forms' option the more info is sought. The solution to this is that a separate list(Python list) has been created for the separate forms with the 'helpid' stored in these lists(Python list). Now if a user clicks on more info tab we check which list(Python list) it corresponds to, by comparing the 'helpid', and then loading the appropriate help text from the appropriate form. -- Your team Mailman Coders is requested to review the proposed merge of lp:~pskoli93/postorius/Helptext-Fixes into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 2300 bytes Desc: not available URL: From 1429086 at bugs.launchpad.net Sat Apr 25 19:11:26 2015 From: 1429086 at bugs.launchpad.net (Samuel Cantero) Date: Sat, 25 Apr 2015 17:11:26 -0000 Subject: [Bug 1429086] Re: Key error in mailman settings page References: <20150306112152.12161.3296.malonedeb@gac.canonical.com> Message-ID: <20150425171126.27883.82863.malone@gac.canonical.com> Hi, I am still having problem with this bug. I have installed the last version of every package from the ubuntu 14.04 repositories. The packages versions are: mailman 3.0rc1, mailmanclient 1.0.0, postorius 1.0.0. I am using Django 1.7. Greetings, -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1429086 Title: Key error in mailman settings page To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1429086/+subscriptions From 1429086 at bugs.launchpad.net Sun Apr 26 08:36:36 2015 From: 1429086 at bugs.launchpad.net (Florian Fuchs) Date: Sun, 26 Apr 2015 06:36:36 -0000 Subject: [Bug 1429086] Re: Key error in mailman settings page References: <20150306112152.12161.3296.malonedeb@gac.canonical.com> Message-ID: <20150426063636.16261.75666.malone@soybean.canonical.com> Hi Samuel, the Postorius version you use shouldn't produce that error. So here are some questions to help us find out where the problem is: - How did you install the packages (Using pip? Downloading the tarballs from launchpad? Branching the repos with bzr? Using the mailman-bundler?) - Did you make any updates in between? If so, did you restart the server after updating? - Have you installed the packages in a virtualenv? If so, is that virtualenv active? Florian -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1429086 Title: Key error in mailman settings page To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1429086/+subscriptions From zack.piper123 at gmail.com Sun Apr 26 21:18:51 2015 From: zack.piper123 at gmail.com (Zack Piper) Date: Sun, 26 Apr 2015 19:18:51 -0000 Subject: [Bug 1444080] Re: 'browserid' is not a valid tag library: ImportError raised loading django_browserid.templatetags.browserid: cannot import name generic_tag_compiler References: <20150414172134.8550.80681.malonedeb@chaenomeles.canonical.com> <20150425094919.13548.81475.malone@chaenomeles.canonical.com> Message-ID: <18254015-0876-4080-91C3-409DB91CACD3@gmail.com> That works, thanks! On 25 April 2015 10:49:19 BST, Pavan Koli wrote: >I am not sure but the issue seems to be related with Django 1.8, I >found a way around it by installing Django 1.7.7, just go to >postorius/setup.py >Line 42 replace 'django>=1.6' with 'django<1.8'. >Then go to terminal and cd to postorius folder and type >python setup.py develop >Hopefully this should resolve the issue. > >-- >You received this bug notification because you are subscribed to the >bug >report. >https://bugs.launchpad.net/bugs/1444080 > >Title: > 'browserid' is not a valid tag library: ImportError raised loading > django_browserid.templatetags.browserid: cannot import name > generic_tag_compiler > >Status in The New Mailman Web UI: > New > >Bug description: > I get this error when trying to navigate to the login page > (http://lists.apertron.net/archives/accounts/login/?next=/archives/) > > Full stacktrace can be found at: http://lists.apertron.net > > I have located the browserid file, here is the contents: > > ``` > from django import template > > from django_browserid import helpers > > > register = template.Library() > > > @register.simple_tag > def browserid_info(**kwargs): > return helpers.browserid_info(**kwargs) > > > @register.simple_tag > def browserid_login(**kwargs): > return helpers.browserid_login(**kwargs) > > > @register.simple_tag > def browserid_logout(**kwargs): > return helpers.browserid_logout(**kwargs) > > > @register.simple_tag > def browserid_js(**kwargs): > return helpers.browserid_js(**kwargs) > > @register.simple_tag > def browserid_css(**kwargs): > return helpers.browserid_css(**kwargs) > > ``` > > Sorry if this is in the wrong place. > > Thanks! > >To manage notifications about this bug go to: >https://bugs.launchpad.net/postorius/+bug/1444080/+subscriptions -- Sent from my Android device with K-9 Mail. Please excuse my brevity. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1444080 Title: 'browserid' is not a valid tag library: ImportError raised loading django_browserid.templatetags.browserid: cannot import name generic_tag_compiler To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1444080/+subscriptions From aurelien at bompard.org Mon Apr 27 14:00:43 2015 From: aurelien at bompard.org (=?utf-8?q?Aur=C3=A9lien_Bompard?=) Date: Mon, 27 Apr 2015 12:00:43 -0000 Subject: [Merge] lp:~abompard/postorius/django16 into lp:postorius Message-ID: <20150427120042.27411.4034.launchpad@ackee.canonical.com> Aur?lien Bompard has proposed merging lp:~abompard/postorius/django16 into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) For more details, see: https://code.launchpad.net/~abompard/postorius/django16/+merge/257517 Very simple fix for Django 1.6 compatibility (found because the tests failed). -- Your team Mailman Coders is requested to review the proposed merge of lp:~abompard/postorius/django16 into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 517 bytes Desc: not available URL: From noreply at launchpad.net Mon Apr 27 14:46:04 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Mon, 27 Apr 2015 12:46:04 -0000 Subject: [Merge] lp:~abompard/postorius/django16 into lp:postorius In-Reply-To: <20150427120042.27411.4034.launchpad@ackee.canonical.com> Message-ID: <20150427124603.19032.54669.launchpad@ackee.canonical.com> The proposal to merge lp:~abompard/postorius/django16 into lp:postorius has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~abompard/postorius/django16/+merge/257517 -- Your team Mailman Coders is requested to review the proposed merge of lp:~abompard/postorius/django16 into lp:postorius. From f at florianfuchs.com Mon Apr 27 14:46:31 2015 From: f at florianfuchs.com (Florian Fuchs) Date: Mon, 27 Apr 2015 12:46:31 -0000 Subject: [Merge] lp:~abompard/postorius/django16 into lp:postorius In-Reply-To: <20150427120042.27411.4034.launchpad@ackee.canonical.com> Message-ID: <20150427124631.17177.41315.codereview@gac.canonical.com> Review: Approve Hi Aur?lien, thanks for the fix! Merged. Florian -- https://code.launchpad.net/~abompard/postorius/django16/+merge/257517 Your team Mailman Coders is subscribed to branch lp:postorius. From maxking at asynchronous.in Mon Apr 27 21:29:25 2015 From: maxking at asynchronous.in (Abhilash Raj) Date: Mon, 27 Apr 2015 19:29:25 -0000 Subject: [Merge] lp:~raj-abhilash1/mailman/bugfix into lp:mailman Message-ID: <20150427192924.15284.52027.launchpad@ackee.canonical.com> Abhilash Raj has proposed merging lp:~raj-abhilash1/mailman/bugfix into lp:mailman. Requested reviews: Mailman Coders (mailman-coders) Related bugs: Bug #1446881 in GNU Mailman: "Require Falcon 0.3" https://bugs.launchpad.net/mailman/+bug/1446881 For more details, see: https://code.launchpad.net/~raj-abhilash1/mailman/bugfix/+merge/257569 Set a minimum falcon version to use the 0.3rc1 release till a stable release comes out. -- Your team Mailman Coders is requested to review the proposed merge of lp:~raj-abhilash1/mailman/bugfix into lp:mailman. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 308 bytes Desc: not available URL: From noreply at launchpad.net Mon Apr 27 21:49:48 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Mon, 27 Apr 2015 19:49:48 -0000 Subject: [Merge] lp:~raj-abhilash1/mailman/bugfix into lp:mailman In-Reply-To: <20150427192924.15284.52027.launchpad@ackee.canonical.com> Message-ID: <20150427194945.19031.54123.launchpad@ackee.canonical.com> The proposal to merge lp:~raj-abhilash1/mailman/bugfix into lp:mailman has been updated. Status: Needs review => Merged For more details, see: https://code.launchpad.net/~raj-abhilash1/mailman/bugfix/+merge/257569 -- Your team Mailman Coders is requested to review the proposed merge of lp:~raj-abhilash1/mailman/bugfix into lp:mailman. From 1095552 at bugs.launchpad.net Tue Apr 28 17:40:00 2015 From: 1095552 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 15:40:00 -0000 Subject: [Bug 1095552] Re: Subscribe/unsubscribe policy for lists References: <20130103082910.18225.11931.malonedeb@gac.canonical.com> Message-ID: <20150428154001.22938.27938.launchpad@soybean.canonical.com> ** Changed in: postorius 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/1095552 Title: Subscribe/unsubscribe policy for lists To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1095552/+subscriptions From 1066184 at bugs.launchpad.net Tue Apr 28 17:39:00 2015 From: 1066184 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 15:39:00 -0000 Subject: [Bug 1066184] Re: Users cannot edit their own settings References: <20121013000423.19208.96893.malonedeb@gac.canonical.com> Message-ID: <20150428153900.24519.36236.launchpad@wampee.canonical.com> ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1066184 Title: Users cannot edit their own settings To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1066184/+subscriptions From 1062925 at bugs.launchpad.net Tue Apr 28 17:38:30 2015 From: 1062925 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 15:38:30 -0000 Subject: [Bug 1062925] Re: Expose new REST API features in Postorius References: <20121006165314.5117.28925.malonedeb@wampee.canonical.com> Message-ID: <20150428153831.22862.69583.launchpad@soybean.canonical.com> ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1062925 Title: Expose new REST API features in Postorius To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1062925/+subscriptions From 1062891 at bugs.launchpad.net Tue Apr 28 17:37:19 2015 From: 1062891 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 15:37:19 -0000 Subject: [Bug 1062891] Re: Missing feature: Delete domain References: <20121006153419.5621.36481.malonedeb@wampee.canonical.com> Message-ID: <20150428153720.14593.25924.launchpad@chaenomeles.canonical.com> ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1062891 Title: Missing feature: Delete domain To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1062891/+subscriptions From 1062889 at bugs.launchpad.net Tue Apr 28 17:38:14 2015 From: 1062889 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 15:38:14 -0000 Subject: [Bug 1062889] Re: Need ability to have multiple admins and moderators References: <20121006153156.5077.93727.malonedeb@wampee.canonical.com> Message-ID: <20150428153815.14394.25359.launchpad@chaenomeles.canonical.com> ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1062889 Title: Need ability to have multiple admins and moderators To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1062889/+subscriptions From 1062877 at bugs.launchpad.net Tue Apr 28 17:37:13 2015 From: 1062877 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 15:37:13 -0000 Subject: [Bug 1062877] Re: General Settings References: <20121006151753.17901.4879.malonedeb@soybean.canonical.com> Message-ID: <20150428153714.22358.69396.launchpad@soybean.canonical.com> ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1062877 Title: General Settings To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1062877/+subscriptions From 1058450 at bugs.launchpad.net Tue Apr 28 17:38:06 2015 From: 1058450 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 15:38:06 -0000 Subject: [Bug 1058450] Re: Missing feature: inline help for every admin option References: <20120929032408.28706.25019.malonedeb@wampee.canonical.com> Message-ID: <20150428153807.24447.22631.launchpad@wampee.canonical.com> ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1058450 Title: Missing feature: inline help for every admin option To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1058450/+subscriptions From 1058448 at bugs.launchpad.net Tue Apr 28 17:37:50 2015 From: 1058448 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 15:37:50 -0000 Subject: [Bug 1058448] Re: Missing feature: Access control based on membership roles/superuser status. References: <20120929032015.29223.65609.malonedeb@wampee.canonical.com> Message-ID: <20150428153752.22464.50090.launchpad@soybean.canonical.com> ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1058448 Title: Missing feature: Access control based on membership roles/superuser status. To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1058448/+subscriptions From 1004048 at bugs.launchpad.net Tue Apr 28 17:37:02 2015 From: 1004048 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 15:37:02 -0000 Subject: [Bug 1004048] Re: Able to create superuser with same email as existing BrowserID account References: <20120524164937.25895.86780.malonedeb@gac.canonical.com> Message-ID: <20150428153703.22499.13280.launchpad@soybean.canonical.com> ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1004048 Title: Able to create superuser with same email as existing BrowserID account To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1004048/+subscriptions From 987100 at bugs.launchpad.net Tue Apr 28 17:37:30 2015 From: 987100 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 15:37:30 -0000 Subject: [Bug 987100] Re: Add archival options References: <20120423051813.18601.60394.malonedeb@chaenomeles.canonical.com> Message-ID: <20150428153731.13989.4679.launchpad@chaenomeles.canonical.com> ** Changed in: postorius Milestone: None => 1.0.0 ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/987100 Title: Add archival options To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/987100/+subscriptions From 1429086 at bugs.launchpad.net Tue Apr 28 17:42:22 2015 From: 1429086 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 15:42:22 -0000 Subject: [Bug 1429086] Re: Key error in mailman settings page References: <20150306112152.12161.3296.malonedeb@gac.canonical.com> Message-ID: <20150428154223.14593.33243.launchpad@chaenomeles.canonical.com> ** Changed in: postorius Status: In Progress => Fix Committed ** Changed in: postorius Status: Fix Committed => Incomplete -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1429086 Title: Key error in mailman settings page To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1429086/+subscriptions From 1428966 at bugs.launchpad.net Tue Apr 28 17:41:17 2015 From: 1428966 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 15:41:17 -0000 Subject: [Bug 1428966] Re: postorius appends unwanted code in list_nav member preferences tab References: <20150306071520.10761.22459.malonedeb@soybean.canonical.com> Message-ID: <20150428154118.25081.74116.launchpad@wampee.canonical.com> ** Changed in: postorius Milestone: None => 1.0.0 ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1428966 Title: postorius appends unwanted code in list_nav member preferences tab To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1428966/+subscriptions From 1428169 at bugs.launchpad.net Tue Apr 28 17:43:03 2015 From: 1428169 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 15:43:03 -0000 Subject: [Bug 1428169] Re: `client` not present in the scope of the interpreter invoked by doing `python manage.py mmclient` References: <20150304150231.20996.53521.malonedeb@soybean.canonical.com> Message-ID: <20150428154304.24354.62111.launchpad@wampee.canonical.com> ** Changed in: postorius Milestone: None => 1.0.0 ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1428169 Title: `client` not present in the scope of the interpreter invoked by doing `python manage.py mmclient` To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1428169/+subscriptions From 1428543 at bugs.launchpad.net Tue Apr 28 17:41:34 2015 From: 1428543 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 15:41:34 -0000 Subject: [Bug 1428543] Re: Typos in the postorius code which potentially can lead to unwanted code cascading problems. References: <20150305083547.29257.95156.malonedeb@chaenomeles.canonical.com> Message-ID: <20150428154135.22292.53221.launchpad@soybean.canonical.com> ** Changed in: postorius Milestone: None => 1.0.0 ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1428543 Title: Typos in the postorius code which potentially can lead to unwanted code cascading problems. To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1428543/+subscriptions From 1409033 at bugs.launchpad.net Tue Apr 28 17:43:16 2015 From: 1409033 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 15:43:16 -0000 Subject: [Bug 1409033] Re: list metrics labels all say "created at" References: <20150109145414.20971.39316.malonedeb@soybean.canonical.com> Message-ID: <20150428154316.22657.1563.launchpad@soybean.canonical.com> ** Changed in: postorius Milestone: None => 1.0.0 ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1409033 Title: list metrics labels all say "created at" To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1409033/+subscriptions From 1294463 at bugs.launchpad.net Tue Apr 28 17:43:25 2015 From: 1294463 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 15:43:25 -0000 Subject: [Bug 1294463] Re: Subscribe and unsubscribe both buttons are shown in list Summary page References: <20140319034049.30160.35822.malonedeb@soybean.canonical.com> Message-ID: <20150428154326.16856.14233.launchpad@gac.canonical.com> ** Changed in: postorius Milestone: None => 1.0.0 ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1294463 Title: Subscribe and unsubscribe both buttons are shown in list Summary page To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1294463/+subscriptions From 1210299 at bugs.launchpad.net Tue Apr 28 17:43:38 2015 From: 1210299 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 15:43:38 -0000 Subject: [Bug 1210299] Re: User Subscriptions Page throwing an AttributeError References: <20130808213302.1599.44917.malonedeb@soybean.canonical.com> Message-ID: <20150428154338.16887.46150.launchpad@gac.canonical.com> ** Changed in: postorius Milestone: None => 1.0.0 ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1210299 Title: User Subscriptions Page throwing an AttributeError To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1210299/+subscriptions From 1201150 at bugs.launchpad.net Tue Apr 28 17:43:51 2015 From: 1201150 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 15:43:51 -0000 Subject: [Bug 1201150] Re: URLs should contain the RFC 2369 list-id instead of fqdn_listname References: <20130714175736.21394.21977.malonedeb@soybean.canonical.com> Message-ID: <20150428154352.14216.43252.launchpad@chaenomeles.canonical.com> ** Changed in: postorius Milestone: None => 1.0.0 ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1201150 Title: URLs should contain the RFC 2369 list-id instead of fqdn_listname To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1201150/+subscriptions From 1175967 at bugs.launchpad.net Tue Apr 28 17:44:10 2015 From: 1175967 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 15:44:10 -0000 Subject: [Bug 1175967] Re: The owners are not part of the list settings any more References: <20130503094951.15095.76343.malonedeb@gac.canonical.com> Message-ID: <20150428154410.16887.26482.launchpad@gac.canonical.com> ** Changed in: postorius Status: Fix Committed => Fix Released ** Changed in: postorius Milestone: None => 1.0.0 -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1175967 Title: The owners are not part of the list settings any more To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1175967/+subscriptions From 1156866 at bugs.launchpad.net Tue Apr 28 17:45:07 2015 From: 1156866 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 15:45:07 -0000 Subject: [Bug 1156866] Re: Lists page needs subscribe and unsubscribe button References: <20130318214640.17962.13784.malonedeb@gac.canonical.com> Message-ID: <20150428154507.17140.76979.launchpad@gac.canonical.com> ** Changed in: postorius Status: In Progress => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1156866 Title: Lists page needs subscribe and unsubscribe button To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1156866/+subscriptions From 1150992 at bugs.launchpad.net Tue Apr 28 17:45:17 2015 From: 1150992 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 15:45:17 -0000 Subject: [Bug 1150992] Re: Postorius generates KeyError for users with no membership References: <20130307021050.31402.6202.malonedeb@chaenomeles.canonical.com> Message-ID: <20150428154518.25081.35780.launchpad@wampee.canonical.com> ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1150992 Title: Postorius generates KeyError for users with no membership To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1150992/+subscriptions From 1058445 at bugs.launchpad.net Tue Apr 28 17:46:02 2015 From: 1058445 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 15:46:02 -0000 Subject: [Bug 1058445] Re: Missing feature: Adding/editing users References: <20120929031617.313.78456.malonedeb@chaenomeles.canonical.com> Message-ID: <20150428154603.17025.50803.launchpad@gac.canonical.com> ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1058445 Title: Missing feature: Adding/editing users To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1058445/+subscriptions From 1021364 at bugs.launchpad.net Tue Apr 28 17:46:17 2015 From: 1021364 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 15:46:17 -0000 Subject: [Bug 1021364] Re: Catch httplib2 error if REST API is not available References: <20120705155149.5384.41016.malonedeb@wampee.canonical.com> Message-ID: <20150428154618.14248.41557.launchpad@chaenomeles.canonical.com> ** Changed in: mailman.client Status: Fix Committed => Fix Released ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman REST Client. https://bugs.launchpad.net/bugs/1021364 Title: Catch httplib2 error if REST API is not available To manage notifications about this bug go to: https://bugs.launchpad.net/mailman.client/+bug/1021364/+subscriptions From noreply at launchpad.net Tue Apr 28 19:34:23 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Tue, 28 Apr 2015 17:34:23 -0000 Subject: [Branch ~abompard/mailman-bundler/mailman-bundler] Rev 63: Version 3.0.0 Message-ID: <20150428173423.2063.86994.launchpad@ackee.canonical.com> ------------------------------------------------------------ revno: 63 committer: Aur?lien Bompard branch nick: mailman-bundler timestamp: Tue 2015-04-28 19:33:18 +0200 message: Version 3.0.0 modified: conf.py setup.py -- lp:mailman-bundler https://code.launchpad.net/~abompard/mailman-bundler/mailman-bundler Your team Mailman Coders is subscribed to branch lp:mailman-bundler. To unsubscribe from this branch go to https://code.launchpad.net/~abompard/mailman-bundler/mailman-bundler/+edit-subscription -------------- next part -------------- A non-text attachment was scrubbed... Name: revision-diff.txt Type: text/x-diff Size: 794 bytes Desc: not available URL: From 1449758 at bugs.launchpad.net Tue Apr 28 23:34:50 2015 From: 1449758 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 21:34:50 -0000 Subject: [Bug 1449758] [NEW] Django1.6: Import Error in fieldset_forms module References: <20150428213450.24624.84812.malonedeb@wampee.canonical.com> Message-ID: <20150428213450.24624.84812.malonedeb@wampee.canonical.com> Public bug reported: In Django 1.6 the fieldset_forms module produces an import error. ** Affects: postorius Importance: Undecided Status: Fix Committed ** Changed in: postorius Status: New => Fix Committed -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1449758 Title: Django1.6: Import Error in fieldset_forms module To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1449758/+subscriptions From 1449757 at bugs.launchpad.net Tue Apr 28 23:33:53 2015 From: 1449757 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 21:33:53 -0000 Subject: [Bug 1449757] [NEW] Help tag links are not needed any more (and lead to a previously removed page) References: <20150428213353.25006.98926.malonedeb@wampee.canonical.com> Message-ID: <20150428213353.25006.98926.malonedeb@wampee.canonical.com> Public bug reported: In an earlier version, the mouseover help texts were JS powered. To make them accessible to non-JS users, they were linked to a separate page containing the help text. However, the hover effect is now CSS-only, so theyre accessible to both users without JS and without CSS. The broken links can be removed. ** Affects: postorius Importance: Undecided Status: Fix Committed ** Changed in: postorius Status: New => Fix Committed -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1449757 Title: Help tag links are not needed any more (and lead to a previously removed page) To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1449757/+subscriptions From 1449758 at bugs.launchpad.net Tue Apr 28 23:41:14 2015 From: 1449758 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 21:41:14 -0000 Subject: [Bug 1449758] Re: Django1.6: Import Error in fieldset_forms module References: <20150428213450.24624.84812.malonedeb@wampee.canonical.com> Message-ID: <20150428214114.17724.10404.launchpad@gac.canonical.com> ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1449758 Title: Django1.6: Import Error in fieldset_forms module To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1449758/+subscriptions From 1449757 at bugs.launchpad.net Tue Apr 28 23:41:20 2015 From: 1449757 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 21:41:20 -0000 Subject: [Bug 1449757] Re: Help tag links are not needed any more (and lead to a previously removed page) References: <20150428213353.25006.98926.malonedeb@wampee.canonical.com> Message-ID: <20150428214121.22897.41896.launchpad@soybean.canonical.com> ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1449757 Title: Help tag links are not needed any more (and lead to a previously removed page) To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1449757/+subscriptions From 1090817 at bugs.launchpad.net Tue Apr 28 23:41:51 2015 From: 1090817 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 21:41:51 -0000 Subject: [Bug 1090817] Re: Inline help needs improved accessibility References: <20121215225054.26154.84875.malonedeb@gac.canonical.com> Message-ID: <20150428214152.22425.83280.launchpad@soybean.canonical.com> ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1090817 Title: Inline help needs improved accessibility To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1090817/+subscriptions From 1062856 at bugs.launchpad.net Tue Apr 28 23:42:13 2015 From: 1062856 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 21:42:13 -0000 Subject: [Bug 1062856] Re: It is not clear how to log in if you do not already have an account. References: <20121006141038.14188.31962.malonedeb@gac.canonical.com> Message-ID: <20150428214214.22187.29739.launchpad@soybean.canonical.com> ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1062856 Title: It is not clear how to log in if you do not already have an account. To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1062856/+subscriptions From 1062849 at bugs.launchpad.net Tue Apr 28 23:42:23 2015 From: 1062849 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 21:42:23 -0000 Subject: [Bug 1062849] Re: No confirmation/error if you are already a member References: <20121006135939.17863.39752.malonedeb@soybean.canonical.com> Message-ID: <20150428214224.17724.62470.launchpad@gac.canonical.com> ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1062849 Title: No confirmation/error if you are already a member To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1062849/+subscriptions From 1446881 at bugs.launchpad.net Tue Apr 28 23:49:09 2015 From: 1446881 at bugs.launchpad.net (Barry Warsaw) Date: Tue, 28 Apr 2015 21:49:09 -0000 Subject: [Bug 1446881] Re: Require Falcon 0.3 References: <20150421221658.16455.85553.malonedeb@soybean.canonical.com> Message-ID: <20150428214910.24803.55928.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/1446881 Title: Require Falcon 0.3 To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1446881/+subscriptions From 1435941 at bugs.launchpad.net Tue Apr 28 23:49:03 2015 From: 1435941 at bugs.launchpad.net (Barry Warsaw) Date: Tue, 28 Apr 2015 21:49:03 -0000 Subject: [Bug 1435941] Re: Postgresql support is broken References: <20150324155017.7787.99641.malonedeb@chaenomeles.canonical.com> Message-ID: <20150428214904.17140.97230.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/1435941 Title: Postgresql support is broken To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1435941/+subscriptions From 1432239 at bugs.launchpad.net Tue Apr 28 23:50:02 2015 From: 1432239 at bugs.launchpad.net (Barry Warsaw) Date: Tue, 28 Apr 2015 21:50:02 -0000 Subject: [Bug 1432239] Re: Lists cannot be deleted if the have acceptable alias records References: <20150314204630.25473.53454.malonedeb@soybean.canonical.com> Message-ID: <20150428215003.24416.3346.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/1432239 Title: Lists cannot be deleted if the have acceptable alias records To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1432239/+subscriptions From 1425359 at bugs.launchpad.net Tue Apr 28 23:49:56 2015 From: 1425359 at bugs.launchpad.net (Barry Warsaw) Date: Tue, 28 Apr 2015 21:49:56 -0000 Subject: [Bug 1425359] Re: 500 error code shown by postorius instead of 409 error code References: <20150225025413.24385.93661.malonedeb@wampee.canonical.com> Message-ID: <20150428214958.25081.41548.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/1425359 Title: 500 error code shown by postorius instead of 409 error code To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1425359/+subscriptions From 1423756 at bugs.launchpad.net Tue Apr 28 23:49:51 2015 From: 1423756 at bugs.launchpad.net (Barry Warsaw) Date: Tue, 28 Apr 2015 21:49:51 -0000 Subject: [Bug 1423756] Re: Ability to define user as domainowner or serverowner References: <20150220001108.20399.87602.malonedeb@gac.canonical.com> Message-ID: <20150428214952.13989.63928.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/1423756 Title: Ability to define user as domainowner or serverowner To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1423756/+subscriptions From 1420083 at bugs.launchpad.net Tue Apr 28 23:49:45 2015 From: 1420083 at bugs.launchpad.net (Barry Warsaw) Date: Tue, 28 Apr 2015 21:49:45 -0000 Subject: [Bug 1420083] Re: Provide a reserved url for clearing out the uid table References: <20150210031631.7181.18307.malonedeb@soybean.canonical.com> Message-ID: <20150428214947.14319.61258.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/1420083 Title: Provide a reserved url for clearing out the uid table To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1420083/+subscriptions From 1419519 at bugs.launchpad.net Tue Apr 28 23:49:40 2015 From: 1419519 at bugs.launchpad.net (Barry Warsaw) Date: Tue, 28 Apr 2015 21:49:40 -0000 Subject: [Bug 1419519] Re: REST API delete user function does not delete every 2nd linked address References: <20150208200622.12938.475.malonedeb@gac.canonical.com> Message-ID: <20150428214941.24354.11654.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/1419519 Title: REST API delete user function does not delete every 2nd linked address To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1419519/+subscriptions From 1418280 at bugs.launchpad.net Tue Apr 28 23:49:36 2015 From: 1418280 at bugs.launchpad.net (Barry Warsaw) Date: Tue, 28 Apr 2015 21:49:36 -0000 Subject: [Bug 1418280] Re: "Address already exists" when creating a new user, but user is created anyway References: <20150205014525.32391.71310.malonedeb@wampee.canonical.com> Message-ID: <20150428214937.16887.20380.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/1418280 Title: "Address already exists" when creating a new user, but user is created anyway To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1418280/+subscriptions From 1418276 at bugs.launchpad.net Tue Apr 28 23:49:31 2015 From: 1418276 at bugs.launchpad.net (Barry Warsaw) Date: Tue, 28 Apr 2015 21:49:31 -0000 Subject: [Bug 1418276] Re: Deleting a user via the REST API does not delete their user preferences References: <20150205012953.6713.71408.malonedeb@soybean.canonical.com> Message-ID: <20150428214933.24694.3288.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/1418276 Title: Deleting a user via the REST API does not delete their user preferences To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1418276/+subscriptions From 1411435 at bugs.launchpad.net Tue Apr 28 23:49:26 2015 From: 1411435 at bugs.launchpad.net (Barry Warsaw) Date: Tue, 28 Apr 2015 21:49:26 -0000 Subject: [Bug 1411435] Re: after initial install, master runner crashes when config file is missing References: <20150115221336.21947.88531.malonedeb@soybean.canonical.com> Message-ID: <20150428214927.25081.18258.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/1411435 Title: after initial install, master runner crashes when config file is missing To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1411435/+subscriptions From 1203359 at bugs.launchpad.net Tue Apr 28 23:50:07 2015 From: 1203359 at bugs.launchpad.net (Barry Warsaw) Date: Tue, 28 Apr 2015 21:50:07 -0000 Subject: [Bug 1203359] Re: IArchiver.archive_message implementations return None References: <20130720185538.20778.48974.malonedeb@gac.canonical.com> Message-ID: <20150428215008.16537.44067.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/1203359 Title: IArchiver.archive_message implementations return None To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1203359/+subscriptions From 1166911 at bugs.launchpad.net Tue Apr 28 23:49:21 2015 From: 1166911 at bugs.launchpad.net (Barry Warsaw) Date: Tue, 28 Apr 2015 21:49:21 -0000 Subject: [Bug 1166911] Re: domain option for `bin/mailman lists` doesn't work as expected References: <20130409171303.27875.70181.malonedeb@soybean.canonical.com> Message-ID: <20150428214922.17025.64215.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/1166911 Title: domain option for `bin/mailman lists` doesn't work as expected To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1166911/+subscriptions From 1095552 at bugs.launchpad.net Tue Apr 28 23:49:16 2015 From: 1095552 at bugs.launchpad.net (Barry Warsaw) Date: Tue, 28 Apr 2015 21:49:16 -0000 Subject: [Bug 1095552] Re: Subscribe/unsubscribe policy for lists References: <20130103082910.18225.11931.malonedeb@gac.canonical.com> Message-ID: <20150428214917.22688.34746.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/1095552 Title: Subscribe/unsubscribe policy for lists To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1095552/+subscriptions From 1066340 at bugs.launchpad.net Tue Apr 28 23:54:23 2015 From: 1066340 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 21:54:23 -0000 Subject: [Bug 1066340] Re: Icon for the 'users' entry on the main menu References: <20121013164930.15153.45627.malonedeb@soybean.canonical.com> Message-ID: <20150428215424.16821.17410.launchpad@gac.canonical.com> ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1066340 Title: Icon for the 'users' entry on the main menu To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1066340/+subscriptions From 1062961 at bugs.launchpad.net Tue Apr 28 23:54:38 2015 From: 1062961 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 21:54:38 -0000 Subject: [Bug 1062961] Re: Typo: changes misspelled as mchanges References: <20121006182032.14855.68341.malonedeb@chaenomeles.canonical.com> Message-ID: <20150428215439.24733.25874.launchpad@wampee.canonical.com> ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1062961 Title: Typo: changes misspelled as mchanges To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1062961/+subscriptions From 1062896 at bugs.launchpad.net Tue Apr 28 23:54:56 2015 From: 1062896 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 21:54:56 -0000 Subject: [Bug 1062896] Re: Need the ability to set reply to sender References: <20121006154137.14690.62964.malonedeb@chaenomeles.canonical.com> Message-ID: <20150428215457.18113.4803.launchpad@gac.canonical.com> ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1062896 Title: Need the ability to set reply to sender To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1062896/+subscriptions From 1062884 at bugs.launchpad.net Tue Apr 28 23:54:12 2015 From: 1062884 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 21:54:12 -0000 Subject: [Bug 1062884] Re: Check HTML validity of all pages References: <20121006152746.14728.1471.malonedeb@chaenomeles.canonical.com> Message-ID: <20150428215413.24519.62843.launchpad@wampee.canonical.com> ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1062884 Title: Check HTML validity of all pages To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1062884/+subscriptions From 1062866 at bugs.launchpad.net Tue Apr 28 23:55:10 2015 From: 1062866 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 21:55:10 -0000 Subject: [Bug 1062866] Re: Options reversed for Admin Settings References: <20121006144457.17687.71216.malonedeb@soybean.canonical.com> Message-ID: <20150428215511.22259.48809.launchpad@soybean.canonical.com> ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1062866 Title: Options reversed for Admin Settings To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1062866/+subscriptions From 1027496 at bugs.launchpad.net Tue Apr 28 23:55:18 2015 From: 1027496 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 21:55:18 -0000 Subject: [Bug 1027496] Re: Check code against pep8 conventions References: <20120721212633.20708.2253.malonedeb@wampee.canonical.com> Message-ID: <20150428215519.14113.9451.launchpad@chaenomeles.canonical.com> ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1027496 Title: Check code against pep8 conventions To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1027496/+subscriptions From 1025709 at bugs.launchpad.net Tue Apr 28 23:55:38 2015 From: 1025709 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 21:55:38 -0000 Subject: [Bug 1025709] Re: When logging in through BrowserID or django.contrib.auth: Create new MM user if none exists References: <20120717151910.26084.37208.malonedeb@chaenomeles.canonical.com> Message-ID: <20150428215540.24874.48644.launchpad@wampee.canonical.com> ** Changed in: postorius Status: In Progress => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1025709 Title: When logging in through BrowserID or django.contrib.auth: Create new MM user if none exists To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1025709/+subscriptions From 1443650 at bugs.launchpad.net Tue Apr 28 23:57:57 2015 From: 1443650 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 21:57:57 -0000 Subject: [Bug 1443650] Re: Member preferences page has really weird breadcrumbs at top References: <20150413203540.26571.12730.malonedeb@gac.canonical.com> Message-ID: <20150428215757.17025.52610.launchpad@gac.canonical.com> ** Changed in: postorius Status: Fix Committed => Fix Released ** Changed in: postorius Milestone: None => 1.0.0 -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1443650 Title: Member preferences page has really weird breadcrumbs at top To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1443650/+subscriptions From 1157947 at bugs.launchpad.net Tue Apr 28 23:58:14 2015 From: 1157947 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 21:58:14 -0000 Subject: [Bug 1157947] Re: HTML templates need to be prepared for translation References: <20130320200152.10722.56233.malonedeb@wampee.canonical.com> Message-ID: <20150428215815.14144.29050.launchpad@chaenomeles.canonical.com> ** Changed in: postorius Milestone: None => 1.0.0 ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1157947 Title: HTML templates need to be prepared for translation To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1157947/+subscriptions From 1004051 at bugs.launchpad.net Tue Apr 28 23:56:01 2015 From: 1004051 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 21:56:01 -0000 Subject: [Bug 1004051] Re: Accepting Held messages results in stack trace References: <20120524165224.24820.61612.malonedeb@wampee.canonical.com> Message-ID: <20150428215602.22227.8131.launchpad@soybean.canonical.com> ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1004051 Title: Accepting Held messages results in stack trace To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1004051/+subscriptions From 1004049 at bugs.launchpad.net Tue Apr 28 23:56:39 2015 From: 1004049 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 21:56:39 -0000 Subject: [Bug 1004049] Re: Held messages show display message body References: <20120524165042.25997.30084.malonedeb@gac.canonical.com> Message-ID: <20150428215640.25081.15150.launchpad@wampee.canonical.com> ** Changed in: postorius Milestone: 1.0.0a2 => 1.0.0 ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1004049 Title: Held messages show display message body To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1004049/+subscriptions From 1004044 at bugs.launchpad.net Tue Apr 28 23:57:42 2015 From: 1004044 at bugs.launchpad.net (Florian Fuchs) Date: Tue, 28 Apr 2015 21:57:42 -0000 Subject: [Bug 1004044] Re: BrowserID system does not keep me logged in References: <20120524164643.11507.88540.malonedeb@chaenomeles.canonical.com> Message-ID: <20150428215742.16641.91167.launchpad@gac.canonical.com> ** Changed in: postorius Status: Fix Committed => Fix Released -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to Postorius. https://bugs.launchpad.net/bugs/1004044 Title: BrowserID system does not keep me logged in To manage notifications about this bug go to: https://bugs.launchpad.net/postorius/+bug/1004044/+subscriptions From noreply at launchpad.net Wed Apr 29 10:43:24 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Wed, 29 Apr 2015 08:43:24 -0000 Subject: [Branch ~abompard/mailman-bundler/mailman-bundler] Rev 64: Include a link to the docs on PyPI Message-ID: <20150429084324.17986.39245.launchpad@ackee.canonical.com> ------------------------------------------------------------ revno: 64 committer: Aur?lien Bompard branch nick: mailman-bundler timestamp: Wed 2015-04-29 10:43:17 +0200 message: Include a link to the docs on PyPI modified: setup.py -- lp:mailman-bundler https://code.launchpad.net/~abompard/mailman-bundler/mailman-bundler Your team Mailman Coders is subscribed to branch lp:mailman-bundler. To unsubscribe from this branch go to https://code.launchpad.net/~abompard/mailman-bundler/mailman-bundler/+edit-subscription -------------- next part -------------- A non-text attachment was scrubbed... Name: revision-diff.txt Type: text/x-diff Size: 484 bytes Desc: not available URL: From 1449930 at bugs.launchpad.net Wed Apr 29 11:30:12 2015 From: 1449930 at bugs.launchpad.net (yan) Date: Wed, 29 Apr 2015 09:30:12 -0000 Subject: [Bug 1449930] [NEW] Topics are not recognized if subject contains special characters References: <20150429093012.14593.9610.malonedeb@chaenomeles.canonical.com> Message-ID: <20150429093012.14593.9610.malonedeb@chaenomeles.canonical.com> Public bug reported: I defined some topics that are generally recognized correctly from the subject line. But if the subject contains special characters like German "Umlaute" (???), Mailman doesn't recognize keywords as topics. It seems to me that this has to do with the encoding. When the subject contains a special character, its source looks like this ("Mexiko" is my keyword): Subject: [abo] =?utf-8?q?TEST=3A_Subject_with_special_characters_like_?= =?utf-8?b?w6TDvMO2IHwgTWV4aWtv?= Without special characters, it looks like this, though: Subject: [abo] TEST: Subject without special characters | Mexiko In other cases, the source of the subject line did still contain the keyword, but it wasn't recognized. I'm using version 2.1.12 patched. ** 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/1449930 Title: Topics are not recognized if subject contains special characters To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1449930/+subscriptions From byu at hp.com Wed Apr 29 11:57:38 2015 From: byu at hp.com (Yu Bo) Date: Wed, 29 Apr 2015 09:57:38 -0000 Subject: [Bug 1449940] [NEW] java.sql.SQLException: *** ERROR[2055] The specified value 'OFF' for DEFAULTS attribute ACCEPTABLE_INPUTESTLOGPROP_ERROR is not valid.---*** ERROR[2055] The specified value 'OFF' for DEFAULTS attribute ACCEPTABLE_INPUTESTLOGPROP_ERROR is not valid. References: <20150429095738.16707.67895.malonedeb@gac.canonical.com> Message-ID: <20150429095738.16707.67895.malonedeb@gac.canonical.com> Public bug reported: Defect Description: When transfer a connection object to the constructor of a Runnable interface, the Sql exception ERROR 2055 will be caught if execute a simple Sql stmt that is created by this connection object. Test Environment: sqws139.houston.hp.com, T2 driver. Test Steps: Step 1. Create a user connection object in static main function. for example: public class TestMultiThread { public static void main(String args[]) { Connection conn = MyConnection.initConnection(0); ... } } Step 2. Implement a Runnable interface and Write a constructor with only 1 parameter that is a Connection object. for example: class MySingleThread implemnts Runnable { MySingleThread(Connection conn) { this.conn = conn; } public void run() { Statement stmt = this.conn.createStatement(); stmt.execute("get tables"); stmt.close(); conn.close(); } } Step 3. Start a thread to do test in static main function. for example: Thread t = new Thread(new MySingleThread(conn)); t.start(); t.join(); In the above steps, the line 'stmt.execute("get tables")' will throw a Sql exception as below, java.sql.SQLException: *** ERROR[2055] The specified value 'OFF' for DEFAULTS attribute ACCEPTABLE_INPUTESTLOGPROP_ERROR is not valid.---*** ERROR[2055] The specified value 'OFF' for DEFAULTS attribute ACCEPTABLE_INPUTESTLOGPROP_ERROR is not valid. java.sql.SQLException: *** ERROR[2055] The specified value 'OFF' for DEFAULTS attribute ACCEPTABLE_INPUTESTLOGPROP_ERROR is not valid. at org.trafodion.jdbc.t2.SQLMXStatement.executeDirect(Native Method) at org.trafodion.jdbc.t2.SQLMXStatement.execute(SQLMXStatement.java:143) at MySingleThread.run(TestMultiThreads.java:79) at java.lang.Thread.run(Thread.java:745) ** Affects: mailman Importance: Undecided Status: New ** Tags: client-jdbc-t2 ** Tags added: client-jdbc-t2 -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1449940 Title: java.sql.SQLException: *** ERROR[2055] The specified value 'OFF' for DEFAULTS attribute ACCEPTABLE_INPUTESTLOGPROP_ERROR is not valid.---*** ERROR[2055] The specified value 'OFF' for DEFAULTS attribute ACCEPTABLE_INPUTESTLOGPROP_ERROR is not valid. To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1449940/+subscriptions From byu at hp.com Wed Apr 29 12:14:51 2015 From: byu at hp.com (Yu Bo) Date: Wed, 29 Apr 2015 10:14:51 -0000 Subject: [Bug 1449940] Re: java.sql.SQLException: *** ERROR[2055] The specified value 'OFF' for DEFAULTS attribute ACCEPTABLE_INPUTESTLOGPROP_ERROR is not valid.---*** ERROR[2055] The specified value 'OFF' for DEFAULTS attribute ACCEPTABLE_INPUTESTLOGPROP_ERROR is not valid. References: <20150429095738.16707.67895.malonedeb@gac.canonical.com> Message-ID: <20150429101451.24803.39719.launchpad@wampee.canonical.com> ** Description changed: Defect Description: When transfer a connection object to the constructor of a Runnable interface, the Sql exception ERROR 2055 will be caught if execute a simple Sql stmt that is created by this connection object. Test Environment: sqws139.houston.hp.com, T2 driver. Test Steps: Step 1. Create a user connection object in static main function. for example: public class TestMultiThread { - public static void main(String args[]) { + ????public static void main(String args[]) { - Connection conn = MyConnection.initConnection(0); - ... - } + ????????Connection conn = MyConnection.initConnection(0); + ????????... + ???} } Step 2. Implement a Runnable interface and Write a constructor with only 1 parameter that is a Connection object. for example: class MySingleThread implemnts Runnable { - MySingleThread(Connection conn) { - this.conn = conn; - } + Connection conn = null; - public void run() { - Statement stmt = this.conn.createStatement(); - stmt.execute("get tables"); - stmt.close(); - conn.close(); - } + ????MySingleThread(Connection conn) { + ????????this.conn = conn; + ????} + + ????public void run() { + ?????????Statement stmt = this.conn.createStatement(); + ?????????stmt.execute("get tables"); + ?????????stmt.close(); + ?????????conn.close(); + ????} } Step 3. Start a thread to do test in static main function. for example: Thread t = new Thread(new MySingleThread(conn)); t.start(); t.join(); In the above steps, the line 'stmt.execute("get tables")' will throw a Sql exception as below, java.sql.SQLException: *** ERROR[2055] The specified value 'OFF' for DEFAULTS attribute ACCEPTABLE_INPUTESTLOGPROP_ERROR is not valid.---*** ERROR[2055] The specified value 'OFF' for DEFAULTS attribute ACCEPTABLE_INPUTESTLOGPROP_ERROR is not valid. java.sql.SQLException: *** ERROR[2055] The specified value 'OFF' for DEFAULTS attribute ACCEPTABLE_INPUTESTLOGPROP_ERROR is not valid. - at org.trafodion.jdbc.t2.SQLMXStatement.executeDirect(Native Method) - at org.trafodion.jdbc.t2.SQLMXStatement.execute(SQLMXStatement.java:143) - at MySingleThread.run(TestMultiThreads.java:79) - at java.lang.Thread.run(Thread.java:745) + ????????at org.trafodion.jdbc.t2.SQLMXStatement.executeDirect(Native Method) + ????????at org.trafodion.jdbc.t2.SQLMXStatement.execute(SQLMXStatement.java:143) + ????????at MySingleThread.run(TestMultiThreads.java:79) + ????????at java.lang.Thread.run(Thread.java:745) -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1449940 Title: java.sql.SQLException: *** ERROR[2055] The specified value 'OFF' for DEFAULTS attribute ACCEPTABLE_INPUTESTLOGPROP_ERROR is not valid.---*** ERROR[2055] The specified value 'OFF' for DEFAULTS attribute ACCEPTABLE_INPUTESTLOGPROP_ERROR is not valid. To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1449940/+subscriptions From noreply at launchpad.net Wed Apr 29 14:02:23 2015 From: noreply at launchpad.net (noreply at launchpad.net) Date: Wed, 29 Apr 2015 12:02:23 -0000 Subject: [Branch ~mailman-coders/mailman.client/trunk] Rev 71: added/excluded files in MANIFEST Message-ID: <20150429120223.4787.20569.launchpad@ackee.canonical.com> ------------------------------------------------------------ revno: 71 committer: Florian Fuchs branch nick: mailman.client timestamp: Wed 2015-04-29 14:01:18 +0200 message: added/excluded files in MANIFEST modified: MANIFEST.in -- lp:mailman.client https://code.launchpad.net/~mailman-coders/mailman.client/trunk Your team Mailman Coders is subscribed to branch lp:mailman.client. To unsubscribe from this branch go to https://code.launchpad.net/~mailman-coders/mailman.client/trunk/+edit-subscription -------------- next part -------------- A non-text attachment was scrubbed... Name: revision-diff.txt Type: text/x-diff Size: 335 bytes Desc: not available URL: From mark at msapiro.net Wed Apr 29 15:30:44 2015 From: mark at msapiro.net (Mark Sapiro) Date: Wed, 29 Apr 2015 13:30:44 -0000 Subject: [Bug 1449940] Re: java.sql.SQLException: *** ERROR[2055] The specified value 'OFF' for DEFAULTS attribute ACCEPTABLE_INPUTESTLOGPROP_ERROR is not valid.---*** ERROR[2055] The specified value 'OFF' for DEFAULTS attribute ACCEPTABLE_INPUTESTLOGPROP_ERROR is not valid. References: <20150429095738.16707.67895.malonedeb@gac.canonical.com> Message-ID: <20150429133044.14657.19107.malone@chaenomeles.canonical.com> How is this a Mailman bug? ** Changed in: mailman Status: New => Incomplete -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1449940 Title: java.sql.SQLException: *** ERROR[2055] The specified value 'OFF' for DEFAULTS attribute ACCEPTABLE_INPUTESTLOGPROP_ERROR is not valid.---*** ERROR[2055] The specified value 'OFF' for DEFAULTS attribute ACCEPTABLE_INPUTESTLOGPROP_ERROR is not valid. To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1449940/+subscriptions From byu at hp.com Thu Apr 30 04:04:46 2015 From: byu at hp.com (Yu Bo) Date: Thu, 30 Apr 2015 02:04:46 -0000 Subject: [Bug 1449940] Re: java.sql.SQLException: *** ERROR[2055] The specified value 'OFF' for DEFAULTS attribute ACCEPTABLE_INPUTESTLOGPROP_ERROR is not valid.---*** ERROR[2055] The specified value 'OFF' for DEFAULTS attribute ACCEPTABLE_INPUTESTLOGPROP_ERROR is not valid. References: <20150429095738.16707.67895.malonedeb@gac.canonical.com> Message-ID: <20150430020447.14754.96297.launchpad@chaenomeles.canonical.com> ** Project changed: mailman => trafodion ** Changed in: trafodion 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/1449940 Title: java.sql.SQLException: *** ERROR[2055] The specified value 'OFF' for DEFAULTS attribute ACCEPTABLE_INPUTESTLOGPROP_ERROR is not valid.---*** ERROR[2055] The specified value 'OFF' for DEFAULTS attribute ACCEPTABLE_INPUTESTLOGPROP_ERROR is not valid. To manage notifications about this bug go to: https://bugs.launchpad.net/trafodion/+bug/1449940/+subscriptions From mark at msapiro.net Thu Apr 30 04:35:26 2015 From: mark at msapiro.net (Mark Sapiro) Date: Thu, 30 Apr 2015 02:35:26 -0000 Subject: [Bug 1449930] Re: Topics are not recognized if subject contains special characters References: <20150429093012.14593.9610.malonedeb@chaenomeles.canonical.com> Message-ID: <20150430023526.24447.23102.malone@wampee.canonical.com> *** This bug is a duplicate of bug 891676 *** https://bugs.launchpad.net/bugs/891676 Fix released in Mailman 2.1.15 ** This bug has been marked a duplicate of bug 891676 topics don't work with national(russian) languages -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman. https://bugs.launchpad.net/bugs/1449930 Title: Topics are not recognized if subject contains special characters To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1449930/+subscriptions From billyglynn at gmail.com Thu Apr 30 15:07:49 2015 From: billyglynn at gmail.com (Billy Glynn) Date: Thu, 30 Apr 2015 13:07:49 -0000 Subject: [Bug 1450469] [NEW] install step using buildout fails with os.path.walk error References: <20150430130749.14355.38917.malonedeb@chaenomeles.canonical.com> Message-ID: <20150430130749.14355.38917.malonedeb@chaenomeles.canonical.com> Public bug reported: (venv)[root at lists mailman-bundler-3.0.0]# buildout Creating directory '/usr/local/src/mailman-bundler-3.0.0/bin'. Creating directory '/usr/local/src/mailman-bundler-3.0.0/parts'. Creating directory '/usr/local/src/mailman-bundler-3.0.0/eggs'. Creating directory '/usr/local/src/mailman-bundler-3.0.0/develop-eggs'. Develop: '/usr/local/src/mailman-bundler-3.0.0/.' warning: no files found matching '*.in' under directory 'mailman_bundler' warning: no files found matching '*.in' under directory 'deployment' warning: no files found matching 'deployment/mailman-web.logrotate.conf' Getting distribution for 'djangorecipe'. Got djangorecipe 1.11. Getting distribution for 'Django'. warning: no previously-included files matching '__pycache__' found under directory '*' warning: no previously-included files matching '*.py[co]' found under directory '*' Got Django 1.8. Getting distribution for 'zc.recipe.egg>=2.0.0a3'. Got zc.recipe.egg 2.0.1. Getting distribution for 'collective.recipe.cmd'. warning: no previously-included files matching '*.pyc' found anywhere in distribution Got collective.recipe.cmd 0.10. Getting distribution for 'z3c.recipe.filetemplate'. Got z3c.recipe.filetemplate 2.2.0. While: Installing. Getting section templates. Initializing section templates. An internal error occurred due to a bug in either zc.buildout or in a recipe being used: Traceback (most recent call last): File "/usr/local/src/mailman-bundler-3.0.0/venv/lib/python3.4/site-packages/zc/buildout/buildout.py", line 1946, in main getattr(buildout, command)(args) File "/usr/local/src/mailman-bundler-3.0.0/venv/lib/python3.4/site-packages/zc/buildout/buildout.py", line 510, in install [self[part]['recipe'] for part in install_parts] File "/usr/local/src/mailman-bundler-3.0.0/venv/lib/python3.4/site-packages/zc/buildout/buildout.py", line 510, in [self[part]['recipe'] for part in install_parts] File "/usr/local/src/mailman-bundler-3.0.0/venv/lib/python3.4/site-packages/zc/buildout/buildout.py", line 1098, in __getitem__ options._initialize() File "/usr/local/src/mailman-bundler-3.0.0/venv/lib/python3.4/site-packages/zc/buildout/buildout.py", line 1202, in _initialize self.initialize() File "/usr/local/src/mailman-bundler-3.0.0/venv/lib/python3.4/site-packages/zc/buildout/buildout.py", line 1211, in initialize self.recipe = recipe_class(buildout, name, self) File "/usr/local/src/mailman-bundler-3.0.0/eggs/z3c.recipe.filetemplate-2.2.0-py3.4.egg/z3c/recipe/filetemplate/__init__.py", line 145, in __init__ os.path.walk( AttributeError: 'module' object has no attribute 'walk' ** 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/1450469 Title: install step using buildout fails with os.path.walk error To manage notifications about this bug go to: https://bugs.launchpad.net/mailman/+bug/1450469/+subscriptions From zack.piper123 at gmail.com Thu Apr 30 18:13:41 2015 From: zack.piper123 at gmail.com (Zack Piper) Date: Thu, 30 Apr 2015 16:13:41 -0000 Subject: [Bug 1446711] Re: Postorius crashes on saving "Message Acceptance" settings. References: <20150421145400.16385.55479.malonedeb@soybean.canonical.com> Message-ID: <20150430161341.17578.86874.malone@gac.canonical.com> Also get the same error. -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman suite bundler. https://bugs.launchpad.net/bugs/1446711 Title: Postorius crashes on saving "Message Acceptance" settings. To manage notifications about this bug go to: https://bugs.launchpad.net/mailman-bundler/+bug/1446711/+subscriptions From pskoli93 at gmail.com Thu Apr 30 18:42:23 2015 From: pskoli93 at gmail.com (Pavan Koli) Date: Thu, 30 Apr 2015 16:42:23 -0000 Subject: [Merge] lp:~pskoli93/postorius/More_info_Fixes into lp:postorius Message-ID: <20150430164222.14987.81974.launchpad@ackee.canonical.com> Pavan Koli has proposed merging lp:~pskoli93/postorius/More_info_Fixes into lp:postorius. Requested reviews: Mailman Coders (mailman-coders) For more details, see: https://code.launchpad.net/~pskoli93/postorius/More_info_Fixes/+merge/257923 If go to My settings. There if you click on More info option, it just opens a new tab. Fix has removed the associated anchor text. -- Your team Mailman Coders is requested to review the proposed merge of lp:~pskoli93/postorius/More_info_Fixes into lp:postorius. -------------- next part -------------- A non-text attachment was scrubbed... Name: review-diff.txt Type: text/x-diff Size: 7589 bytes Desc: not available URL: From mark at msapiro.net Thu Apr 30 18:55:21 2015 From: mark at msapiro.net (Mark Sapiro) Date: Thu, 30 Apr 2015 16:55:21 -0000 Subject: [Bug 1450469] Re: install step using buildout fails with os.path.walk error References: <20150430130749.14355.38917.malonedeb@chaenomeles.canonical.com> Message-ID: <20150430165522.22259.25491.launchpad@soybean.canonical.com> ** Project changed: mailman => mailman-bundler -- You received this bug notification because you are a member of Mailman Coders, which is subscribed to GNU Mailman suite bundler. https://bugs.launchpad.net/bugs/1450469 Title: install step using buildout fails with os.path.walk error To manage notifications about this bug go to: https://bugs.launchpad.net/mailman-bundler/+bug/1450469/+subscriptions