4 exim -DSERVER=server -bd -oX PORT_D
6 # Client requires ALPN (success)
7 exim -DCONTROL=smtp -DREQUIRE=y -odf client_require@test.ex
11 # Server can be told to ignore (bad) ALPN from client
12 exim -DSERVER=server -DSTRICT="" -bd -oX PORT_D
14 # Client requires ALPN (fail)
15 exim -DCONTROL=http -DREQUIRE=y -odf client_require_fail@test.ex
17 sudo rm -f DIR/spool/db/retry* DIR/spool/input/*-D DIR/spool/input/*-H
21 # Server can be told ALPN mandatory
22 exim -DSERVER=server -DREQUIRE=y -bd -oX PORT_D
24 # Client supplies ALPN, good
25 exim -DCONTROL=smtp -odf server_require_good@test.ex
27 # Client does not supply ALPN, fails
28 exim -odf server_require_bad@test.ex