[exim-cvs] Testsuite: fix case for TLS library differences

Startseite
Nachricht löschen
Nachricht beantworten
Autor: Exim Git Commits Mailing List
Datum:  
To: exim-cvs
Betreff: [exim-cvs] Testsuite: fix case for TLS library differences
Gitweb: https://git.exim.org/exim.git/commitdiff/94d91e87193a1b4008f01f7ad1b67473f62f28ae
Commit:     94d91e87193a1b4008f01f7ad1b67473f62f28ae
Parent:     b5695709aa5d65a2b6825eef3bf3ed556c66220d
Author:     Jeremy Harris <jgh146exb@???>
AuthorDate: Thu Mar 12 20:14:32 2020 +0000
Committer:  Jeremy Harris <jgh146exb@???>
CommitDate: Thu Mar 12 20:14:32 2020 +0000


    Testsuite: fix case for TLS library differences
---
 test/confs/1101 | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)


diff --git a/test/confs/1101 b/test/confs/1101
index fcb4680..18d8abb 100644
--- a/test/confs/1101
+++ b/test/confs/1101
@@ -1,11 +1,11 @@
-# Exim test configuration 2040
+# Exim test configuration 1101
 # The test uses the same config for two Exim processes
 #
 #              ,------ callout -------.
 #              |                      |
 #              |      .----------.    |
 #              `--> PORT_S       |    |
-# client-gnutls --> PORT_D  Exim |----'
+# client-anytls --> PORT_D  Exim |----'
 #                     `----------'


.include DIR/aux-var/tls_conf_prefix
@@ -37,10 +37,12 @@ catchall:

 begin transports
 local_smtp:
-    driver = smtp
-    port = PORT_S
-    hosts = 127.0.0.1
-    hosts_require_tls = *
+    driver =        smtp
+    port =        PORT_S
+    hosts =        127.0.0.1
     allow_localhost
+    hosts_require_tls = *
+    tls_verify_certificates =    DIR/aux-fixed/cert1
+    tls_verify_cert_hostnames =    :


# End