DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 

maildelivery(F)


maildelivery -- user delivery specification file

Format

field FS pattern FS action FS result FS filename [ arg ... ]

Description

The delivery of mail by the local channel can run through various courses, including using a user-tailorable file. The delivery follows the following strategy, giving up at any point it considers the message delivered:

The five fields of a maildelivery file are:


field
is name of a field that is to be searched for a pattern. This is any header field that you might find in a message. The most commonly used headers are: From, To, cc, Subject and Sender. As well as the standard headers, there are some pseudo-headers that can also be used. These are:


source
The out-of-band sender information. This is the address MMDF would use for reporting delivery problems with the message.

addr
The address that was used to mail to you, normally yourname or yourname=string (see below).

default
If the message has not been delivered yet, this field is matched.

*
This case is always true regardless of any other action.

pattern
is some sequence of characters that may be matched in the above field. Case is not significant.

action
is one of the mail delivery actions supported by the local channel. Currently supported actions are:


file, >
Append the message to the given file in the filename field.

pipe, |
Start up a process defined by the filename field with the message taken as its standard input. Messages are prefixed with ``From'' header.

destroy
Throws the message away.

For piped commands, the exit status of the command is significant. An exit status of 0 implies that the command succeeded and everything went well. An exit status of octal 0300-0377 indicates that a permanent failure occurred and the message should be rejected. Any other exit status indicates a temporary failure and the delivery attempt will be aborted and restarted at a later time.


result
is one of the letters A, R or ? which stand for Accept, Reject and ``Accept if not delivered yet''. They have the following effects:


A
If the result of this line's action is OK, then the message can be considered delivered.

R
The message is not to be considered delivered by this action.

?
This is equivalent to A except that the action is not carried out if the message has already been accepted.

filename [ arg ... ]
Used in conjunction with the action field:

The field separator character (FS) can be a tab, space or comma (,). These characters can be included within a field by quoting them with double quotes ("); double quotes can be included preceded by a backslash (\).

The file is always read completely so that several matches can be made, and several actions taken. As a security check, the .maildelivery file must be owned by either the user or root, and must not have group or general write permission. In addition the system delivery file has the above restrictions but must also be owned by root. If the field specified does not need a value, a dash (-), or similar symbol is usually inserted to show that the field is present but not used.

MMDF treats local addresses that contain an equal sign (=) in a special manner. Everything in a local address from an equal sign to the ``@'' is ignored and passed on to the local channel. The local channel will make the entire string available for matching against the ``addr'' string of the MMDF file. For example, if you were to subscribe to a digest as ``foo=digest@bar.NET'', the submit command and the local channel will verify that it is legal to deliver to ``foo'', but then the entire string ``foo=digest'' will be available for string matching against the contents of the .maildelivery file ``addr'' field.

Environment

The environment in which piped programs are run contains a few standard features, specifically:

HOME
Set to the user's home directory.

USER
Set to the user's login name.

SHELL
Set to the user's login shell (defaults to /bin/sh).

The default umask is set to 077 (a very protective creation mask). A shell script can be run first to set up more complex environments.

Built-in variables

There are certain built-in variables that you can give as the arguments (args) to a piped program:

$(address)
The address that was used to mail to you, normally `yourname' or `yourname=string'.

$(info)
The info field from the internal mail header; probably only of interest to system administrators.

$(reply-to)
The ``Reply-To:'' field (or the ``From:'' field if the former is missing); this can be used for automatic replies.

$(sender)
The return address for the message.

$(size)
The size in bytes of the message.
Pipe actions that expand to nothing are replaced with an empty argument.

Examples

This is an example of what a typical maildelivery file looks like:

# lines starting with a ``#'' are ignored.
# as are blank lines
# file mail with mmdf2 in the "To:" line into file mmdf2.log
To    mmdf2    file    A    mmdf2.log
# Messages from mmdf pipe to the program err-message-archive
From    mmdf    pipe    A    err-message-archive
# Anything with the "Sender:" address "uk-mmdf-workers"
# file in mmdf2.log if not filed already
Sender    uk-mmdf-workers    file    ?    mmdf2.log
# "To:" unix - put in file unix-news
To    Unix    >    A    unix-news
# if the address is jpo=mmdf - pipe into mmdf-redist
Addr    jpo=mmdf    |    A    mmdf-redist
# if the address is jpo=ack - send an acknowledgement copy back
Addr    jpo=ack    |    R    resend  -r  $(reply-to)
# anything from steve - destroy!
from    steve    destroy    A    -
# anything not matched yet - put into mailbox
default    -    >    ?    mailbox
# always run rcvalert
*    -    |    R    rcvalert

Files


$HOME/.maildelivery
normal location

/usr/lib/mail/maildelivery
the system file

See also

mmdftailor(F), rcvalert(C), rcvfile(C), rcvprint(C), rcvtrip(C), submit(ADM)

Standards conformance

MMDF is not part of any currently supported standard; it was developed at the University of Delaware and is used with permission.


© 2007 The SCO Group, Inc. All rights reserved.
SCO OpenServer Release 6.0.0 -- 05 June 2007