Mailman: Difference between revisions

From Wikitech
Content deleted Content added
→‎Upgrading Mailman3: clear static cache
Line 9: Line 9:


=== Create a mailing list ===
=== Create a mailing list ===
There are 2 ways to create a mailing list:
# Via the web interface at [http://lists.wikimedia.org/mailman/create http://lists.wikimedia.org/mailman/create] - a ''list's creator password'' is needed. The ''site password'' works as well.
# Via shell on the mailing lists server (lists1001.wikimedia.org). As root, run <tt>newlist</tt>.

In both cases, it's '''not necessary to add e-mail aliases''' anywhere! These are handled automatically by mailman with the mail transfer agent configured ([[exim]]). When creating a new mailing list, '''make sure it follows the [[m:Mailing_lists/Standardization#Naming_scheme|Naming scheme]]'''.


==== Step-by-step procedure using the UI ====
==== Step-by-step procedure using the UI ====

* Have a phabricator task with the following info: ''Requested name, Initial list administrator's email address, Secondary list administrator's email address, description.''
* Have the ''list creator'' or ''master'' passwords.
* Go to https://lists.wikimedia.org/mailman/create
*Fill the "<u>Name of list</u>" and "<u>Initial list owner address</u>" fields and set the "<u>Auto-generate initial list password?</u>" field to '''Yes'''
* Click on "Create List". This will take you to a page with 2 links, the ''info'' link and the ''admin'' link. Copy/Paste them on a note pad
* Follow the ''admin'' link (<nowiki>https://lists.wikimedia.org/mailman/admin/</nowiki><list-name>). Use the ''master'' password to enter. Leave everything as is except:
**Check the public name of the list and eventually adjust its case
**Add second admin
**Description
** Select Privacy settings and update 'What steps are required for subscription' to 'Require approval'
* Reply to ticket with info and admin link, let the requester know that subscriptions have been set to require approval, however, all other options have been left with their default settings
* Add the list to [[m:Mailing lists/Overview]], or tell the requester to.
Note: Sample Phabricator ticket [[phab:T207283|T207283]]


=== Disable or re-enable a mailing list ===
=== Disable or re-enable a mailing list ===
Sometimes a mailing list may be requested to be removed but not deleted from the server because the archives may still be used such as old announcement lists. Disabling and re-enabling a list can be done through the mailman interface by list administrators but usually it is easier for someone who is experienced to handle it due to the complexity of mailman configuration.

A shell script exists on the lists server under <tt>/usr/local/sbin/</tt> called <tt>disable_list</tt>. The script can be used to disable and enable lists easily and consistently.

# Usage: ./disable_list [-e|--enable] <listname>

==== Real world example (from T200733) ====
<pre>
[lists1001:~] $ sudo disable_list performance
/var/lib/mailman/data/heldmsg-performance-207.pck
/var/lib/mailman/data/heldmsg-performance-203.pck
/var/lib/mailman/data/heldmsg-performance-201.pck
/var/lib/mailman/data/heldmsg-performance-205.pck
/var/lib/mailman/data/heldmsg-performance-204.pck
/var/lib/mailman/data/heldmsg-performance-202.pck
/var/lib/mailman/data/heldmsg-performance-200.pck
/var/lib/mailman/data/heldmsg-performance-206.pck
performance disabled. Archives should be available at current location, all mail should be moderated and the list should not be on the listinfo page.
[lists1001:~] $
</pre>

==== Commands ====
The shell script simply does the following to disable a list:

# list=LISTNAME
# echo "advertised=0" | config_list -i /dev/stdin $list
# echo "emergency=1" | config_list -i /dev/stdin $list
# echo "member_moderation_action=2" | config_list -i /dev/stdin $list
# echo "generic_nonmember_action=2" | config_list -i /dev/stdin $list
# echo "ban_list=[^.*@.*]" | config_list -i /dev/stdin $list
# rm /var/lib/mailman/data/heldmsg-$list-*.pck

And to re-enable a list, it does the opposite of the above.
# list=LISTNAME
# echo "advertised=1" | config_list -i /dev/stdin $list
# echo "emergency=0" | config_list -i /dev/stdin $list
# echo "member_moderation_action=0" | config_list -i /dev/stdin $list
# echo "generic_nonmember_action=1" | config_list -i /dev/stdin $list
# echo "ban_list=[]" | config_list -i /dev/stdin $list

After using this script it's nice if you login one last time on the listinfo page and remove the former admins from the "list run by" field. This makes sure they never get any spam to the list owner alias. When you login you will see a message that "emergency moderation" is enabled. This tells you the script did the job and the list is disabled.


=== Remove a mailing list ===
=== Remove a mailing list ===
Removing a mailing list should only be done if the list will not be used at all and archives don't need to be public (otherwise see above). To remove a list but keep the archives stored, run (on the lists server):
# rmlist ''listname''
To also remove all archives, use:
# rmlist -a ''listname''


=== Remove a message from the mailing list archives ===
=== Remove a message from the mailing list archives ===
Sometimes you are forced to [[remove a message from mailing list archive]] by court order or other 'command' (such as request from legal). The linked instructions tell why it is a procedure best avoided but also how to do it if legally obligated.

Wikimedia's mailing list archives, though public, are no longer indexed by search engines as they are excluded in <tt>robots.txt</tt>, other archives (such as Gmane) are indexed.

In mailman3, log in with the root account (credentials in pwstore), and there will be a "Delete this message" button in hyperkitty if you're looking at the specific post.


=== Export a listing of all subscribers to a mailing list ===
=== Export a listing of all subscribers to a mailing list ===
* Login to the mailing list server and run:
<tt>/var/lib/mailman/bin/list_members -f -o <file to write to> <list name></tt>
In Mailman3 run:<syntaxhighlight lang="bash">
$ sudo mailman-wrapper members <listname>@lists.wikimedia.org
</syntaxhighlight>


=== Check if an email address is subscribed to any lists ===
=== Check if an email address is subscribed to any lists ===
<tt>[lists1001:~] $ sudo /var/lib/mailman/bin/find_member <email address></tt>
In Mailman3 run:<syntaxhighlight lang="bash">
$ sudo remove_from_lists --dry-run <email>
</syntaxhighlight>


=== Remove an individual from all mailing lists ===
=== Remove an individual from all mailing lists ===
Occasionally we need to remove an individual from every mailing list we have, such as when an email address no longer works but we don't want mailman to turn it off due to bounce detection. The remove_members command is the solution - this is a command line utility to remove one or more email addresses from a specific list or from all lists.
* remove an individual from a specific list:
/var/lib/mailman/bin/remove_members mylist user@example.com
* remove two addresses from all lists:
/var/lib/mailman/bin/remove_members --nouserack --fromall user1@example.com user2@example.com
* remove from all private lists:
/var/lib/mailman/bin/remove_from_private.sh <email>
In Mailman3 you can do:<syntaxhighlight lang="bash">
$ sudo remove_from_lists <email>
$ sudo remove_from_lists <email> --only-private


=== Reset a user's password ===
</syntaxhighlight>


=== Reset the admin password of a list ===

==== TLDR ====

* ssh lists1001.wikimedia.org
* list_name="engineering" ; sudo /var/lib/mailman/bin/change_pw -l $list_name -p $(pwgen -c1 -s 12)

(replace "engineering" with the list name)

==== details ====

* If there is a request to reset a list password, first go to the admin page of the list, example if the list is called "wikimedia-l", the URL is: [https://lists.wikimedia.org/mailman/admin/wikimedia-l https://lists.wikimedia.org/mailman/admin/wikimedia-l]
* Check who is listed in the "list run by" sentence in the footer. Note how when you hover over the admin names there is a mailto: link with a special list owner alias, example for wikimedia-l it's ''wikimedia-l-owner@lists.wikimedia.org''. Use that address to contact list admins, not random personal emails. It's the best way to ensure the request for a reset is valid and ALL admins get the new password, not just one of them, causing follow-up requests. Realize that there is just a single admin password all admins have to share and keep in sync.
* If it appears the request can be handled by one of the existing list admins, for example there are multiple admins and not all of them have stated they don't know the passwords, let them handle it and decentralize admin work where possible. Only if really needed, proceed to:
* Get the mailman master password from [[pwstore]]
* Login on the admin page using the master password and go to the "Passwords" section.
* Fill out the "Enter new administrator password:" form with a new random password and repeat it. There are also poster and moderator passwords but they are almost never used and if they are then let the admins handle giving out passwords to moderators. Click "Submit your changes"
* Send the new password to the list owner address described above. If a phabricator ticket exists for this (recommended!) and list admins are on phabricator, add them to ticket and resolve.

OR (alternative way to do it)

* ssh to the list server (currently lists1001.wikimedia.org)
* cd /var/lib/mailman/bin/
* ./change_pw --help
* ./change_pw -l <listname> -p <newpassword>
* This should automatically mail the list owner address because you did not use the -q (quiet) option. So if the people listed as admins are current everything should be done.


=== Rename a mailing list ===
=== Rename a mailing list ===
{{Outdated-inline|note=Needs to be updated for Mailman3}}
Renaming a mailing list in the past was a fairly hands-on approach and required confidence with mailman at each stage. While this has not changed, a shell script has been made which makes the process more easier and more streamlined and reduces the risk of things going wrong within mailman itself. Although this is true, renames should be avoided without someone who is confident with mailman on-hand just in case any sort of issues pop up. Tailing the error and bounce logs as well before and after would be ideal.


The script can be ran on the lists server by running:
/usr/local/sbin/rename_list <old list> <new list>

The password and email address of the list can be set to anything (preferable not the list administrator's address) as it will be overwritten later on by the script.

==== Manual ====
The manual process is documented below (and may be out of date as new optimisations are found) which can be done if the script does not work or the list is 'weird' in one way or another. It is best to avoid the manual method as it introduces more risks and human errors.

# Before you begin, verify that the requester is actually an administrator of the mailman list.
# Send an email to the -owner address of the list that you plan to rename a list.
# Create a [https://lists.wikimedia.org/mailman/create new list].
## Use the mailman master password as creator's (authentication) password.
## Follow the standardized [http://meta.wikimedia.org/wiki/Mailing_lists/Standardization#Naming_scheme naming scheme] where possible.
## Use your email as the initial list creator and receive auto-created password (will be overwritten by the move).
## Log into the administrative interface (https://lists.wikimedia.org/mailman/admin/<listname>) with the generated password or the site password.
# Before the next step be prepared to change the "real_name" value of the list in the interface, but don't send it yet. Have the mailman master password ready.
# Go to the lists server shell and copy the [http://www.mail-archive.com/mailman-users@python.org/msg43290.html config.pck] (this includes all settings, users, passwords!) and others (pending.pck, request.pck files) from old to the new list.
# Reload the administrative interface link and be logged out, because you have just overwritten the users and passwords as well, use the mailman master password and login again.
# Immediately change the real_name in the administrative interface.
# You should now see other users as list administrators and members, and now you can take your time and adjust other settings like the description field and "Prefix for subject line of list postings" and update the name there as well or let others do it.
# Copy the archive mbox from the old to new .mbox directory and rename it to reflect the new list name.
# Fix permissions (chown list:list *.mbox, chmod 664 *.mbox)
# Use [http://mail.python.org/pipermail/mailman-users/2003-August/031026.html arch] to recreate all html files from mbox to fix archive links.
# Decide if you want to keep old archives in place, you probably do. Don't break URLs.
# Add the old list email address to "acceptable aliases" on the new list administrative interface
# Merge a [https://gerrit.wikimedia.org/r/#/c/229978/3/files/exim/listserver_aliases mail alias] to redirect mail to the old list.
# Merge an [https://gerrit.wikimedia.org/r/#/c/229978/3/modules/mailman/templates/lists.wikimedia.org.erb url redirect] for the old listinfo page.
# Merge on palladium, run puppet on the mailing lists server. Apache and exim should automatically pick the change up.
# Test URL redirect.
# Test mail by announcing the change to the old list address.


=== Add a list to Gmane ===
=== Add a list to Gmane ===
A new list can be added to Gmane very easily if the first message has not already been sent or history is not important (see [[#Step-by-step_procedure|creation steps above, #8]]). If the history needs to be imported, a ticket should be file in Phabricator with projects 'Wikimedia-Mailing-list' and 'operations' ([https://phabricator.wikimedia.org/maniphest/task/create/?projects=Wikimedia-Mailing-lists%20operations easy link] stating which list needs to imported and to which Gmane group if it exists already.
A new list can be added to Gmane very easily if the first message has not already been sent or history is not important. If the history needs to be imported, a ticket should be file in Phabricator with projects 'Wikimedia-Mailing-list' and 'operations' ([https://phabricator.wikimedia.org/maniphest/task/create/?projects=Wikimedia-Mailing-lists%20operations easy link] stating which list needs to imported and to which Gmane group if it exists already.

=== Alter arbcom-l archive access list ===
{{historical}}
After a previous data leak, the English Wikipedia Arbitration Committee requested a high level of security for access to arbcom-l archives. We now have a second layer of password authentication in addition to Mailman's controls, implemented in Apache. Using HTTP authentication allows each user's page views to be tracked in the apache access logs.

To add a user:

* Have the user generate a GPG private key, and have them establish a link between their public key and their Wikipedia user account by posting the public key on Wikipedia. For Windows users, this can be done by following [https://en.wikipedia.org/wiki/User:Tim_Starling/Gpg4win_tutorial this tutorial].
* Generate a password for them, for example using <tt>pwgen 24</tt>
* Choose a username.
* Update the htdigest file in the puppet private repo using <tt>htdigest /srv/private/modules/secret/secrets/mailman/arbcom-l.htdigest 'arbcom-l archive' &lt;username></tt>
* Push the update out to the mailing lists server in the usual way.
* Send the new password to the user using encrypted email.

To do other things:


* Edit puppetmaster1001:/srv/private/modules/secret/secrets/mailman/arbcom-l.htdigest, do a commit and run puppet on the mailing list servers (<tt>lists1001.wikimedia.org</tt> atm)


=== Docs and links ===
=== Docs and links ===

Revision as of 14:00, 30 April 2021

See also

How To

Create a mailing list

Step-by-step procedure using the UI

Disable or re-enable a mailing list

Remove a mailing list

Remove a message from the mailing list archives

Export a listing of all subscribers to a mailing list

Check if an email address is subscribed to any lists

Remove an individual from all mailing lists

Reset a user's password

Rename a mailing list

Add a list to Gmane

A new list can be added to Gmane very easily if the first message has not already been sent or history is not important. If the history needs to be imported, a ticket should be file in Phabricator with projects 'Wikimedia-Mailing-list' and 'operations' (easy link stating which list needs to imported and to which Gmane group if it exists already.


Docs and links

Authorized recipients for ops@lists.wikimedia.org

Anyone with a signed NDA can be on the ops@lists.wikimedia.org mailing list. For a list of signed NDAs for staff/contractors there is T83783, WMF-NDA and ldap/nda (or ldap/wmf).

Migrate servers

See Mailman/Migration for comments made about past migrations (lily to sodium, sodium to fermium, fermium to lists1001).

Upgrading Mailman3

When upgrading Mailman3 packages for a version that includes schema changes, use the following process.

  1. Downtime host in icinga
  2. Disable puppet
  3. Manually stop mailman3 and mailman3-web systemd services
  4. Run apt to install the new packages
  5. Run sudo mailman-wrapper help to apply the mailman3 schema updates (yes, running just the "help" command will apply the schema changes)
  6. Run sudo mailman-wrapper help again to make sure the schema update didn't obviously break anything.
  7. Run sudo mailman-web migrate to apply the mailman3 schema updates
  8. Clear static CSS/JS caches: sudo mailman-web collectstatic --clear --noinput && sudo mailman-web compress
  9. Start mailman3 and mailman3-web systemd services again, keep an eye on errors in the logs
  10. Re-enable puppet and remove icinga downtime if it hasn't expired yet.

Configuration details

The new Mailman setup lives on lists1001, and uses the standard Debian package mailman. The mailing list state is under /var/lib/mailman/, the global configuration is in /etc/mailman/.

The mail server used is Exim, the web server used is Apache.

Mailman setup

The local mailman configuration file is available to see on Diffusion. Configuration is mostly default version config with few changes (L96 and below are non-default).

Mail server setup

Near the top of the exim4.conf file, there are several macros related to Mailman. These define system-specific settings/locations used by the router(s) and transport(s) in the rest of the configuration file. For a Debian/Ubuntu Mailman package, the following macro's are accurate:

# Mailman
MAILMAN_HOME = /usr/lib/mailman
MAILMAN_LISTS_HOME = /var/lib/mailman
MAILMAN_WRAP = MAILMAN_HOME/mail/mailman
MAILMAN_UID = list
MAILMAN_GID = list

There's a domain list that contains a list of all domains that can "contain" mailing lists, i.e. the domains for which the Mailman router(s) should run. This list is also used as part of the "local domains" list, the list for which this mail server accepts mail and handles it locally.

domainlist mailman_domains = lists.wikimedia.org
domainlist local_domains = +system_domains : +mailman_domains

Main configuration

Several tweaks have been made to the main configuration to make Mailman delivery go smooth.

In case of high load / lots of incoming connections, mail from the local host (including Mailman) and other Wikimedia servers are given preference:

smtp_reserve_hosts = <; 127.0.0.1 ; ::1 ; +wikimedia_nets

For big mailing lists, Mailman needs to send a lot of recipients per mail / connection. Per default, Exim only queues mails that have > 10 recipients, to be delivered by a subsequent queue runner, which can cause significant delays. The default Mailman limit is 500 recipients per connection, so make Exim accept that:

smtp_accept_queue_per_connection = 500

Allow Exim to do 50 deliveries to remote hosts in parallel (this means 50 processes):

remote_max_parallel = 50

Routers

In Exim, the routers determine if a certain e-mail address is accepted for delivery or mail transport, and how it's going to be handled (routed). For Mailman, the following list router accepts a recipient that:

  • has a domain in the domain list mailman_domains
  • has a Mailman configuration file matching the local part (i.e. the mailing list exists)

Certain postfixes of the localpart, e.g. "-bounces" are accepted as well.

When the router accepts the recipient address, it's set up for delivery using the list transport (see below).

# Mailman list handling. Test the mailing list address without suffix
# first, as a mailing list like wikifi-admin is a valid list name.

list:
        driver = accept
        domains = +mailman_domains
        require_files = MAILMAN_LISTS_HOME/lists/$local_part/config.pck
        transport = list

list_suffix:
        driver = accept
        domains = +mailman_domains
        require_files = MAILMAN_LISTS_HOME/lists/$local_part/config.pck
        local_part_suffix = -bounces : -bounces+* : \
                                -confirm+* : -join : -leave : \
                                -owner : -request : -admin : \
                                -subscribe : -unsubscribe
        transport = list

If the conditions for this router fail (i.e. the router is not run) then the no_more makes sure that no subsequent routers will be tried (in the current configuration there are none that might accept), and the recipient address is failed.

Transports

An Exim transport configures a way of transporting a message, e.g. over the network (SMTP), to a file (MBOX/Maildir/etc) or using a pipe to a process. The following transport sets up delivery to Mailman:

# Mailman pipe transport

list:
        driver = pipe
        command = MAILMAN_WRAP \
                '${if def:local_part_suffix \
                        {${sg{$local_part_suffix}{-(\\w+)(\\+.*)?}{\$1}}} \
                        {post}}' \
                $local_part
        current_directory = MAILMAN_LISTS_HOME
        home_directory = MAILMAN_LISTS_HOME
        user = MAILMAN_UID
        group = MAILMAN_GID

For content scanning, temporary mbox files are written to /var/spool/exim4/scan, and deleted after scanning. Similarly, Exim keeps "hints" databases in /var/spool/exim4/db, which are non-essential caches. To improve performance somewhat, these directory is mounted as a tmpfs filesystem, using the following line in /etc/fstab:

tmpfs   /var/spool/exim4/scan   tmpfs   defaults        0       0
tmpfs   /var/spool/exim4/db     tmpfs   defaults        0       0

Mailing list privacy protection

It has happened in the past that by hitting on the Reply All button in one's e-mail client, private info from an internal list leaked to a public mailing list because it was listed in the CC list, and the imprudent sender did not notice. In order to try to catch these incidents, a little filter has been implemented.

  1. If the To: or CC: of a message body matches an item in a list of private mailing list addresses, and
  2. the list of recipients as known by the mailing list server contains a Wikimedia mailing list that's not a private mailing lists, then
  3. the message is bounced with the message Message rejected for privacy protection: The list of recipients contains both private and public lists.

It's possible to circumvent this restriction by sending to the private list as a BCC, Blind Carbon Copy.

This filter is implemented using an Exim system filter:

# Exim filter # Mailing list privacy protection if foranyaddress $h_To:,$h_Cc: ( $thisaddress matches "\\N^(internal-l|private-l)@(lists\.|mail\.)?wiki[mp]edia\.org$\\N" ) then if foranyaddress $recipients ( $thisaddress matches "\\N@lists\.wikimedia\.org$\\N" and $thisaddress does not match "\\N^(internal-l|private-l)@\\N" ) then fail text "Message rejected for privacy protection: The list of recipients contains both private and public mailing lists" endif endif

This filter is enabled in the configuration file using

system_filter = CONFDIR/system_filter

Address header rewriting

It turned out that, after the migration, many users kept sending mails to both the old and the new mailing list addresses, thereby causing duplicate messages. To reduce this, Exim has been configured to rewrite the old mailing list addresses to the new ones in the To: and CC: headers, using the following option on the list transport:

list: ... # Rewrite body headers of old mailing list addresses to new ones headers_rewrite = \N^.*@(mail\.)?wiki[mp]edia\.org$\N "${if exists{MAILMAN_LISTS_HOME/lists/$local_part/config.pck}{$local_part@lists.wikimedia.org}fail}" ct

Web server setup

To get Mailman running with Apache the puppet class role::lists is applied which uses module mailman. Puppet module mailman uses puppet module Apache which sets up Apache and the site config is in the template lists.wikimedia.org.erb.

See also http://www.gnu.org/software/mailman/mailman-install/node10.html

SpamAssassin

SpamAssassin is installed using the default Ubuntu spamassassin package. A couple of configuration changes were made.

By default, spamd, if enabled, runs as root. To change this:

# adduser --system --home /var/lock/spamassassin --group --disabled-password --disabled-login spamd

The following settings were modified in /etc/default/spamassassin:

# Change to one to enable spamd
ENABLED=1

User preferences are disabled, spamd listens on the loopback interface only, and runs as user/group spamd:

OPTIONS="--max-children 5 --nouser-config --listen-ip=127.0.0.1 -u spamd -g spamd"

Run spamd with nice level 10:

# Set nice level of spamd
NICE="--nicelevel 10"

Fighting spam in mailman

All list mail is sent through spamassassin which adds headers with a spam status and score.

This does not mean though that it automatically discards any messages. Only messages with a really high spam score (>= 6) are discarded immediately, below that messages are just tagged with a header. What actions to take based on this information is left to the list admins.

Spam from non-members

Most spam comes from generic spammers which harvested potential email address over the web and mailed them all: such spammers don't bother subscribing to the list. In contrast, it's rather rare for a public list to ever need receiving emails from non-members.

Multiple list admins report that they greatly reduced the amount of spam received simply by stopping acknowledging the messages, because in this way the spammer doesn't know the address is real.

This configuration is in Privacy options > Sender filter > generic_nonmember_action and you can set to "Discard". You can also reach this configuration at https://lists.wikimedia.org/mailman/admin/YOURLIST/?VARHELP=privacy/sender/hold_these_nonmembers .

Do NOT discard emails from non-members if there is any chance that real people need to write to your list's subscribers without subscribing (typical examples: private committee lists, feedback lists). Just avoid "bounce" and hold for moderation; if it becomes impossible to handle moderated messages, try to stop acknowledging the receipt of messages held for moderation.

Spam scores

The mailman UI supports this via the configuration variable header_filter_rules aka. 'Spam Filter Regexp' (description: Filter rules to match against the headers of a message.). See also https://www.gnu.org/software/mailman/mailman-admin/sender-filters.html

This can be found in the administrative interface in Privacy options...-> [Spam filters] -> Spam Filter Regexp (or visit directly the URL, replacing YOURLIST with your list name: https://lists.wikimedia.org/mailman/admin/YOURLIST/?VARHELP=privacy/spam/header_filter_rules ).

You can filter X-Spam-Score, which on lists.wikimedia.org as of 2017 is indicated with pluses (+) instead of stars (*):

X-Spam-Score:[^+]*[+]{4,}

This line matches when 4 or more pluses are encountered on the same line, meaning a score of 4 or more. SpamAssassin considers messages to be spam over 4 points. See some examples of real-life SpamAssassin scores (X-Spam-Report).

Additionally you have to pick an action for that which can be one of:

Defer  Hold  Reject  Discard  Accept

If you use "Hold" you will have to manually check the moderation queue every once in a while, but can avoid possible false positives, if you use "Discard" you don't have to do anything but _might_ discard some ham without noticing, though that is unlikely with the scores proposed above.

If spam is rampant, you could try and add other, more specific blacklists. For instance, if you find that a good portion of the spam is in BRBL or in MailSpike whitelist, you could add a rule after the score-based one, like

(RCVD_IN_BRBL_LASTEXT|RCVD_IN_MSPIKE_H2|RCVD_IN_MSPIKE_H1)

and set it to "Hold" messages. Do not discard messages based on hand-made filters like this, they may match good messages too. Instead, use "Hold" and go check the moderation queue in the next days, to ensure there are no false positives. Note however that "Hold" seems to override other "Discard" filters, so such a filter may prevent discarding of messages from non-members etc. if you have such discards configured.

DMARC Compatibility

DMARC is an email authentication mechanism intended to combat phishing and spam. To quote from dmarc.org: "DMARC, which stands for “Domain-based Message Authentication, Reporting & Conformance”, is an email authentication policy, and reporting protocol. It builds on the widely deployed SPF and DKIM protocols, adding linkage to the author (“From:”) domain name, published policies for recipient handling of authentication failures, and reporting from receivers to senders, to improve and monitor protection of the domain from fraudulent email."

Several large mail providers (yahoo, aol, etc.) have deployed strict DMARC policies. Unfortunately, these policies interfere with the operation of mailing list software like mailman. This is because mailman modifies the email contents (causing DKIM failure) and attempts to re-mail messages using from addresses that belong to remote mail systems (causing SPF failure). This results in lost email from list users with a strict DMARC policy set by their provider.

To work around this issue, beginning August 1, 2017, messages whose original From: domain publishes a DMARC policy of p=reject or p=quarantine will...

  • Have the From: header rewritten (Munged) to the posters name 'via the list' <list_address> and
  • Merge the poster's address into the Reply-To: header

To reiterate, only when a users email provider enforces a strict DMARC policy will from address be rewritten.

While rewriting the from header may not be ideal this is a necessary default setting to ensure reliability of the mailing list system. Without it messages may be lost silently, or with cryptic error DSN messages returned to the poster.

This is implemented in mailman like so:

# /etc/mailman/mm_cfg.py
DEFAULT_DMARC_MODERATION_ACTION=1

List administrators may also choose a different DMARC moderation action on a per-list basis by navigating to Privacy options > Sender filters. The possible dmarc moderation actions include:

  • Munge From (default) - Rewrite the From: and Reply-To:
  • Wrap Message - Wrap the message as a message/rfc822 sub-part in a MIME format outer message with From: and Reply-To: as above.
  • Reject - Reject the post 
  • Discard - Discard the post

Backups

lists1001 is backed up to helium using Bacula. The path on the source is /var/lib/mailman. The path on the target is whatever you choose in bconsole.

Tested failure modes

Because mail delivery and transport should be reliable, I have tested what happens in certain failure modes, e.g. when SpamAssassin's spamd daemon is not running.

Spamd not running

Because of the /defer_ok modifiers in the Exim ACLs, Exim will act as if no spam filtering attempts are made when spamd is not running, and will accept the message. The following lines are logged:

spam acl condition: warning - spamd connection to 127.0.0.1, port 783 failed: Connection refused
spam acl condition: all spamd servers failed
H=xxx.xxxxxxx.xx [xx.xx.xx.xx]:xxxx I=[145.97.39.157]:25 U=exim Warning: ACL "warn" statement skipped: condition test deferred

Mailman not running

If the Mailman queue runner daemons are not running, incoming messages will still get delivered to the Mailman queue by Exim. However, nothing else will happen until the Mailman processes are started.

Monitoring

We monitor a few key components:

  • Processes
    • mailman_ctl: Is the control process in the list of running processes?
      • If not, check logs in /var/log/mailman and/or try restarting mailman.service.
    • mailman_qrunner: Is the queue runner process in the list of running processes?
      • If not, check logs in /var/log/mailman and/or try restarting mailman.service.
  • HTTP
    • mailman archives: Are the archives for wikimedia-l reachable?
      • If not, check apache.service.
    • mailman list info: Is the subscribe page for wikimedia-l reachable?
      • If not, check apache.service.
  • Queues
    • mailman_queue_size: Is there a backlog in the bounces, in, and virgin queues?
      • If so, check:
        • dashboard
        • logs in /var/log/mailman
        • you may have to look at what is in /var/lib/mailman/qfiles/(bounces|in|virgin) to see what is not sending.
    • Mailman outbound queue hours until empty: How long will it take to drain the out queue?
      • If it's going to take a long time, check:
        • Date and time of day. Historically, the first of the month has the longest queue of about 15+ hours long and 08:00 UTC each day about 1+ hours long.
        • dashboard
        • logs in /var/log/mailman and /var/log/exim4
        • you may have to look at the messages themselves in /var/lib/mailman/qfiles/out to see what is not sending.

Who has the passwords?

The following people have the master (site) password that can be used to login to the admin interface of all lists.

  • all members of the operations team or users with root access on the ops bastion host
  • Patrick Earley (WMF)
  • Joe Sutherland (WMF)
  • Nick Wilson (WMF)

The following people have the list creator password that can be used to create new lists but not login to existing lists. This section is outdated as of 2019-03-18

  • all members of the operations team or users with root access on the ops bastion host
  • James Alexander
  • (potentially other CA team members via James)
  • User:Odder
  • User:Barras

The following people have shell access on the list server. They can run mailman binaries which includes changing list configs and passwords.

  • all members of the operations team or users with root access on the ops bastion host