123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407 |
- <?php
- class POP3 {
-
- public $POP3_PORT = 110;
-
- public $POP3_TIMEOUT = 30;
-
- public $CRLF = "\r\n";
-
- public $do_debug = 2;
-
- public $host;
-
- public $port;
-
- public $tval;
-
- public $username;
-
- public $password;
-
-
-
- private $pop_conn;
- private $connected;
- private $error;
-
- public function __construct() {
- $this->pop_conn = 0;
- $this->connected = false;
- $this->error = null;
- }
-
- public function Authorise ($host, $port = false, $tval = false, $username, $password, $debug_level = 0) {
- $this->host = $host;
-
- if ($port == false) {
- $this->port = $this->POP3_PORT;
- } else {
- $this->port = $port;
- }
-
- if ($tval == false) {
- $this->tval = $this->POP3_TIMEOUT;
- } else {
- $this->tval = $tval;
- }
- $this->do_debug = $debug_level;
- $this->username = $username;
- $this->password = $password;
-
- $this->error = null;
-
- $result = $this->Connect($this->host, $this->port, $this->tval);
- if ($result) {
- $login_result = $this->Login($this->username, $this->password);
- if ($login_result) {
- $this->Disconnect();
- return true;
- }
- }
-
- $this->Disconnect();
- return false;
- }
-
- public function Connect ($host, $port = false, $tval = 30) {
-
- if ($this->connected) {
- return true;
- }
-
- set_error_handler(array(&$this, 'catchWarning'));
-
- $this->pop_conn = fsockopen($host,
- $port,
- $errno,
- $errstr,
- $tval);
-
- restore_error_handler();
-
- if ($this->error && $this->do_debug >= 1) {
- $this->displayErrors();
- }
-
- if ($this->pop_conn == false) {
-
- $this->error = array(
- 'error' => "Failed to connect to server $host on port $port",
- 'errno' => $errno,
- 'errstr' => $errstr
- );
- if ($this->do_debug >= 1) {
- $this->displayErrors();
- }
- return false;
- }
-
-
- if (version_compare(phpversion(), '5.0.0', 'ge')) {
- stream_set_timeout($this->pop_conn, $tval, 0);
- } else {
-
- if (substr(PHP_OS, 0, 3) !== 'WIN') {
- socket_set_timeout($this->pop_conn, $tval, 0);
- }
- }
-
- $pop3_response = $this->getResponse();
-
- if ($this->checkResponse($pop3_response)) {
-
- $this->connected = true;
- return true;
- }
- }
-
- public function Login ($username = '', $password = '') {
- if ($this->connected == false) {
- $this->error = 'Not connected to POP3 server';
- if ($this->do_debug >= 1) {
- $this->displayErrors();
- }
- }
- if (empty($username)) {
- $username = $this->username;
- }
- if (empty($password)) {
- $password = $this->password;
- }
- $pop_username = "USER $username" . $this->CRLF;
- $pop_password = "PASS $password" . $this->CRLF;
-
- $this->sendString($pop_username);
- $pop3_response = $this->getResponse();
- if ($this->checkResponse($pop3_response)) {
-
- $this->sendString($pop_password);
- $pop3_response = $this->getResponse();
- if ($this->checkResponse($pop3_response)) {
- return true;
- } else {
- return false;
- }
- } else {
- return false;
- }
- }
-
- public function Disconnect () {
- $this->sendString('QUIT');
- fclose($this->pop_conn);
- }
-
-
-
-
- private function getResponse ($size = 128) {
- $pop3_response = fgets($this->pop_conn, $size);
- return $pop3_response;
- }
-
- private function sendString ($string) {
- $bytes_sent = fwrite($this->pop_conn, $string, strlen($string));
- return $bytes_sent;
- }
-
- private function checkResponse ($string) {
- if (substr($string, 0, 3) !== '+OK') {
- $this->error = array(
- 'error' => "Server reported an error: $string",
- 'errno' => 0,
- 'errstr' => ''
- );
- if ($this->do_debug >= 1) {
- $this->displayErrors();
- }
- return false;
- } else {
- return true;
- }
- }
-
- private function displayErrors () {
- echo '<pre>';
- foreach ($this->error as $single_error) {
- print_r($single_error);
- }
- echo '</pre>';
- }
-
- private function catchWarning ($errno, $errstr, $errfile, $errline) {
- $this->error[] = array(
- 'error' => "Connecting to the POP3 server raised a PHP warning: ",
- 'errno' => $errno,
- 'errstr' => $errstr
- );
- }
-
- }
- ?>
|