Commit | Line | Data |
---|---|---|
2b1c6e3a PH |
1 | # callout for recipient/use_sender after mail from:<> rejection |
2 | need_ipv4 | |
3 | # | |
4 | # Do a sender address verify that rejects MAIL FROM:<> | |
5 | server PORT_S | |
6 | 220 Welcome | |
193e3acd | 7 | EHLO |
2b1c6e3a PH |
8 | 250 Hi |
9 | MAIL FROM | |
10 | 550 I'm misconfigured | |
11 | QUIT | |
12 | 221 Bye | |
13 | **** | |
14 | exim -bs | |
15 | mail from:<userx@broken.example> | |
16 | quit | |
17 | **** | |
18 | # Now do a recipient verify for the same domain, with use_sender | |
19 | server PORT_S | |
20 | 220 Welcome | |
193e3acd | 21 | EHLO |
2b1c6e3a PH |
22 | 250 Hi |
23 | MAIL FROM | |
24 | 250 OK | |
25 | RCPT TO | |
26 | 250 OK | |
27 | QUIT | |
28 | 221 Bye | |
29 | **** | |
30 | exim -bs | |
31 | mail from:<userx@ok.example> | |
32 | rcpt to:<usery@broken.example> | |
33 | quit | |
34 | **** | |
35 | # A final check that the cache works for sender address | |
36 | exim -bs | |
37 | mail from:<userx@broken.example> | |
38 | quit | |
39 | **** |