diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2017-12-16 02:05:13 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2017-12-16 02:20:57 +0000 |
commit | 854586e1495b0a0f4be2a561c419ec4671009dbd (patch) | |
tree | 6b7e019ebd545169ed7293d2940874f0e9b47601 /test/confs | |
parent | 1fcabbd4882b7be03749ce4b84cabe002f231293 (diff) |
Testsuite: testcase for Bug 2198
Diffstat (limited to 'test/confs')
-rw-r--r-- | test/confs/5840 | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/confs/5840 b/test/confs/5840 index 01c114252..1a16e1c09 100644 --- a/test/confs/5840 +++ b/test/confs/5840 @@ -25,17 +25,25 @@ tls_advertise_hosts = * CDIR1 = DIR/aux-fixed CDIR2 = DIR/aux-fixed/exim-ca/example.com/server1.example.com +.ifdef CERT +tls_certificate = CERT +.else tls_certificate = ${if eq {SERVER}{server} \ {${if or {{eq {DETAILS}{ta}} {eq {DETAILS}{ca}}} \ {CDIR2/fullchain.pem}\ {CDIR1/cert1}}}\ fail} +.endif +.ifdef ALLOW +tls_privatekey = ALLOW +.else tls_privatekey = ${if eq {SERVER}{server} \ {${if or {{eq {DETAILS}{ta}} {eq {DETAILS}{ca}}} \ {CDIR2/server1.example.com.unlocked.key}\ {CDIR1/cert1}}}\ fail} +.endif # ----- Routers ----- |