Defect with pop3 ssl
-
The plugin currently ignores the SSL/Secure checkbox for POP3
Hard-coding “/ssl” into $strConnect in recievemail.class.php resolves this issue – but is obviously not ideal either.
// Hack to allow pop3 connection to SSL server... } else {// ssl will set in admin page $strConnect='{'.$mailserver.':'.$port. '/pop3/ssl/novalidate-cert'.($ssl ? "/ssl" : "").'}INBOX'; }
Looking more deeply – it looks to me that the html checkbox for SSL/Secure has an id & name of “pop_ssl”, but the code is looking for “ssl”
$ssl = (isset($_REQUEST["ssl"])? sanitize_text_field($_REQUEST["ssl"]): '');
However if I change that to pop_ssl it seems always to be set to 1 irrespective of whether the check-box is checked, at which point I gave us (as the hack was working for me).
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Defect with pop3 ssl’ is closed to new replies.