diff options
author | Oliver Lehmann <oliver@FreeBSD.org> | 2007-10-24 15:00:26 +0000 |
---|---|---|
committer | Oliver Lehmann <oliver@FreeBSD.org> | 2007-10-24 15:00:26 +0000 |
commit | a05d72c0e610fe212d96c625524f7e07be5f450a (patch) | |
tree | 677b94570f138d9f99a1d21462d7aadd73f856b4 /mail | |
parent | 42e3f2a4eff55a451f60874edb393564df3bbfc2 (diff) |
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>
Notes
Notes:
svn path=/head/; revision=201924
Diffstat (limited to 'mail')
-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 0a71bf1982fd..39b66fbef585 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 |