mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-18 08:02:48 +00:00
634ecc67fe
- new option TLSEXT_PADDING The port disables TLSEXT_PADDING by default. This fixes "TLS handshake failed" errors when sending to Ironport appliances.
14 lines
375 B
Diff
14 lines
375 B
Diff
--- sendmail/readcf.c.orig 2014-05-16 22:40:15.000000000 +0200
|
|
+++ sendmail/readcf.c 2014-08-14 18:05:59.000000000 +0200
|
|
@@ -124,6 +124,10 @@
|
|
| SSL_OP_NO_TICKET
|
|
#endif
|
|
;
|
|
+#ifdef SSL_OP_TLSEXT_PADDING
|
|
+ Srv_SSL_Options &= ~SSL_OP_TLSEXT_PADDING;
|
|
+ Clt_SSL_Options &= ~SSL_OP_TLSEXT_PADDING;
|
|
+#endif
|
|
#endif /* STARTTLS */
|
|
if (DontLockReadFiles)
|
|
sff |= SFF_NOLOCK;
|