Differences

This shows you the differences between two versions of the page.

Link to this comparison view

squirrelmail [2007-07-04 08:42] – external edit 127.0.0.1squirrelmail [2019-07-10 14:45] (current) – removed nik
Line 1: Line 1:
  
- 
- 
-===== squirrelmail ===== 
-http://www.squirrelmail.org/ 
- 
- 
-==== errors ==== 
- 
-squirrelmail would not connect to bincimap, giving an error "Error connecting to IMAP server: tls://localhost. 115 : Operation now in progress" due to some  openssl/php randomness. 
- 
-in "/var/log/bincimaps/current" 
- 
-<file> 
-[unknown@127.0.0.1:] error initializing Binc IMAP: SSL negotiation failed: Internal SSL error: error:1408F455:SSL routines:SSL3_GET_RECORD:decryption failed or bad record mac 
-</file> 
- 
-who ever is doing the tls/ssl handshake has wonky fingers with wrong sides mac_nails, so edit the server method to be ssl rather than tls; 
- 
-<file> 
-/usr/share/squirrelmail/functions/imap_general.php  
-line 441  
-- $imap_server_address = 'tls://' . $imap_server_address;  
-+ $imap_server_address = 'ssl://' . $imap_server_address;  
-</file>