Public bug reported:
Sites sometimes want to send digests on a different schedule for one or
a few lists. This is currently difficult as it requires running
cron/senddigests with, e.g., '-l listname' or '-l list1 -l list2' for
the one or two and separately with '-l listn' for all the others, and
this needs to be updated as lists are added or removed.
With a -e/--exceptlist option, only two crons are required, one with,
e.g., '-l list1 -l list2' and one with '-e list1 -e list2'
** Affects: mailman
Importance: Low
Assignee: Mark Sapiro (msapiro)
Status: 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/1619770
Title:
cron/senddigests needs an exceptlist option
To manage notifications about this bug go to:
https://bugs.launchpad.net/mailman/+bug/1619770/+subscriptions
Public bug reported:
Trailing blanks on option "subject_prefix" are removed on subject lines
with non-ASCII characters. F.i., with options
preferred_language = "Français"
subject_prefix = "[prefix] "
(irrespective of encode_ascii_prefixes)
sending this (via Seamonkey Mail, LANG=en_US.UTF-8):
Subject: "[prefix] c'est du français"
results in reception of:
Subject: "[prefix]c'est du français"
** 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/1525954
Title:
mailman-2.1.20: option "subject_prefix": prefix trailing blanks are
removed when subject lines have non-ASCII characters
To manage notifications about this bug go to:
https://bugs.launchpad.net/mailman/+bug/1525954/+subscriptions
Public bug reported:
If a list is set to be an anonymous list, and a message is sent to the
-owner address, Mailman strips any existing DKIM header.
This means that if someone from a DMARC-restricted address (e.g.
yahoo.com) is sending a message that would get forwarded to an owner at
a DMARC-checking ISP (e.g. yahoo.com), the message is rejected: it fails
the DMARC check due to non-matching SPF and missing DKIM headers. If the
DKIM header was left intact, it should work, since Mailman didn't modify
the body for an -owner message.
It makes privacy sense to always strip DKIM headers on messages that
will be posted to an anonymous list. And it can work out okay because
DMARC munging mitigation can be applied afterwards.
But it doesn't seem to make sense to do the same for -owner messages on
anonymous lists. Mailman doesn't apply other anonymous list
modifications, like hiding the "From:" header, for -owner messages, as
far as I can tell.
This happens, by the way, due to Defaults.py:
# This is the pipeline which messages sent to the -owner address go through
OWNER_PIPELINE = [
'SpamDetect',
'Replybot',
'CleanseDKIM',
'OwnerRecips',
'ToOutgoing',
]
Is 'CleanseDKIM' really helpful in this -owner flow? Removing it would
solve this problem. Alternately, perhaps CleanseDKIM could be taught to
exempt -owner addresses on anonymous lists.
** Affects: mailman
Importance: Undecided
Status: New
** Tags: dkim dmarc
--
You received this bug notification because you are a member of Mailman
Coders, which is subscribed to GNU Mailman.
https://bugs.launchpad.net/bugs/1645901
Title:
DKIM signatures stripped from -owner messages with anonymous lists
To manage notifications about this bug go to:
https://bugs.launchpad.net/mailman/+bug/1645901/+subscriptions
Public bug reported:
If the list's membership is large enough that the "letter" chunks need
multiple pages, the "view more members" links at the bottom of the page
are not correct.
** 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/1637061
Title:
Incorrect URLs in admin Membership List when chunked
To manage notifications about this bug go to:
https://bugs.launchpad.net/mailman/+bug/1637061/+subscriptions
Public bug reported:
Mailman's paths.py adds the path to the invoking Python's
/usr/lib/pythonx.y/site-packages directory to sys.path in case it's
missing due to Python being invoked with -S or some other reason. It
should also add /usr/lib/pythonx.y/dist-packages.
** Affects: mailman
Importance: Medium
Assignee: Mark Sapiro (msapiro)
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/1621172
Title:
paths.py should add dist-packages
To manage notifications about this bug go to:
https://bugs.launchpad.net/mailman/+bug/1621172/+subscriptions
Public bug reported:
Following a search which returned more than admin_member_chunksize hits,
the letter links on the admin Membership List are Unicodes and renderd
as u'http... which doesn't work.
** Affects: mailman
Importance: Medium
Assignee: Mark Sapiro (msapiro)
Status: 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/1604544
Title:
Letter links on admin Membership List rendered as Unicodes.
To manage notifications about this bug go to:
https://bugs.launchpad.net/mailman/+bug/1604544/+subscriptions
Public bug reported:
If from_is_list feature is used, From: header's `realname' field is composed by original realname
and translation of '%(realname)s via %(lrn)s' which may contain non-ascii character.
The realname field is encoded before compose if nessesary, but translation part is not.
So From header may contain raw non-ascii character.
To fix this, do RFC 2047 encode after compose.
(There is another bug..., if servers language setting and mail list preferred language is differ,
translation has taken from servers language, not from mail list one. Attached patch contains
fix of it)
** Affects: mailman
Importance: Undecided
Status: New
** Attachment added: "CookHeaders.py.diff.txt"
https://bugs.launchpad.net/bugs/1643210/+attachment/4780159/+files/CookHead…
** 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/1643210
Title:
'from_is_list' does not RFC2047 encode correctly when translation
contains non-ascii char
To manage notifications about this bug go to:
https://bugs.launchpad.net/mailman/+bug/1643210/+subscriptions
Public bug reported:
The templates/de files
adminaddrchgack.txt
masthead.txt
nomoretoday.txt
probe.txt
refuse.txt
subauth.txt
are incorrectly encoded as utf-8 instead of iso-8859.1.
** Affects: mailman
Importance: Medium
Assignee: Mark Sapiro (msapiro)
Status: 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/1602779
Title:
Some German language templates are utf-8 encoded
To manage notifications about this bug go to:
https://bugs.launchpad.net/mailman/+bug/1602779/+subscriptions
Public bug reported:
This page gives a few methods for using SpamAssassin with mailman: https://wiki.list.org/DOC/4.23%20How%20do%20I%20use%20SpamAssassin%20with%2…
The second methods links to a set of instructions (http://www.jamesh.id.au/articles/mailman-spamassassin/) and then gives some additional steps to take.
There are two different patch files given that you need apply to
SpamAssassin.py to integrate SpamAssassin with mailman, depending on
what version. The second one (just after "And beginning with Mailman
2.1.21, the following patch is required instead of the above.") isn't
complete, there is an old import that needs to be deleted that isn't
mentioned.
Specifically, line 31, `from Mailman.Handlers.Moderate import matches_p`
needs to be deleted.
I just went through the instructions and it took a bit of debugging to find where the error logs were, and what the problem was.
** Affects: mailman
Importance: Undecided
Status: New
** Tags: documentation
--
You received this bug notification because you are a member of Mailman
Coders, which is subscribed to GNU Mailman.
https://bugs.launchpad.net/bugs/1666390
Title:
SpamAssassin documentation missing step from patch file
To manage notifications about this bug go to:
https://bugs.launchpad.net/mailman/+bug/1666390/+subscriptions
Public bug reported:
Hi,
I removed everything at my provider about mailinglists etc.
I still receive monthly this announcement:
-----------------
This is a reminder, sent out once a month, about your dosh.nl mailing
list memberships. It includes your subscription info and how to use
it to change it or unsubscribe from a list.
You can visit the URLs to change your membership status or
configuration, including unsubscribing, setting digest-style delivery
or disabling delivery altogether (e.g., for a vacation), and so on.
In addition to the URL interfaces, you can also use email to make such
changes. For more info, send a message to the '-request' address of
the list (for example, mailman-request(a)dosh.nl) containing just the
word 'help' in the message body, and an email message will be sent to
you with instructions.
If you have questions, problems, comments, etc, send them to
mailman-owner(a)dosh.nl. Thanks!
Passwords for lpvr55(a)gmail.com:
List Password // URL
---- --------
nieuwsbrief-sr(a)dosh.nl vuwauxif
http://lists.dosh.nl/mailman/options/nieuwsbrief-sr/lpvr55%40gmail.com
_____________________________
But
http://lists.dosh.nl/mailman/ doesn't exists anymore for a long time.
Please help me to stop the mailinglist completely.
Thanks!
bye,
Leonard van Rhijn (e-mail: doshweb(a)dosh.nl or lpvr55(a)gmail.com)
Rotterdam
** 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/1660989
Title:
impossible to end completely account of mailman
To manage notifications about this bug go to:
https://bugs.launchpad.net/mailman/+bug/1660989/+subscriptions