1 # TLS server: general ops and certificate extractions
2 exim -DSERVER=server -bd -oX PORT_D
4 client-ssl 127.0.0.1 PORT_D
15 mail from:<CALLER@test.ex>
17 rcpt to:<CALLER@test.ex>
21 This is a test encrypted message.
27 client-ssl 127.0.0.1 PORT_D
38 mail from:<"name with spaces"@test.ex>
40 rcpt to:<CALLER@test.ex>
44 This is a test encrypted message.
50 # nonloop addr conn rejected lacking cert
51 client-ssl HOSTIPV4 PORT_D
66 client-ssl HOSTIPV4 PORT_D DIR/aux-fixed/exim-ca/example.com/server2.example.com/server2.example.com.pem DIR/aux-fixed/exim-ca/example.com/server2.example.com/server2.example.com.unlocked.key
77 mail from:<CALLER@test.ex>
79 rcpt to:<CALLER@test.ex>
83 This is a test encrypted message from a verified host.
91 # make ECDSA authentication preferred
92 # DEFAULT:+RSA should work but does not seem to
93 exim -DSERVER=server -DORDER=ECDSA:RSA:!COMPLEMENTOFDEFAULT -bd -oX PORT_D
95 client-ssl 127.0.0.1 PORT_D
106 mail from:<CALLER@test.ex>
108 rcpt to:<CALLER@test.ex>
112 This is a test encrypted message.
113 It should be sent under the EC server cert and with an ECDSA cipher.