Public bug reported:
The Spanish (es) translation of the bin/check_perms message "%(path)s
bad group (has: %(groupname)s, expected %(MAILMAN_GROUP)s)" is missing
the 's' in '%(path)s'. This prevents check_perms from reporting/fixing
group errors and any other problems not found before the first group
error.
** Affects: mailman
Importance: Undecided
Status: New
--
Missing format character in Spanish translation
https://bugs.launchpad.net/bugs/670988
You received this bug notification because you are a member of Mailman
Coders, which is subscribed to GNU Mailman.
Public bug reported:
If respond_to_post_requests is Yes the notice to the poster of a held
post is From: the listname-bounces address. It should be from the
listname-owner address.
** Affects: mailman
Importance: Medium
Assignee: Mark Sapiro (msapiro)
Status: 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/714424
Title:
Held message user notification should be from -owner, not -bounces
Public bug reported:
For a good, working Mailman 3.0 UI we have to handle the passwords for each user (needed when they subscribe/unsubscribe/want to access their settings page but also for the admins and listowners). Hence, we need to implement the possibility to check for passwords in the rest-client (I believe these are saved in the user table in the core DB) and/or a login function.
We should probably use https for the psw authentication.
** Affects: mailman
Importance: Undecided
Status: New
** Tags: mailman3 rest-api
--
Login function needed in rest-client
https://bugs.launchpad.net/bugs/600780
You received this bug notification because you are a member of Mailman
Coders, which is subscribed to GNU Mailman.
Public bug reported:
For example, a held message notification to the list owner/moderator
contains an attached message/rfc822 part with subject "confirm <token>"
and this message can be replied to with or without an "Approved:
<password>" header/first body line to accept or discard the held
message.
The code allows for an MUA possibly inserting 'Re:' or some l10n
equivalent in the subject making it "Re: confirm <token>", but if the
l10n equivalent contains a non-ascii character, the entire command is
ignored and the message continues to be held.
** 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/685261
Title:
emailed command in subject header is ignored
Public bug reported:
When trying to install mailman outside the Python tree, I get the following error:
(I've replaced my home directory with $HOME in the below text)
$ whoami
srf
$ /software/bin/python-2.6.3 setup.py install --prefix=~srf/mailman-install
running install
Checking .pth file support in /$HOME/mailman-install/lib/python2.6/site-packages/
error: can't create or remove files in install directory
The following error occurred while trying to add or remove files in the
installation directory:
[Errno 2] No such file or directory: '/$HOME/mailman-
install/lib/python2.6/site-packages/test-easy-install-20075.pth'
The installation directory you specified (via --install-dir, --prefix, or
the distutils default setting) was:
/$HOME/mailman-install/lib/python2.6/site-packages/
This directory does not currently exist. Please create it and try again, or
choose a different installation directory (using the -d or --install-dir
option).
** Affects: mailman
Importance: Undecided
Status: New
--
Mailman 3 Branch, install fails with --prefix specified
https://bugs.launchpad.net/bugs/667252
You received this bug notification because you are a member of Mailman
Coders, which is subscribed to GNU Mailman.
Public bug reported:
Subscribing to more than one mailing list with the same email address
via the REST API raises an AssertionError in app/membership.py and and
subsequently returns a 500 HTTP status code.
System Info:
Ubuntu 10.10
Python 2.6.6
Mailman 3.0.0a7 (Rev. 6976)
I added a patch file containing a test for multiple list subscriptions
and a possible fix.
Cheers
Florian
** Affects: mailman
Importance: Undecided
Status: New
** Tags: mailman3 rest-api
--
You received this bug notification because you are a member of Mailman
Coders, which is subscribed to GNU Mailman.
https://bugs.launchpad.net/bugs/710182
Title:
REST API: Subribing to more then one list raises AssertionError /
returns HTTP 500
Public bug reported:
Mailman 3 should support either Python 2.6 or Python 2.7.
** Affects: mailman
Importance: Medium
Assignee: Barry Warsaw (barry)
Status: Fix Committed
** Tags: mailman3
** Changed in: mailman
Status: New => In Progress
** Changed in: mailman
Importance: Undecided => Medium
** Changed in: mailman
Assignee: (unassigned) => Barry Warsaw (barry)
** Changed in: mailman
Milestone: None => 3.0.0a7
** Tags added: mailman3
** Changed in: mailman
Status: In Progress => Fix Committed
--
Support Python 2.7
https://bugs.launchpad.net/bugs/667472
You received this bug notification because you are a member of Mailman
Coders, which is subscribed to GNU Mailman.
Public bug reported:
To make more options available to applications like web UI:s that want
to integrate against mailman 3.0 i propose that the following writable
attributes is made available through the REST server:
reply_goes_to_list
send_welcome_msg
welcome_msg
member_moderation_action
default_member_moderation
generic_nonmember_action
** Affects: mailman
Importance: Undecided
Assignee: Jimmy Bergman (jimmy-sigint)
Status: New
** Changed in: mailman
Assignee: (unassigned) => Jimmy Bergman (jimmy-sigint)
--
REST server should support a few more writable attributes to simplify integration
https://bugs.launchpad.net/bugs/659951
You received this bug notification because you are a member of Mailman
Coders, which is subscribed to GNU Mailman.
Public bug reported:
Perhaps the most common administrative task I face is changing an
existing user's email address. Many non-technical people change email
addresses very often. This is easy to do with the command line
clone_users command, but in a hosted environment, I have to find the
user, delete them, go to "mass subscription", and re-enter them. It
would be nice if the REST API included a "change one user's address"
command.
** Affects: mailman
Importance: Undecided
Status: New
** Tags: mailman3
--
Need REST API to change existing user's email
https://bugs.launchpad.net/bugs/643949
You received this bug notification because you are a member of Mailman
Coders, which is subscribed to GNU Mailman.
Public bug reported:
scan_message in mailman/app/bounces.py causes exception becuase:
for detector_class in find_components('mailman.bouncers', IBounceDetector):
addresses = detector().process(msg)
is not:
for detector_class in find_components('mailman.bouncers', IBounceDetector):
addresses = detector_class().process(msg)
I'am working around it by reimplementing the function in my code, but I
would be happy if I don't need to, because it touches more internal
interfaces than neccesarry.
** Affects: mailman
Importance: Undecided
Status: New
--
mailman scan_message exception
https://bugs.launchpad.net/bugs/645897
You received this bug notification because you are a member of Mailman
Coders, which is subscribed to GNU Mailman.