Docs: clean for next release
[exim.git] / test / scripts / 3400-plaintext / 3416
CommitLineData
fcc8e047
JH
1# Recipient callout with AUTH
2need_ipv4
3#
4# Variant 1: using authenticated_sender on the transport.
5server PORT_S 1
6220 Welcome
7EHLO
8250-wotcher mate
9250-AUTH PLAIN
10250 Hi
11AUTH
12250 Oh alright then
13MAIL FROM
14250 OK
15RCPT TO
16250 OK
17QUIT
18250 OK
19****
20exim -odq -bs
21EHLO the.client
22mail from:<>
23RCPT TO:<abc@force>
24quit
25****
26#
27#
28# Variant 2: Passing through an authenticated_sender from the MAIL FROM:
29server PORT_S 1
30220 Welcome
31EHLO
32250-wotcher mate
33250-AUTH PLAIN
34250 Hi
35AUTH
36250 Oh alright then
37MAIL FROM
38250 OK
39RCPT TO
40250 OK
41QUIT
42250 OK
43****
44exim -odq -bs
45EHLO the.client
46AUTH PLAIN AHVzZXJ4AHNlY3JldA==
47mail from:<> AUTH=freddy
48RCPT TO:<abc@normal>
49quit
50****
51#
52#
53# Variant 3: An authenticated_sender option on the transport should override
54# a value set by the MAIL FROM:
55server PORT_S 1
56220 Welcome
57EHLO
58250-wotcher mate
59250-AUTH PLAIN
60250 Hi
61AUTH
62250 Oh alright then
63MAIL FROM
64250 OK
65RCPT TO
66250 OK
67QUIT
68250 OK
69****
70exim -odq -bs
71EHLO the.client
72AUTH PLAIN AHVzZXJ4AHNlY3JldA==
73mail from:<> AUTH=freddy
74RCPT TO:<def@force>
75quit
76****