HOME

TheInfoList



OR:

procmail is an
email Electronic mail (email or e-mail) is a method of exchanging messages ("mail") between people using electronic devices. Email was thus conceived as the electronic ( digital) version of, or counterpart to, mail, at a time when "mail" mean ...
server software component — specifically, a message delivery agent (MDA). It was one of the earliest
mail filter Email filtering is the processing of email to organize it according to specified criteria. The term can apply to the intervention of human intelligence, but most often refers to the automatic processing of messages at an SMTP server, possibly appl ...
programs. It is typically used in
Unix-like A Unix-like (sometimes referred to as UN*X or *nix) operating system is one that behaves in a manner similar to a Unix system, although not necessarily conforming to or being certified to any version of the Single UNIX Specification. A Unix-li ...
mail systems, using the mbox and Maildir storage formats. procmail was first developed in 1990, by Stephen R. van den Berg. Philip Guenther took over maintainership for a number of years, but relinquished the role in 2014. The software remained unmaintained for several years, and was believed to be defunct. In 2020 May, Stephen van den Berg resumed maintenance again. The program has since seen multiple releases and bug-fixes.


Uses

The most common use case for procmail is filter mail into different mailboxes, based on criteria such as sender
address An address is a collection of information, presented in a mostly fixed format, used to give the location of a building, apartment, or other structure or a plot of land, generally using political boundaries and street names as references, along ...
, subject keywords, and/or mailing list address. Another use is to let procmail call an external spam filter program, such as
SpamAssassin Apache SpamAssassin is a computer program used for e-mail spam filtering. It uses a variety of spam-detection techniques, including DNS and fuzzy checksum techniques, Bayesian filtering, external programs, blacklists and online databases. It is ...
. This method can allow for spam to be filtered or deleted. The procmail developers have built a
mailing list manager A mailing list is a collection of names and addresses used by an individual or an organization to send material to multiple recipients. The term is often extended to include the people subscribed to such a list, so the group of subscribers is re ...
called SmartList on top of procmail. Procmail is an early example of a mail filtering tool and language. It is a data-driven programming language, similar to earlier line-oriented languages such as sed and AWK.


Operation

procmail reads mail messages given to it on standard input, delivering or otherwise dispositioning each one. procmail is typically not invoked directly by the user. Rather, some other mail program will call upon procmail to deliver a message according to the user's wishes.
Message transfer agent Within the Internet email system, a message transfer agent (MTA), or mail transfer agent, or mail relay is software Software is a set of computer programs and associated software documentation, documentation and data (computing), data. Thi ...
s (MTAs), such as
Sendmail Sendmail is a general purpose internetwork email routing facility that supports many kinds of mail-transfer and delivery methods, including the Simple Mail Transfer Protocol (SMTP) used for email transport over the Internet. A descendant of the ...
or Postfix), can be configured to use procmail to deliver all mail. A mail retrieval agent such as fetchmail can invoke procmail as needed. The companion tool ''formail'' allows procmail to be applied to mail already in a mailbox. procmail's behavior is controlled by a config file (by default, in the user's
home directory A home directory is a file system directory on a multi-user operating system containing files for a given user of the system. The specifics of the home directory (such as its name and location) are defined by the operating system involved; for ...
) containing one or more ''recipes'', read in order. Each recipe consists of a ''mode'', zero or more ''conditions'', and an ''action''. Conditions are usually extended
regular expressions A regular expression (shortened as regex or regexp; sometimes referred to as rational expression) is a sequence of characters that specifies a search pattern in text. Usually such patterns are used by string-searching algorithms for "find" o ...
, although there are other forms. A recipe's action is taken only if all the conditions match (logical AND). If no conditions is given, the recipe is unconditional and the action always runs. The action specifies what is to be done with the message, such as deliver it to a particular mailbox, or discard it. A recipe and its action can be ''delivering'' or ''non-delivering''. Processing of a given message stops with the first delivering recipe (unless the recipe's mode flag specifies otherwise).


Example

A simple config file might look like this: MAILDIR=$HOME/mail DEFAULT=$MAILDIR/inbox :0: * ^List-Id: .* foo-announce The above routes mail from a hypothetical mailing list to a separate mailbox called , while delivering all other mail to the mailbox, both located under the directory.


Criticism

By default, procmail will "bounce" undeliverable mail back to the sender, or discard it entirely. A mistake in the config file can result in all mail being rejected or discarded. The configuration file format is sometimes regarded as cryptic. procmail is not well-suited for processing mail involving
Multipurpose Internet Mail Extensions Multipurpose Internet Mail Extensions (MIME) is an Internet standard that extends the format of email messages to support text in character sets other than ASCII, as well as attachments of audio, video, images, and application programs. Message ...
(MIME). It cannot decode or recognize MIME-specific headers or international characters. For approximately ten years, procmail was not maintained, and multiple serious security vulnerabilities were discovered in the intervening time span (since fixed).


See also


Mail architecture

*
Email Electronic mail (email or e-mail) is a method of exchanging messages ("mail") between people using electronic devices. Email was thus conceived as the electronic ( digital) version of, or counterpart to, mail, at a time when "mail" mean ...
*
Message transfer agent Within the Internet email system, a message transfer agent (MTA), or mail transfer agent, or mail relay is software Software is a set of computer programs and associated software documentation, documentation and data (computing), data. Thi ...
* Message delivery agent * Mail retrieval agent *
Simple Mail Transfer Protocol The Simple Mail Transfer Protocol (SMTP) is an Internet standard communication protocol for electronic mail transmission. Mail servers and other message transfer agents use SMTP to send and receive mail messages. User-level email clients typic ...


Similar programs and technologies

* fdm (fetch, filter and deliver mail) *
maildrop Maildrop is a Mail delivery agent used by the Courier Mail Server The Courier Mail Server is a mail transfer agent (MTA) server that provides SMTP, IMAP, POP3, SMAP, webmail, and mailing list services with individual components. It is best ...
* Dovecot * Sieve mail filtering language


References


Further reading

*


External links

* — Current source code repository and distribution point * — Procmail homepage, as it appeared when it was working * {{cite web , url = http://procmail.markmail.org/ , title = Procmail Home - MarkMail - Community libraries — Searchable archives of the procmail mailing list Mail delivery agents Cross-platform software