--- auth_pop3.php 2001/01/26 12:39:57 1.2 +++ auth_pop3.php 2001/01/30 16:40:47 1.3 @@ -65,13 +65,6 @@ var $BANNER = ""; // Holds the banner returned by the // pop server - used for apop() - var $RFC1939 = true; // Set by noop(). See rfc1939.txt - // - - var $ALLOWAPOP = false;// Allow or disallow apop() - // This must be set to true - // manually. - function POP3 ( $server = "", $timeout = "" ) { settype($this->BUFFER,"integer"); @@ -141,13 +134,6 @@ } $this->FP = $fp; $this->BANNER = $this->parse_banner($reply); - $this->RFC1939 = $this->noop(); - if($this->RFC1939) - { - $this->ERROR = "POP3: premature NOOP OK, NOT an RFC 1939 Compliant server"; - $this->quit(); - return false; - } return true; }