Procmail

Procmail is a program for filtering, sorting and storing email. It can be used both on mail clients and mail servers. It can be used to filter out spam, checking for viruses, to send automatic replies, etc.

Warning: Procmail is unmaintained (last update 2001), the author recommends using something else. An example for an alternative is courier-maildropAUR.

The goal of this article is to teach the configuration of procmail. This article assumes you already have either a email client (Mutt, nmh, etc) or a mail server (Sendmail, Postfix, etc) working, that can use (or requires) procmail. It also assumes you have at least basic knowledge on regular expressions. This article will give only a minimal explanation, for a complete manual, check the procmailrc(5).

Installation

Install the package procmailAUR.

Configuration

The configuration is going to be saved on ~/.procmailrc if this is the configuration for an email client, or on /etc/procmailrc if is going to be used by an email server.

Note: Be careful when testing your procmail configuration on sample messages you have received, as messages can be automatically bounced back to sender if there is an error in your configuration file. To avoid this potentially embarrassing situation, turn off bounces by passing -t to procmail, or setting the DELIVERED environment variable (procmailrc(5)).

The configuration is composed of two sections; assignments and recipes.

Assignments

The assignments section provides variables for procmail

PATH=/bin:/usr/bin
MAILDIR=$HOME/Mail
DEFAULT=$HOME/Mail/inbox
LOGFILE=/dev/null
SHELL=/bin/sh

Recipes

Recipes are the main section, they are the actual filters that do the actions. Recipes have the following format:

:0 [flags] [ : [locallockfile] ]
<zero or more conditions (one per line)>
<exactly one action line>

The conditions are extended regular expressions, with some few extra options. Conditions always start with an asterisk.

The action can be only a mailbox name, or an external program.

Flags and lockfile

For basic recipes, you do not need any flags. But they can be necessary if your script calls an external command. Here is a list of some of the most used flags:

  • f Consider the pipe as a filter.
  • w Wait for the filter or program to finish and check its exitcode (normally ignored); if the filter is unsuccessful, then the text will not have been filtered.

Using a : after the :0 is to use a lockfile. A lockfile is necessary to prevent problems if 2 or more instances of procmail are working at the same time (that may happen if 2 or more email arrive almost at the same moment).

You can set the name of the lockfile after the :

Conditions

A condition starts with an asterisk, following an extended regexp, like this one:

* ^From.* someperson@\w+.com

Action

An action can be something as simple as in that case, the mail that complies with the condition will be saved in the inbox.

An action can also start with a pipe, which means the message is going to be passed to the standard input of the command following the pipe. For example:

| /usr/bin/vendor_perl/spamc 

By default, once a recipe's action is done, the processing is over.

If the f flag was used, the command can alter the message and keep reading recipes. In this example, the SpamAssassin command will add headers to the mail, with its spam status level, which later can be used by another recipe to block it, or store it on a different mailbox.

Tips and tricks

SpamAssassin

Here is an example using SpamAssassin to block spam. You should already have SpamAssassin installed and working.

# By using the f and w flags and no condition, SpamAssassin is going add the X-Spam headers to every single mail, and then process other recipes.
# No lockfile is used.
:0fw
| /usr/bin/vendor_perl/spamc

# Messages with a 5 stars or higher spam level are going to be deleted right away
# And since we never touch any inbox, no lockfile is needed.
:0
* ^X-Spam-Level: \*\*\*\*\*
/dev/null

# If a mail with spam-status:yes was not deleted by previous line, it could be a false positive. So its going to be sent to an spam mailbox instead.
# Since we do not want the possibility of one procmail instance messing with another procmail instance, we use a lockfile
:0:
* ^X-Spam-Status: Yes
$HOME/mail/Spam

ClamAV

An example using the ClamAV antivirus.

Filtering mail to a different mailbox

If a coworker keeps using forward to send you jokes and other non serious stuff, but at the same time, writes you work related mails, you could save the forwarded mails (most likely not-work-related mails) on a different mailbox.

:0:
* ^From.*coworker@domain.com
* ^Subject.*FW:
$HOME/mail/jokes

Postfix Piping

To pipe from postfix open then add

After reloading , email will be send to procmail for filtering and delivery.

Exim

To use with Exim, invoke in the file, or edit to use it directly as a local delivery agent:

This was tested on Arch's standard Exim 4.94-2 package.

Sending to Dovecot

To forward to dovecot change the following assignments

The deliver will be the first attempt then Default will be the back up.

The advantage is the dovecot will have its databases up to date at all times.

Then to spam mail and deliver for example

Further information can be found here https://wiki2.dovecot.org/procmail

gollark: FORTRAN is apparently quite widely used in high performance computing, and there are recent standard versions.
gollark: It does not look fine. Two consecutive lines are differently indented, there's an async IIFE there with one line in it, and it's generally weird and inconsistent.
gollark: It has automatic semicolon insertion. If you are missing some and your code doesn't work it's probably horribly formatted somehow.
gollark: Anyway, it seems like your code is horribly accursed. I would bet nothing whatsoever it's a scope issue - you're trying to use commands outside of where it's defined. It would help if you posted all the code.
gollark: Semicolons are optional in JS.

See also

This article is issued from Archlinux. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.