Menu

#319 SSL POP3 auth

open
nobody
None
1
2017-12-18
2015-11-26
Anonymous
No

Hi,

My mail server supports only SSL POP3, how to enable this.

Discussion

  • John Beranek

    John Beranek - 2015-11-26

    The 'pop3' authentication module does not current support SSL connections.

    Contributions are welcome.

     
  • Anonymous

    Anonymous - 2016-02-11

    You can use

    $auth["type"] = "pop3";
    unset($pop3_host);
    # 'auth_pop3' configuration settings
    # Where is the POP3 server
    $pop3_host[] = "ssl://mailserver_address";
    $pop3_host[] = "ssl://mailserver_address";
    
    # The POP3 server port
    $pop3_port = "995";
    
     

    Last edit: Campbell Morrison 2017-12-23
  • Anonymous

    Anonymous - 2017-12-18

    I have tried

    $pop3_host[] = "ssl://xxx.yyyy.com";
    $pop3_port = "995";
    

    but still not able to login via POP3 server

     

    Last edit: Campbell Morrison 2017-12-23