1 # TLS server: server ca cert from directory
2 exim -DSERVER=server -bd -oX PORT_D
5 ### Should accept message
6 client-ssl 127.0.0.1 PORT_D
20 mail from:<CALLER@test.ex>
22 rcpt to:<CALLER@test.ex>
26 This is a test encrypted message.
32 ### Should accept message (with a difficult env-from)
33 client-ssl 127.0.0.1 PORT_D
47 mail from:<"name with spaces"@test.ex>
49 rcpt to:<CALLER@test.ex>
53 This is a test encrypted message.
59 ### client cert verify required; none given
60 client-ssl -t2 HOSTIPV4 PORT_D
77 ### client cert verify required; good one supplied
78 client-ssl HOSTIPV4 PORT_D DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.pem DIR/aux-fixed/exim-ca/example.com/server1.example.com/server1.example.com.unlocked.key
92 mail from:<CALLER@test.ex>
94 rcpt to:<CALLER@test.ex>
98 This is a test encrypted message from a verified host.