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.
Public bug reported:
Following up on this thread:
http://www.mail-archive.com/mailman-developers%40python.org/msg12023.html
I can reproduce the problem:
[cp ~/local/src/mailman-3.0.0a6] ./bin/buildout
Traceback (most recent call last):
File "./bin/buildout", line 17, in <module>
import zc.buildout.buildout
ImportError: No module named zc.buildout.buildout
The eggs/zc-buildout* directory is missing the *.py files. Similarly,
the z3c.recipe.sphinxdox and zc.recipe.egg.
In the end, I removed the eggs/ directory completely, and got much
further down the road. (I am new to eggs, so I am not sure this is the
best idea.)
Now, installation seems to fail at the logilab-common step.
Develop: '/home/phil/local/src/mailman-3.0.0a6/.'
Page at http://pypi.python.org/simple/argparse/ links to .py file(s) without version info; an index scan is required.
Uninstalling filetemplates.
Updating docs.
Generated script '/home/phil/local/src/mailman-3.0.0a6/bin/docs'.
Installing filetemplates.
Updating interpreter.
Installing pylint.
Getting distribution for 'logilab-common>=0.50.1'.
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "/home/phil/local/src/mailman-3.0.0a6/eggs/setuptools-0.6c12dev_r85190-py2.6.egg/setuptools/command/easy_install.py", line 1712, in main
with_ei_usage(lambda:
File "/home/phil/local/src/mailman-3.0.0a6/eggs/setuptools-0.6c12dev_r85190-py2.6.egg/setuptools/command/easy_install.py", line 1700, in with_ei_usage
return f()
File "/home/phil/local/src/mailman-3.0.0a6/eggs/setuptools-0.6c12dev_r85190-py2.6.egg/setuptools/command/easy_install.py", line 1716, in <lambda>
distclass=DistributionWithoutHelpCommands, **kw
File "/usr/lib/python2.6/distutils/core.py", line 152, in setup
dist.run_commands()
File "/usr/lib/python2.6/distutils/dist.py", line 975, in run_commands
self.run_command(cmd)
File "/usr/lib/python2.6/distutils/dist.py", line 995, in run_command
cmd_obj.run()
File "/home/phil/local/src/mailman-3.0.0a6/eggs/setuptools-0.6c12dev_r85190-py2.6.egg/setuptools/command/easy_install.py", line 211, in run
self.easy_install(spec, not self.no_deps)
File "/home/phil/local/src/mailman-3.0.0a6/eggs/setuptools-0.6c12dev_r85190-py2.6.egg/setuptools/command/easy_install.py", line 427, in easy_install
return self.install_item(None, spec, tmpdir, deps, True)
File "/home/phil/local/src/mailman-3.0.0a6/eggs/setuptools-0.6c12dev_r85190-py2.6.egg/setuptools/command/easy_install.py", line 476, in install_item
dists = self.install_eggs(spec, download, tmpdir)
File "/home/phil/local/src/mailman-3.0.0a6/eggs/setuptools-0.6c12dev_r85190-py2.6.egg/setuptools/command/easy_install.py", line 626, in install_eggs
unpack_archive(dist_filename, tmpdir, self.unpack_progress)
File "/home/phil/local/src/mailman-3.0.0a6/eggs/setuptools-0.6c12dev_r85190-py2.6.egg/setuptools/archive_util.py", line 67, in unpack_archive
driver(filename, extract_dir, progress_filter)
File "/home/phil/local/src/mailman-3.0.0a6/eggs/setuptools-0.6c12dev_r85190-py2.6.egg/setuptools/archive_util.py", line 188, in unpack_tarfile
while member.islnk() or member.issym():
AttributeError: 'NoneType' object has no attribute 'islnk'
An error occurred when trying to install logilab-common 0.52.0. Look above this message for any errors that were output by easy_install.
While:
Installing pylint.
Getting distribution for 'logilab-common>=0.50.1'.
Error: Couldn't install: logilab-common 0.52.0
Let me know what else I can send you in regards to my environment. I am running a fairly fresh Ubuntu-10.04.1 with Python 2.6.
** Affects: mailman
Importance: Undecided
Status: New
--
Corrupt eggs in mailman-3.0.0a6.tar.gz
https://bugs.launchpad.net/bugs/656946
You received this bug notification because you are a member of Mailman
Coders, which is subscribed to GNU Mailman.
Public bug reported:
I got the who command to work emailing -request by having a blank
subject line. If I used a subject line that was blank it worked.
The command info worked with info in the subject line.
cheers
W
** 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/727602
Title:
who command did not work with "who" in subject line