# domainlist match values
#
exim -bs -DOPT=:
HELO test
MAIL FROM:<testclient>
RCPT TO:<a@notmatched.ex>
QUIT
****
#
exim -bs '-DOPT=notthis : plainstring.ex : nothiseither'
HELO test
MAIL FROM:<testclient>
RCPT TO:<a@plainstring.ex>
QUIT
****
#
exim -bs '-DOPT=notthis : *tail.ex : nothiseither'
HELO test
MAIL FROM:<testclient>
RCPT TO:<a@headtail.ex>
QUIT
****
#
exim -bs '-DOPT=notthis : ^.*r(e.)ex : nothiseither'
HELO test
MAIL FROM:<testclient>
RCPT TO:<a@headregextail.ex>
QUIT
****
#
exim -bs '-DOPT=notthis : @ : nothiseither'
HELO test
MAIL FROM:<testclient>
RCPT TO:<a@primaryhostname.ex>
QUIT
****
#
#
exim -bs '-DOPT=notthis : @[] : nothiseither'
HELO test
MAIL FROM:<testclient>
RCPT TO:<a@[127.0.0.1]>
QUIT
****
#
# malformed
exim -bs '-DOPT=notthis : @[] : nothiseither'
HELO test
MAIL FROM:<testclient>
RCPT TO:<a@127.0.0.1]>
QUIT
****
#
# malformed
exim -bs '-DOPT=notthis : @[] : nothiseither'
HELO test
MAIL FROM:<testclient>
RCPT TO:<a@[127.0.0.1>
QUIT
****
#
#
exim -bs '-DOPT=notthis : @mx_any/ignore=1.1.1.1 : nothiseither'
HELO test
MAIL FROM:<testclient>
RCPT TO:<a@mx46.test.ex>
QUIT
****
#
