diff options
author | oliver <oliver@FreeBSD.org> | 2007-10-24 15:00:26 +0000 |
---|---|---|
committer | oliver <oliver@FreeBSD.org> | 2007-10-24 15:00:26 +0000 |
commit | 3df8508afa52dd960350073814b764a4f10509c6 (patch) | |
tree | 47b713d0950c49a6e6d876d6b6eaa82b22745f09 | |
parent | 02d58de95b1b0735abd5394d37e226c7d3988d34 (diff) | |
download | FreeBSD-ports-3df8508afa52dd960350073814b764a4f10509c6.zip FreeBSD-ports-3df8508afa52dd960350073814b764a4f10509c6.tar.gz |
change the default setting TLS_PROTOCOL=SSL3 to TLS_PROTOCOL=SSL23 to try
SSLv2 and SSLv3 instead of SSLv3 only - this fixes the error some people
where experiencing with the ssl clients:
connect: error:1408F10B:SSL routines:SSL3_GET_RECORD:wrong version number
Noted by: Oliver Brandmueller <ob@e-Gitt.NET>
Suggested by: Oliver Brandmueller <ob@e-Gitt.NET>
-rw-r--r-- | mail/courier-imap/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mail/courier-imap/Makefile b/mail/courier-imap/Makefile index 0a71bf1..39b66fb 100644 --- a/mail/courier-imap/Makefile +++ b/mail/courier-imap/Makefile @@ -143,6 +143,9 @@ post-patch: ${WRKSRC}/Makefile.in @${REINPLACE_CMD} -e 's|@LIBS@|@LIBS@ -rpath=:${LOCALBASE}/lib/courier-authlib|' \ ${WRKSRC}/imap/Makefile.in + @${REINPLACE_CMD} -e 's|TLS_PROTOCOL=SSL3|TLS_PROTOCOL=SSL23|g' \ + ${WRKSRC}/imap/pop3d-ssl.dist.in \ + ${WRKSRC}/imap/imapd-ssl.dist.in post-install: .for i in imapd pop3d |