Home Forums Newsletter Plugin Support Bug in Bounce plugin ssl host code

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #59929
    WallyO
    Participant

    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.

    #59954
    Stefano
    Keymaster

    ops, thank you for your report… that explain another problem reported by a user!

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.