Name

sm-archive.conf — configuration file for sm-archive sendmail milter

Synopsis

sm-archive.conf

Description

The sm-archive.conf configuration file is specified by this partial bnf description.

CONFIG     = {ENV-FROM ENV-TO}+
ENV-FROM   = env_from "{" LIST "}" ";"
ENV-TO     = rcpt_to  "{" LIST "}" ";"
LIST       = ELEMENT {LIST}+
ELEMENT    = ADDRESS TARGET ["remove"] ";"
ADDRESS    = (USER@ | DOMAIN | USER@DOMAIN)
TARGET     = ("" | USER@DOMAIN)

Sample

env_from {
    fred@example.com    manager@example.com;
    example.com         archive@example.com;

    # suppress archiving for joe
    joe@example.com     "";
};

rcpt_to {
    fred@example.com    manager@example.com;

    # sam does not get a copy
    sam@example.com     manager@example.com remove;
};

Version

1.10