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 {
    [email protected]    [email protected];
    example.com         [email protected];

    # suppress archiving for joe
    [email protected]     "";
};

rcpt_to {
    [email protected]    [email protected];

    # sam does not get a copy
    [email protected]     [email protected] remove;
};

VERSION

1.7