summaryrefslogtreecommitdiff
path: root/test/scripts/3400-plaintext/3416
blob: 2aa86f45d226e39abe75ee047c2c046147da16f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# Recipient callout with AUTH
need_ipv4
#
# Variant 1: using authenticated_sender on the transport.
server PORT_S 1
220 Welcome
EHLO
250-wotcher mate
250-AUTH PLAIN
250 Hi
AUTH
250 Oh alright then
MAIL FROM
250 OK
RCPT TO
250 OK
QUIT
250 OK
****
exim -odq -bs
EHLO the.client
mail from:<>
RCPT TO:<abc@force> 
quit
****
#
#
# Variant 2: Passing through an authenticated_sender from the MAIL FROM:
server PORT_S 1
220 Welcome
EHLO
250-wotcher mate
250-AUTH PLAIN
250 Hi
AUTH
250 Oh alright then
MAIL FROM
250 OK
RCPT TO
250 OK
QUIT
250 OK
****
exim -odq -bs
EHLO the.client
AUTH PLAIN AHVzZXJ4AHNlY3JldA==
mail from:<> AUTH=freddy
RCPT TO:<abc@normal> 
quit
****
#
#
# Variant 3: An authenticated_sender option on the transport should override
# a value set by the MAIL FROM:
server PORT_S 1
220 Welcome
EHLO
250-wotcher mate
250-AUTH PLAIN
250 Hi
AUTH
250 Oh alright then
MAIL FROM
250 OK
RCPT TO
250 OK
QUIT
250 OK
****
exim -odq -bs
EHLO the.client
AUTH PLAIN AHVzZXJ4AHNlY3JldA==
mail from:<> AUTH=freddy
RCPT TO:<def@force> 
quit
****