jake359
Member
Posted 6 years ago #
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?
gomichild
Member
Posted 6 years ago #
This might help:
http://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();
zarastudios
Member
Posted 6 years ago #
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.