This is a discussion on Re: [courier-users] SSL3_GET_RECORD:wrong version number with iPhone within the Courier-Imap forums, part of the Mail Servers and Related category; David E.Wheeler wrote: > In the meantime, is there nothing I can do with 4.1.3 to get ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
David E.Wheeler wrote:
> In the meantime, is there nothing I can do with 4.1.3 to get it to be > more tolerant? > Don't know if this applies to your problem, but I got SSL working for 0.56.0 by adding a line to tcpd/libcouriertls.c: --- tcpd/libcouriertls.c 2007/05/27 21:54:08 1.20 +++ tcpd/libcouriertls.c 2007/06/30 03:24:11 1.21 @@ -419,6 +419,7 @@ ctx=SSL_CTX_new(protocol && strcmp(protocol, "SSL2") == 0 ? SSLv2_method(): protocol && strcmp(protocol, "SSL3") == 0 ? SSLv3_method(): + protocol && strcmp(protocol, "SSL23") == 0 ? SSLv23_method(): TLSv1_method()); if (!ctx) (you have to "apt-get source courier-imap", apply the patch and recompile -- ask google how to rebuild packages with Debian if you need instructions :) hth, -- Martin Schuster Infineon Technologies IT-Services GmbH Tel: +43 5 1777 3517 <Martin.Schuster1@infineon.com> Lakeside B05 9020 Klagenfurt, Austria FB: LG Klagenfurt, FN 246787y VISIT US AT http://www.infineon.com/austria ------------------------------------------------------------------------- Check out the new SourceForge.net Marketplace. It's the best place to buy or sell services for just about anything Open Source. http://ad.doubleclick.net/clk;164216...et/marketplace _______________________________________________ courier-users mailing list courier-users@lists.sourceforge.net Unsubscribe: https://lists.sourceforge.net/lists/.../courier-users |