ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
class.smtp.php
Go to the documentation of this file.
1 <?php
27 class SMTP
28 {
33  const VERSION = '5.2.24';
34 
39  const CRLF = "\r\n";
40 
45  const DEFAULT_SMTP_PORT = 25;
46 
51  const MAX_LINE_LENGTH = 998;
52 
56  const DEBUG_OFF = 0;
57 
61  const DEBUG_CLIENT = 1;
62 
66  const DEBUG_SERVER = 2;
67 
71  const DEBUG_CONNECTION = 3;
72 
76  const DEBUG_LOWLEVEL = 4;
77 
84  public $Version = '5.2.24';
85 
92  public $SMTP_PORT = 25;
93 
100  public $CRLF = "\r\n";
101 
112  public $do_debug = self::DEBUG_OFF;
113 
127  public $Debugoutput = 'echo';
128 
135  public $do_verp = false;
136 
144  public $Timeout = 300;
145 
151  public $Timelimit = 300;
152 
159  'exim' => '/[0-9]{3} OK id=(.*)/',
160  'sendmail' => '/[0-9]{3} 2.0.0 (.*) Message/',
161  'postfix' => '/[0-9]{3} 2.0.0 Ok: queued as (.*)/'
162  );
163 
168  protected $smtp_conn;
169 
174  protected $error = array(
175  'error' => '',
176  'detail' => '',
177  'smtp_code' => '',
178  'smtp_code_ex' => ''
179  );
180 
186  protected $helo_rply = null;
187 
197  protected $server_caps = null;
198 
203  protected $last_reply = '';
204 
213  protected function edebug($str, $level = 0)
214  {
215  if ($level > $this->do_debug) {
216  return;
217  }
218  //Avoid clash with built-in function names
219  if (!in_array($this->Debugoutput, array('error_log', 'html', 'echo')) and is_callable($this->Debugoutput)) {
220  call_user_func($this->Debugoutput, $str, $level);
221  return;
222  }
223  switch ($this->Debugoutput) {
224  case 'error_log':
225  //Don't output, just log
226  error_log($str);
227  break;
228  case 'html':
229  //Cleans up output a bit for a better looking, HTML-safe output
230  echo gmdate('Y-m-d H:i:s') . ' ' . htmlentities(
231  preg_replace('/[\r\n]+/', '', $str),
232  ENT_QUOTES,
233  'UTF-8'
234  ) . "<br>\n";
235  break;
236  case 'echo':
237  default:
238  //Normalize line breaks
239  $str = preg_replace('/(\r\n|\r|\n)/ms', "\n", $str);
240  echo gmdate('Y-m-d H:i:s') . "\t" . str_replace(
241  "\n",
242  "\n \t ",
243  trim($str)
244  ) . "\n";
245  }
246  }
247 
257  public function connect($host, $port = null, $timeout = 30, $options = array())
258  {
259  static $streamok;
260  //This is enabled by default since 5.0.0 but some providers disable it
261  //Check this once and cache the result
262  if (is_null($streamok)) {
263  $streamok = function_exists('stream_socket_client');
264  }
265  // Clear errors to avoid confusion
266  $this->setError('');
267  // Make sure we are __not__ connected
268  if ($this->connected()) {
269  // Already connected, generate error
270  $this->setError('Already connected to a server');
271  return false;
272  }
273  if (empty($port)) {
274  $port = self::DEFAULT_SMTP_PORT;
275  }
276  // Connect to the SMTP server
277  $this->edebug(
278  "Connection: opening to $host:$port, timeout=$timeout, options=" .
279  var_export($options, true),
280  self::DEBUG_CONNECTION
281  );
282  $errno = 0;
283  $errstr = '';
284  if ($streamok) {
285  $socket_context = stream_context_create($options);
286  set_error_handler(array($this, 'errorHandler'));
287  $this->smtp_conn = stream_socket_client(
288  $host . ":" . $port,
289  $errno,
290  $errstr,
291  $timeout,
292  STREAM_CLIENT_CONNECT,
293  $socket_context
294  );
295  restore_error_handler();
296  } else {
297  //Fall back to fsockopen which should work in more places, but is missing some features
298  $this->edebug(
299  "Connection: stream_socket_client not available, falling back to fsockopen",
300  self::DEBUG_CONNECTION
301  );
302  set_error_handler(array($this, 'errorHandler'));
303  $this->smtp_conn = fsockopen(
304  $host,
305  $port,
306  $errno,
307  $errstr,
308  $timeout
309  );
310  restore_error_handler();
311  }
312  // Verify we connected properly
313  if (!is_resource($this->smtp_conn)) {
314  $this->setError(
315  'Failed to connect to server',
316  $errno,
317  $errstr
318  );
319  $this->edebug(
320  'SMTP ERROR: ' . $this->error['error']
321  . ": $errstr ($errno)",
322  self::DEBUG_CLIENT
323  );
324  return false;
325  }
326  $this->edebug('Connection: opened', self::DEBUG_CONNECTION);
327  // SMTP server can take longer to respond, give longer timeout for first read
328  // Windows does not have support for this timeout function
329  if (substr(PHP_OS, 0, 3) != 'WIN') {
330  $max = ini_get('max_execution_time');
331  // Don't bother if unlimited
332  if ($max != 0 && $timeout > $max) {
333  @set_time_limit($timeout);
334  }
335  stream_set_timeout($this->smtp_conn, $timeout, 0);
336  }
337  // Get any announcement
338  $announce = $this->get_lines();
339  $this->edebug('SERVER -> CLIENT: ' . $announce, self::DEBUG_SERVER);
340  return true;
341  }
342 
348  public function startTLS()
349  {
350  if (!$this->sendCommand('STARTTLS', 'STARTTLS', 220)) {
351  return false;
352  }
353 
354  //Allow the best TLS version(s) we can
355  $crypto_method = STREAM_CRYPTO_METHOD_TLS_CLIENT;
356 
357  //PHP 5.6.7 dropped inclusion of TLS 1.1 and 1.2 in STREAM_CRYPTO_METHOD_TLS_CLIENT
358  //so add them back in manually if we can
359  if (defined('STREAM_CRYPTO_METHOD_TLSv1_2_CLIENT')) {
360  $crypto_method |= STREAM_CRYPTO_METHOD_TLSv1_2_CLIENT;
361  $crypto_method |= STREAM_CRYPTO_METHOD_TLSv1_1_CLIENT;
362  }
363 
364  // Begin encrypted connection
365  set_error_handler(array($this, 'errorHandler'));
366  $crypto_ok = stream_socket_enable_crypto(
367  $this->smtp_conn,
368  true,
369  $crypto_method
370  );
371  restore_error_handler();
372  return $crypto_ok;
373  }
374 
387  public function authenticate(
388  $username,
389  $password,
390  $authtype = null,
391  $realm = '',
392  $workstation = '',
393  $OAuth = null
394  ) {
395  if (!$this->server_caps) {
396  $this->setError('Authentication is not allowed before HELO/EHLO');
397  return false;
398  }
399 
400  if (array_key_exists('EHLO', $this->server_caps)) {
401  // SMTP extensions are available; try to find a proper authentication method
402  if (!array_key_exists('AUTH', $this->server_caps)) {
403  $this->setError('Authentication is not allowed at this stage');
404  // 'at this stage' means that auth may be allowed after the stage changes
405  // e.g. after STARTTLS
406  return false;
407  }
408 
409  self::edebug('Auth method requested: ' . ($authtype ? $authtype : 'UNKNOWN'), self::DEBUG_LOWLEVEL);
410  self::edebug(
411  'Auth methods available on the server: ' . implode(',', $this->server_caps['AUTH']),
412  self::DEBUG_LOWLEVEL
413  );
414 
415  if (empty($authtype)) {
416  foreach (array('CRAM-MD5', 'LOGIN', 'PLAIN', 'NTLM', 'XOAUTH2') as $method) {
417  if (in_array($method, $this->server_caps['AUTH'])) {
418  $authtype = $method;
419  break;
420  }
421  }
422  if (empty($authtype)) {
423  $this->setError('No supported authentication methods found');
424  return false;
425  }
426  self::edebug('Auth method selected: ' . $authtype, self::DEBUG_LOWLEVEL);
427  }
428 
429  if (!in_array($authtype, $this->server_caps['AUTH'])) {
430  $this->setError("The requested authentication method \"$authtype\" is not supported by the server");
431  return false;
432  }
433  } elseif (empty($authtype)) {
434  $authtype = 'LOGIN';
435  }
436  switch ($authtype) {
437  case 'PLAIN':
438  // Start authentication
439  if (!$this->sendCommand('AUTH', 'AUTH PLAIN', 334)) {
440  return false;
441  }
442  // Send encoded username and password
443  if (!$this->sendCommand(
444  'User & Password',
445  base64_encode("\0" . $username . "\0" . $password),
446  235
447  )
448  ) {
449  return false;
450  }
451  break;
452  case 'LOGIN':
453  // Start authentication
454  if (!$this->sendCommand('AUTH', 'AUTH LOGIN', 334)) {
455  return false;
456  }
457  if (!$this->sendCommand("Username", base64_encode($username), 334)) {
458  return false;
459  }
460  if (!$this->sendCommand("Password", base64_encode($password), 235)) {
461  return false;
462  }
463  break;
464  case 'XOAUTH2':
465  //If the OAuth Instance is not set. Can be a case when PHPMailer is used
466  //instead of PHPMailerOAuth
467  if (is_null($OAuth)) {
468  return false;
469  }
470  $oauth = $OAuth->getOauth64();
471 
472  // Start authentication
473  if (!$this->sendCommand('AUTH', 'AUTH XOAUTH2 ' . $oauth, 235)) {
474  return false;
475  }
476  break;
477  case 'NTLM':
478  /*
479  * ntlm_sasl_client.php
480  * Bundled with Permission
481  *
482  * How to telnet in windows:
483  * http://technet.microsoft.com/en-us/library/aa995718%28EXCHG.65%29.aspx
484  * PROTOCOL Docs http://curl.haxx.se/rfc/ntlm.html#ntlmSmtpAuthentication
485  */
486  require_once 'extras/ntlm_sasl_client.php';
487  $temp = new stdClass;
488  $ntlm_client = new ntlm_sasl_client_class;
489  //Check that functions are available
490  if (!$ntlm_client->initialize($temp)) {
491  $this->setError($temp->error);
492  $this->edebug(
493  'You need to enable some modules in your php.ini file: '
494  . $this->error['error'],
495  self::DEBUG_CLIENT
496  );
497  return false;
498  }
499  //msg1
500  $msg1 = $ntlm_client->typeMsg1($realm, $workstation); //msg1
501 
502  if (!$this->sendCommand(
503  'AUTH NTLM',
504  'AUTH NTLM ' . base64_encode($msg1),
505  334
506  )
507  ) {
508  return false;
509  }
510  //Though 0 based, there is a white space after the 3 digit number
511  //msg2
512  $challenge = substr($this->last_reply, 3);
513  $challenge = base64_decode($challenge);
514  $ntlm_res = $ntlm_client->NTLMResponse(
515  substr($challenge, 24, 8),
516  $password
517  );
518  //msg3
519  $msg3 = $ntlm_client->typeMsg3(
520  $ntlm_res,
521  $username,
522  $realm,
523  $workstation
524  );
525  // send encoded username
526  return $this->sendCommand('Username', base64_encode($msg3), 235);
527  case 'CRAM-MD5':
528  // Start authentication
529  if (!$this->sendCommand('AUTH CRAM-MD5', 'AUTH CRAM-MD5', 334)) {
530  return false;
531  }
532  // Get the challenge
533  $challenge = base64_decode(substr($this->last_reply, 4));
534 
535  // Build the response
536  $response = $username . ' ' . $this->hmac($challenge, $password);
537 
538  // send encoded credentials
539  return $this->sendCommand('Username', base64_encode($response), 235);
540  default:
541  $this->setError("Authentication method \"$authtype\" is not supported");
542  return false;
543  }
544  return true;
545  }
546 
556  protected function hmac($data, $key)
557  {
558  if (function_exists('hash_hmac')) {
559  return hash_hmac('md5', $data, $key);
560  }
561 
562  // The following borrowed from
563  // http://php.net/manual/en/function.mhash.php#27225
564 
565  // RFC 2104 HMAC implementation for php.
566  // Creates an md5 HMAC.
567  // Eliminates the need to install mhash to compute a HMAC
568  // by Lance Rushing
569 
570  $bytelen = 64; // byte length for md5
571  if (strlen($key) > $bytelen) {
572  $key = pack('H*', md5($key));
573  }
574  $key = str_pad($key, $bytelen, chr(0x00));
575  $ipad = str_pad('', $bytelen, chr(0x36));
576  $opad = str_pad('', $bytelen, chr(0x5c));
577  $k_ipad = $key ^ $ipad;
578  $k_opad = $key ^ $opad;
579 
580  return md5($k_opad . pack('H*', md5($k_ipad . $data)));
581  }
582 
588  public function connected()
589  {
590  if (is_resource($this->smtp_conn)) {
591  $sock_status = stream_get_meta_data($this->smtp_conn);
592  if ($sock_status['eof']) {
593  // The socket is valid but we are not connected
594  $this->edebug(
595  'SMTP NOTICE: EOF caught while checking if connected',
596  self::DEBUG_CLIENT
597  );
598  $this->close();
599  return false;
600  }
601  return true; // everything looks good
602  }
603  return false;
604  }
605 
613  public function close()
614  {
615  $this->setError('');
616  $this->server_caps = null;
617  $this->helo_rply = null;
618  if (is_resource($this->smtp_conn)) {
619  // close the connection and cleanup
620  fclose($this->smtp_conn);
621  $this->smtp_conn = null; //Makes for cleaner serialization
622  $this->edebug('Connection: closed', self::DEBUG_CONNECTION);
623  }
624  }
625 
638  public function data($msg_data)
639  {
640  //This will use the standard timelimit
641  if (!$this->sendCommand('DATA', 'DATA', 354)) {
642  return false;
643  }
644 
645  /* The server is ready to accept data!
646  * According to rfc821 we should not send more than 1000 characters on a single line (including the CRLF)
647  * so we will break the data up into lines by \r and/or \n then if needed we will break each of those into
648  * smaller lines to fit within the limit.
649  * We will also look for lines that start with a '.' and prepend an additional '.'.
650  * NOTE: this does not count towards line-length limit.
651  */
652 
653  // Normalize line breaks before exploding
654  $lines = explode("\n", str_replace(array("\r\n", "\r"), "\n", $msg_data));
655 
656  /* To distinguish between a complete RFC822 message and a plain message body, we check if the first field
657  * of the first line (':' separated) does not contain a space then it _should_ be a header and we will
658  * process all lines before a blank line as headers.
659  */
660 
661  $field = substr($lines[0], 0, strpos($lines[0], ':'));
662  $in_headers = false;
663  if (!empty($field) && strpos($field, ' ') === false) {
664  $in_headers = true;
665  }
666 
667  foreach ($lines as $line) {
668  $lines_out = array();
669  if ($in_headers and $line == '') {
670  $in_headers = false;
671  }
672  //Break this line up into several smaller lines if it's too long
673  //Micro-optimisation: isset($str[$len]) is faster than (strlen($str) > $len),
674  while (isset($line[self::MAX_LINE_LENGTH])) {
675  //Working backwards, try to find a space within the last MAX_LINE_LENGTH chars of the line to break on
676  //so as to avoid breaking in the middle of a word
677  $pos = strrpos(substr($line, 0, self::MAX_LINE_LENGTH), ' ');
678  //Deliberately matches both false and 0
679  if (!$pos) {
680  //No nice break found, add a hard break
681  $pos = self::MAX_LINE_LENGTH - 1;
682  $lines_out[] = substr($line, 0, $pos);
683  $line = substr($line, $pos);
684  } else {
685  //Break at the found point
686  $lines_out[] = substr($line, 0, $pos);
687  //Move along by the amount we dealt with
688  $line = substr($line, $pos + 1);
689  }
690  //If processing headers add a LWSP-char to the front of new line RFC822 section 3.1.1
691  if ($in_headers) {
692  $line = "\t" . $line;
693  }
694  }
695  $lines_out[] = $line;
696 
697  //Send the lines to the server
698  foreach ($lines_out as $line_out) {
699  //RFC2821 section 4.5.2
700  if (!empty($line_out) and $line_out[0] == '.') {
701  $line_out = '.' . $line_out;
702  }
703  $this->client_send($line_out . self::CRLF);
704  }
705  }
706 
707  //Message data has been sent, complete the command
708  //Increase timelimit for end of DATA command
709  $savetimelimit = $this->Timelimit;
710  $this->Timelimit = $this->Timelimit * 2;
711  $result = $this->sendCommand('DATA END', '.', 250);
712  //Restore timelimit
713  $this->Timelimit = $savetimelimit;
714  return $result;
715  }
716 
727  public function hello($host = '')
728  {
729  //Try extended hello first (RFC 2821)
730  return (boolean)($this->sendHello('EHLO', $host) or $this->sendHello('HELO', $host));
731  }
732 
742  protected function sendHello($hello, $host)
743  {
744  $noerror = $this->sendCommand($hello, $hello . ' ' . $host, 250);
745  $this->helo_rply = $this->last_reply;
746  if ($noerror) {
747  $this->parseHelloFields($hello);
748  } else {
749  $this->server_caps = null;
750  }
751  return $noerror;
752  }
753 
760  protected function parseHelloFields($type)
761  {
762  $this->server_caps = array();
763  $lines = explode("\n", $this->helo_rply);
764 
765  foreach ($lines as $n => $s) {
766  //First 4 chars contain response code followed by - or space
767  $s = trim(substr($s, 4));
768  if (empty($s)) {
769  continue;
770  }
771  $fields = explode(' ', $s);
772  if (!empty($fields)) {
773  if (!$n) {
774  $name = $type;
775  $fields = $fields[0];
776  } else {
777  $name = array_shift($fields);
778  switch ($name) {
779  case 'SIZE':
780  $fields = ($fields ? $fields[0] : 0);
781  break;
782  case 'AUTH':
783  if (!is_array($fields)) {
784  $fields = array();
785  }
786  break;
787  default:
788  $fields = true;
789  }
790  }
791  $this->server_caps[$name] = $fields;
792  }
793  }
794  }
795 
807  public function mail($from)
808  {
809  $useVerp = ($this->do_verp ? ' XVERP' : '');
810  return $this->sendCommand(
811  'MAIL FROM',
812  'MAIL FROM:<' . $from . '>' . $useVerp,
813  250
814  );
815  }
816 
825  public function quit($close_on_error = true)
826  {
827  $noerror = $this->sendCommand('QUIT', 'QUIT', 221);
828  $err = $this->error; //Save any error
829  if ($noerror or $close_on_error) {
830  $this->close();
831  $this->error = $err; //Restore any error from the quit command
832  }
833  return $noerror;
834  }
835 
845  public function recipient($address)
846  {
847  return $this->sendCommand(
848  'RCPT TO',
849  'RCPT TO:<' . $address . '>',
850  array(250, 251)
851  );
852  }
853 
861  public function reset()
862  {
863  return $this->sendCommand('RSET', 'RSET', 250);
864  }
865 
874  protected function sendCommand($command, $commandstring, $expect)
875  {
876  if (!$this->connected()) {
877  $this->setError("Called $command without being connected");
878  return false;
879  }
880  //Reject line breaks in all commands
881  if (strpos($commandstring, "\n") !== false or strpos($commandstring, "\r") !== false) {
882  $this->setError("Command '$command' contained line breaks");
883  return false;
884  }
885  $this->client_send($commandstring . self::CRLF);
886 
887  $this->last_reply = $this->get_lines();
888  // Fetch SMTP code and possible error code explanation
889  $matches = array();
890  if (preg_match("/^([0-9]{3})[ -](?:([0-9]\\.[0-9]\\.[0-9]) )?/", $this->last_reply, $matches)) {
891  $code = $matches[1];
892  $code_ex = (count($matches) > 2 ? $matches[2] : null);
893  // Cut off error code from each response line
894  $detail = preg_replace(
895  "/{$code}[ -]" .
896  ($code_ex ? str_replace('.', '\\.', $code_ex) . ' ' : '') . "/m",
897  '',
898  $this->last_reply
899  );
900  } else {
901  // Fall back to simple parsing if regex fails
902  $code = substr($this->last_reply, 0, 3);
903  $code_ex = null;
904  $detail = substr($this->last_reply, 4);
905  }
906 
907  $this->edebug('SERVER -> CLIENT: ' . $this->last_reply, self::DEBUG_SERVER);
908 
909  if (!in_array($code, (array)$expect)) {
910  $this->setError(
911  "$command command failed",
912  $detail,
913  $code,
914  $code_ex
915  );
916  $this->edebug(
917  'SMTP ERROR: ' . $this->error['error'] . ': ' . $this->last_reply,
918  self::DEBUG_CLIENT
919  );
920  return false;
921  }
922 
923  $this->setError('');
924  return true;
925  }
926 
940  public function sendAndMail($from)
941  {
942  return $this->sendCommand('SAML', "SAML FROM:$from", 250);
943  }
944 
951  public function verify($name)
952  {
953  return $this->sendCommand('VRFY', "VRFY $name", array(250, 251));
954  }
955 
962  public function noop()
963  {
964  return $this->sendCommand('NOOP', 'NOOP', 250);
965  }
966 
976  public function turn()
977  {
978  $this->setError('The SMTP TURN command is not implemented');
979  $this->edebug('SMTP NOTICE: ' . $this->error['error'], self::DEBUG_CLIENT);
980  return false;
981  }
982 
989  public function client_send($data)
990  {
991  $this->edebug("CLIENT -> SERVER: $data", self::DEBUG_CLIENT);
992  set_error_handler(array($this, 'errorHandler'));
993  $result = fwrite($this->smtp_conn, $data);
994  restore_error_handler();
995  return $result;
996  }
997 
1003  public function getError()
1004  {
1005  return $this->error;
1006  }
1007 
1013  public function getServerExtList()
1014  {
1015  return $this->server_caps;
1016  }
1017 
1037  public function getServerExt($name)
1038  {
1039  if (!$this->server_caps) {
1040  $this->setError('No HELO/EHLO was sent');
1041  return null;
1042  }
1043 
1044  // the tight logic knot ;)
1045  if (!array_key_exists($name, $this->server_caps)) {
1046  if ($name == 'HELO') {
1047  return $this->server_caps['EHLO'];
1048  }
1049  if ($name == 'EHLO' || array_key_exists('EHLO', $this->server_caps)) {
1050  return false;
1051  }
1052  $this->setError('HELO handshake was used. Client knows nothing about server extensions');
1053  return null;
1054  }
1055 
1056  return $this->server_caps[$name];
1057  }
1058 
1064  public function getLastReply()
1065  {
1066  return $this->last_reply;
1067  }
1068 
1078  protected function get_lines()
1079  {
1080  // If the connection is bad, give up straight away
1081  if (!is_resource($this->smtp_conn)) {
1082  return '';
1083  }
1084  $data = '';
1085  $endtime = 0;
1086  stream_set_timeout($this->smtp_conn, $this->Timeout);
1087  if ($this->Timelimit > 0) {
1088  $endtime = time() + $this->Timelimit;
1089  }
1090  while (is_resource($this->smtp_conn) && !feof($this->smtp_conn)) {
1091  $str = @fgets($this->smtp_conn, 515);
1092  $this->edebug("SMTP -> get_lines(): \$data is \"$data\"", self::DEBUG_LOWLEVEL);
1093  $this->edebug("SMTP -> get_lines(): \$str is \"$str\"", self::DEBUG_LOWLEVEL);
1094  $data .= $str;
1095  // If response is only 3 chars (not valid, but RFC5321 S4.2 says it must be handled),
1096  // or 4th character is a space, we are done reading, break the loop,
1097  // string array access is a micro-optimisation over strlen
1098  if (!isset($str[3]) or (isset($str[3]) and $str[3] == ' ')) {
1099  break;
1100  }
1101  // Timed-out? Log and break
1102  $info = stream_get_meta_data($this->smtp_conn);
1103  if ($info['timed_out']) {
1104  $this->edebug(
1105  'SMTP -> get_lines(): timed-out (' . $this->Timeout . ' sec)',
1106  self::DEBUG_LOWLEVEL
1107  );
1108  break;
1109  }
1110  // Now check if reads took too long
1111  if ($endtime and time() > $endtime) {
1112  $this->edebug(
1113  'SMTP -> get_lines(): timelimit reached (' .
1114  $this->Timelimit . ' sec)',
1115  self::DEBUG_LOWLEVEL
1116  );
1117  break;
1118  }
1119  }
1120  return $data;
1121  }
1122 
1127  public function setVerp($enabled = false)
1128  {
1129  $this->do_verp = $enabled;
1130  }
1131 
1136  public function getVerp()
1137  {
1138  return $this->do_verp;
1139  }
1140 
1148  protected function setError($message, $detail = '', $smtp_code = '', $smtp_code_ex = '')
1149  {
1150  $this->error = array(
1151  'error' => $message,
1152  'detail' => $detail,
1153  'smtp_code' => $smtp_code,
1154  'smtp_code_ex' => $smtp_code_ex
1155  );
1156  }
1157 
1162  public function setDebugOutput($method = 'echo')
1163  {
1164  $this->Debugoutput = $method;
1165  }
1166 
1171  public function getDebugOutput()
1172  {
1173  return $this->Debugoutput;
1174  }
1175 
1180  public function setDebugLevel($level = 0)
1181  {
1182  $this->do_debug = $level;
1183  }
1184 
1189  public function getDebugLevel()
1190  {
1191  return $this->do_debug;
1192  }
1193 
1198  public function setTimeout($timeout = 0)
1199  {
1200  $this->Timeout = $timeout;
1201  }
1202 
1207  public function getTimeout()
1208  {
1209  return $this->Timeout;
1210  }
1211 
1219  protected function errorHandler($errno, $errmsg, $errfile = '', $errline = 0)
1220  {
1221  $notice = 'Connection failed.';
1222  $this->setError(
1223  $notice,
1224  $errno,
1225  $errmsg
1226  );
1227  $this->edebug(
1228  $notice . ' Error #' . $errno . ': ' . $errmsg . " [$errfile line $errline]",
1229  self::DEBUG_CONNECTION
1230  );
1231  }
1232 
1240  public function getLastTransactionID()
1241  {
1242  $reply = $this->getLastReply();
1243 
1244  if (empty($reply)) {
1245  return null;
1246  }
1247 
1248  foreach ($this->smtp_transaction_id_patterns as $smtp_transaction_id_pattern) {
1249  if (preg_match($smtp_transaction_id_pattern, $reply, $matches)) {
1250  return $matches[1];
1251  }
1252  }
1253 
1254  return false;
1255  }
1256 }
connect($host, $port=null, $timeout=30, $options=array())
Connect to an SMTP server.
Definition: class.smtp.php:257
$Timelimit
Definition: class.smtp.php:151
const DEBUG_SERVER
Debug level to show client -> server and server -> client messages.
Definition: class.smtp.php:66
noop()
Send an SMTP NOOP command.
Definition: class.smtp.php:962
const MAX_LINE_LENGTH
Definition: class.smtp.php:51
getTimeout()
Get SMTP timeout.
$result
hmac($data, $key)
Calculate an MD5 HMAC hash.
Definition: class.smtp.php:556
$type
getError()
Get the latest error.
sendCommand($command, $commandstring, $expect)
Send a command to an SMTP server and check its return code.
Definition: class.smtp.php:874
$Debugoutput
Definition: class.smtp.php:127
getDebugLevel()
Get debug output level.
getLastReply()
Get the last reply from the server.
$code
Definition: example_050.php:99
const DEBUG_CLIENT
Debug level to show client -> server messages.
Definition: class.smtp.php:61
errorHandler($errno, $errmsg, $errfile='', $errline=0)
Reports an error number and string.
hello($host='')
Send an SMTP HELO or EHLO command.
Definition: class.smtp.php:727
const DEBUG_LOWLEVEL
Debug level to show all messages.
Definition: class.smtp.php:76
setDebugLevel($level=0)
Set debug output level.
const DEFAULT_SMTP_PORT
Definition: class.smtp.php:45
$s
Definition: pwgen.php:45
$from
$smtp_transaction_id_patterns
Definition: class.smtp.php:158
$server_caps
Definition: class.smtp.php:197
getServerExt($name)
A multipurpose method The method works in three ways, dependent on argument value and current state...
$last_reply
Definition: class.smtp.php:203
setVerp($enabled=false)
Enable or disable VERP address generation.
const VERSION
Definition: class.smtp.php:33
sendHello($hello, $host)
Send an SMTP HELO or EHLO command.
Definition: class.smtp.php:742
$SMTP_PORT
Definition: class.smtp.php:92
close()
Close the socket and clean up the state of the class.
Definition: class.smtp.php:613
$password
Definition: pwgen.php:17
$helo_rply
Definition: class.smtp.php:186
const CRLF
Definition: class.smtp.php:39
$smtp_conn
Definition: class.smtp.php:168
if($format !==null) $name
Definition: metadata.php:146
catch(Exception $e) $message
data($msg_data)
Send an SMTP DATA command.
Definition: class.smtp.php:638
setTimeout($timeout=0)
Set SMTP timeout.
connected()
Check connection state.
Definition: class.smtp.php:588
sendAndMail($from)
Send an SMTP SAML command.
Definition: class.smtp.php:940
getVerp()
Get VERP address generation mode.
authenticate( $username, $password, $authtype=null, $realm='', $workstation='', $OAuth=null)
Perform SMTP authentication.
Definition: class.smtp.php:387
startTLS()
Initiate a TLS (encrypted) session.
Definition: class.smtp.php:348
getServerExtList()
Get SMTP extensions available on the server public.
setDebugOutput($method='echo')
Set debug output method.
getDebugOutput()
Get debug output method.
recipient($address)
Send an SMTP RCPT command.
Definition: class.smtp.php:845
const DEBUG_OFF
Debug level for no output.
Definition: class.smtp.php:56
client_send($data)
Send raw data to the server.
Definition: class.smtp.php:989
$n
Definition: RandomTest.php:85
Create styles array
The data for the language used.
reset()
Send an SMTP RSET command.
Definition: class.smtp.php:861
parseHelloFields($type)
Parse a reply to HELO/EHLO command to discover server extensions.
Definition: class.smtp.php:760
mail($from)
Send an SMTP MAIL command.
Definition: class.smtp.php:807
edebug($str, $level=0)
Output debugging info via a user-selected method.
Definition: class.smtp.php:213
const DEBUG_CONNECTION
Debug level to show connection status, client -> server and server -> client messages.
Definition: class.smtp.php:71
get_lines()
Read the SMTP server&#39;s response.
$Version
Definition: class.smtp.php:84
Add data(end) time
Method that wraps PHPs time in order to allow simulations with the workflow.
defined( 'APPLICATION_ENV')||define( 'APPLICATION_ENV'
Definition: bootstrap.php:27
$info
Definition: index.php:5
getLastTransactionID()
Will return the ID of the last smtp transaction based on a list of patterns provided in SMTP::$smtp_t...
$response
quit($close_on_error=true)
Send an SMTP QUIT command.
Definition: class.smtp.php:825
$key
Definition: croninfo.php:18
turn()
Send an SMTP TURN command.
Definition: class.smtp.php:976
if(!isset($_REQUEST['ReturnTo'])) if(!isset($_REQUEST['AuthId'])) $options
Definition: as_login.php:20
verify($name)
Send an SMTP VRFY command.
Definition: class.smtp.php:951
setError($message, $detail='', $smtp_code='', $smtp_code_ex='')
Set error messages and codes.