|
function smtp_sockopen($address) { if ($this->relay_host == "") { return $this->smtp_sockopen_mx($address); } else { return $this->smtp_sockopen_relay(); } } function smtp_sockopen_relay() { $this->log_write("Trying to ".$this->relay_host.":".$this->smtp_port." "); $this->sock = @fsockopen($this->relay_host, $this->smtp_port, $errno, $errstr, $this->time_out); if (!($this->sock && $this->smtp_ok())) { $this->log_write("Error: Cannot connenct to relay host ".$this->relay_host." "); $this->log_write("Error: ".$errstr." (".$errno.") "); return FALSE; } $this->log_write("Connected to relay host ".$this->relay_host." "); return TRUE; } function smtp_sockopen_mx($address) { $domain = ereg_replace("^.+@([^@]+)$", "1", $address); if (!@getmxrr($domain, $MXHOSTS)) { $this->log_write("Error: Cannot resolve MX "".$domain."" "); return FALSE; } foreach ($MXHOSTS as $host) { $this->log_write("Trying to ".$host.":".$this->smtp_port." "); $this->sock = @fsockopen($host, $this->smtp_port, $errno, $errstr, $this->time_out); if (!($this->sock && $this->smtp_ok())) { $this->log_write("Warning: Cannot connect to mx host ".$host." "); $this->log_write("Error: ".$errstr." (".$errno.") "); continue; } $this->log_write("Connected to mx host ".$host." "); return TRUE; } $this->log_write("Error: Cannot connect to any mx hosts (".implode(", ", $MXHOSTS).") "); return FALSE; } function smtp_message($header, $body) { fputs($this->sock, $header." ".$body); $this->smtp_debug("> ".str_replace(" ", " "."> ", $header." > ".$body." > ")); return TRUE; } function smtp_eom() { fputs($this->sock, " . "); $this->smtp_debug(". [EOM] "); return $this->smtp_ok(); } function smtp_ok() { $response = str_replace(" ", "", fgets($this->sock, 512)); $this->smtp_debug($response." "); if (!ereg("^[23]", $response)) { fputs($this->sock, "QUIT "); fgets($this->sock, 512); $this->log_write("Error: Remote host returned "".$response."" "); return FALSE; } return TRUE; } function smtp_putcmd($cmd, $arg = "") { if ($arg != "") { if($cmd=="") $cmd = $arg; else $cmd = $cmd." ".$arg; } fputs($this->sock, $cmd." "); $this->smtp_debug("> ".$cmd." "); return $this->smtp_ok(); } function smtp_error($string) { $this->log_write("Error: Error occurred while ".$string.". "); return FALSE; } function log_write($message) { $this->smtp_debug($message); if ($this->log_file == "") { return TRUE; } $message = date("M d H:i:s ").get_current_user()."[".getmypid()."]: ".$message; if (!@file_exists($this->log_file) || !($fp = @fopen($this->log_file, "a"))) { $this->smtp_debug("Warning: Cannot open log file "".$this->log_file."" "); return FALSE;; } flock($fp, LOCK_EX); fputs($fp, $message); fclose($fp); return TRUE; } function strip_comment($address) { $comment = "([^()]*)"; while (ereg($comment, $address)) { $address = ereg_replace($comment, "", $address); } return $address; } function get_address($address) { $address = ereg_replace("([ ])+", "", $address); $address = ereg_replace("^.*<(.+)>.*$", "1", $address); return $address; } function smtp_debug($message) { if ($this->debug) { echo $message; } } } ?>
共3页: 上一页 [1] [2] 3 下一页
| |