error_log("POP3 SEND [connect:
$server] GOT [
$reply]",0
);
if(!
$this->
is_ok($reply)) { $this->ERROR = "POP3 connect: " .
_("Error "
) . "[
$reply]";
unset($this->FP
);
return false;
} $this->FP =
$fp;
$this->BANNER =
$this->
parse_banner($reply);
return true;
} function user ($user = ""
) { // Sends the USER command, returns true or false
if( empty($user) ) { $this->ERROR = "POP3 user: " .
_("no login ID submitted"
);
return false;
} elseif(!
isset($this->FP
)) { $this->ERROR = "POP3 user: " .
_("connection not established"
);
return false;
} else { $reply =
$this->
send_cmd("USER
$user"
);
if(!
$this->
is_ok($reply)) {