issue with imap_open

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Eric

    issue with imap_open

    Hello,
    I use imap_open ("{pop.server.c om:110/pop3/
    notls}INBOX","u ser","password" ) in a function to get email from pop3
    server.
    But, it is not working on my new serveur, and it was working on my old
    one (error message : Security problem: insecure server advertised
    AUTH=PLAIN).
    What are the items I have to install to make imap_open work (I have
    already installed on my Debian php5-imap, openssl) ? Is there any
    configuration ?

    Thanx in advance ..

  • Mike P2

    #2
    Re: issue with imap_open

    On May 22, 6:09 pm, Eric <eric.mathie... @gmail.comwrote :
    Hello,
    I use imap_open ("{pop.server.c om:110/pop3/
    notls}INBOX","u ser","password" ) in a function to get email from pop3
    server.
    But, it is not working on my new serveur, and it was working on my old
    one (error message : Security problem: insecure server advertised
    AUTH=PLAIN).
    What are the items I have to install to make imap_open work (I have
    already installed on my Debian php5-imap, openssl) ? Is there any
    configuration ?
    >
    Thanx in advance ..
    Does this help?

    IMAPFLAGS=noval idate-cert

    -Mike PII

    Comment

    • Eric

      #3
      Re: issue with imap_open



      Thanx Mike for your answer. This do not solve my issue, but I have
      found a workaround :
      fsockopen(popse rver,110)
      get & treat response

      150 lines instead of 4 with imap_open, but it works !

      Comment

      Working...