• I use the Postie and Cronless Postie (0.9.8.5) to post from my cellphone or by email. Worked fine in 1.5.2

    Now I get:
    “Unable to connect. The server said – POP3: premature NOOP OK, NOT an RFC 1939 Compliant server
    Try putting in your full email address as a userid and try again.”

    My user ID is correct, in fact, no settings have changed.

    Ideas?

Viewing 2 replies - 1 through 2 (of 2 total)
  • This might help:

    https://www.economysizegeek.com/wp-mail/faq/

    If you get POP3: premature NOOP OK, NOT an RFC 1939 Compliant server

    edit wp-includes/class-pop3.php
    Ignore the numbers at the begining of the line they are there for reference
    goto line 107
    107 $this->BANNER = $this->parse_banner($reply);
    108 $this->RFC1939 = $this->noop();

    Insert
    107 $this->BANNER = $this->parse_banner($reply);
    108 return();
    108 $this->RFC1939 = $this->noop();

    Hi. I couldn’t get it to work when I added return(); to line 108, but it did work when I added return true; . Thought this might help someone.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Postie not working with 2.0?’ is closed to new replies.