Was having trouble connecting Bounce Plugin pop3 port 995 ssl .
It would connect with pop3 port 110 Standard.
I found a logic error in Bounce code which causes this problem.
bounce.php sets the $host var with the ssl://hostname.com in line 119
but it then does not use $host to make the connection.
bounce.php line 122
if (!$pop3->connect($options['host'], $options['port']) || !$pop3->user($options['login'])) {
is wrong, it should be…
if (!$pop3->connect($host, $options['port']) || !$pop3->user($options['login'])) {
SSL connection works with this code.