Testsuite: switch ciphersuite use
[exim.git] / test / scripts / 3400-plaintext / 3414
CommitLineData
59371ea7 1# control of AUTH= on MAIL by ACL
fbbd45ff 2exim -DOPT=# -bs
59371ea7
PH
3ehlo xxxx
4mail from:<a@b> auth=c@d
5quit
6****
7exim -bs
8ehlo xxxx
9mail from:<a@b> auth=c@d
10quit
11****
12exim -DACL=accept -bs
13ehlo xxxx
14mail from:<a@b> auth=c@d
15quit
16****
17# No acl_smtp_mailauth, but authenticated
fbbd45ff 18exim -DOPT=# -bs
59371ea7
PH
19ehlo xxxx
20auth plain abcd
21mail from:<a@b> auth=c@d
22quit
23****
24# Authenticated but ACL rejects
25exim -bs
26ehlo xxxx
27auth plain abcd
28mail from:<a@b> auth=c@d
29quit
30****
31# ACL allows some only
32exim -DACL=acl1 -bs
33ehlo xxxx
34mail from:<a@b> auth=bad@bad
35rset
36mail from:<a@b> auth=ok@ok
37quit
38****