Project

General

Profile

« Previous | Next » 

Revision 2053

Added by darkviper over 10 years ago

! update PHPMailer to version Version 5.2.7

View differences:

class.smtp.php
1 1
<?php
2
/*~ class.smtp.php
3
.---------------------------------------------------------------------------.
4
|  Software: PHPMailer - PHP email class                                    |
5
|   Version: 5.2.1                                                          |
6
|      Site: https://code.google.com/a/apache-extras.org/p/phpmailer/       |
7
| ------------------------------------------------------------------------- |
8
|     Admin: Jim Jagielski (project admininistrator)                        |
9
|   Authors: Andy Prevost (codeworxtech) codeworxtech@users.sourceforge.net |
10
|          : Marcus Bointon (coolbru) coolbru@users.sourceforge.net         |
11
|          : Jim Jagielski (jimjag) jimjag@gmail.com                        |
12
|   Founder: Brent R. Matzelle (original founder)                           |
13
| Copyright (c) 2010-2012, Jim Jagielski. All Rights Reserved.              |
14
| Copyright (c) 2004-2009, Andy Prevost. All Rights Reserved.               |
15
| Copyright (c) 2001-2003, Brent R. Matzelle                                |
16
| ------------------------------------------------------------------------- |
17
|   License: Distributed under the Lesser General Public License (LGPL)     |
18
|            http://www.gnu.org/copyleft/lesser.html                        |
19
| This program is distributed in the hope that it will be useful - WITHOUT  |
20
| ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or     |
21
| FITNESS FOR A PARTICULAR PURPOSE.                                         |
22
'---------------------------------------------------------------------------'
23
*/
24

  
25 2
/**
26
 * PHPMailer - PHP SMTP email transport class
27
 * NOTE: Designed for use with PHP version 5 and up
28
 * @package PHPMailer
29
 * @author Andy Prevost
30
 * @author Marcus Bointon
3
 * PHPMailer RFC821 SMTP email transport class.
4
 * Version 5.2.7
5
 * PHP version 5.0.0
6
 * @category  PHP
7
 * @package   PHPMailer
8
 * @link      https://github.com/PHPMailer/PHPMailer/
9
 * @author Marcus Bointon (coolbru) <phpmailer@synchromedia.co.uk>
10
 * @author Jim Jagielski (jimjag) <jimjag@gmail.com>
11
 * @author Andy Prevost (codeworxtech) <codeworxtech@users.sourceforge.net>
12
 * @copyright 2013 Marcus Bointon
31 13
 * @copyright 2004 - 2008 Andy Prevost
32
 * @author Jim Jagielski
33 14
 * @copyright 2010 - 2012 Jim Jagielski
34
 * @license http://www.gnu.org/copyleft/lesser.html Distributed under the Lesser General Public License (LGPL)
35
 * @version $Id: class.smtp.php 450 2010-06-23 16:46:33Z coolbru $
15
 * @license   http://www.gnu.org/copyleft/lesser.html Distributed under the Lesser General Public License (LGPL)
36 16
 */
37 17

  
38 18
/**
39
 * SMTP is rfc 821 compliant and implements all the rfc 821 SMTP
40
 * commands except TURN which will always return a not implemented
41
 * error. SMTP also provides some utility methods for sending mail
42
 * to an SMTP server.
43
 * original author: Chris Ryan
19
 * PHPMailer RFC821 SMTP email transport class.
20
 *
21
 * Implements RFC 821 SMTP commands
22
 * and provides some utility methods for sending mail to an SMTP server.
23
 *
24
 * PHP Version 5.0.0
25
 *
26
 * @category PHP
27
 * @package  PHPMailer
28
 * @link     https://github.com/PHPMailer/PHPMailer/blob/master/class.smtp.php
29
 * @author   Chris Ryan <unknown@example.com>
30
 * @author   Marcus Bointon <phpmailer@synchromedia.co.uk>
31
 * @license  http://www.gnu.org/copyleft/lesser.html Distributed under the Lesser General Public License (LGPL)
44 32
 */
45 33

  
46
class SMTP {
47
  /**
48
   *  SMTP server port
49
   *  @var int
50
   */
51
  public $SMTP_PORT = 25;
34
class SMTP
35
{
36
    /**
37
     * The PHPMailer SMTP Version number.
38
     */
39
    const VERSION = '5.2.7';
52 40

  
53
  /**
54
   *  SMTP reply line ending
55
   *  @var string
56
   */
57
  public $CRLF = "\r\n";
41
    /**
42
     * SMTP line break constant.
43
     */
44
    const CRLF = "\r\n";
58 45

  
59
  /**
60
   *  Sets whether debugging is turned on
61
   *  @var bool
62
   */
63
  public $do_debug;       // the level of debug to perform
46
    /**
47
     * The SMTP port to use if one is not specified.
48
     */
49
    const DEFAULT_SMTP_PORT = 25;
64 50

  
65
  /**
66
   *  Sets VERP use on/off (default is off)
67
   *  @var bool
68
   */
69
  public $do_verp = false;
51
    /**
52
     * The PHPMailer SMTP Version number.
53
     * @type string
54
     * @deprecated This should be a constant
55
     * @see SMTP::VERSION
56
     */
57
    public $Version = '5.2.7';
70 58

  
71
  /**
72
   * Sets the SMTP PHPMailer Version number
73
   * @var string
74
   */
75
  public $Version         = '5.2.1';
59
    /**
60
     * SMTP server port number.
61
     * @type int
62
     * @deprecated This is only ever ued as default value, so should be a constant
63
     * @see SMTP::DEFAULT_SMTP_PORT
64
     */
65
    public $SMTP_PORT = 25;
76 66

  
77
  /////////////////////////////////////////////////
78
  // PROPERTIES, PRIVATE AND PROTECTED
79
  /////////////////////////////////////////////////
67
    /**
68
     * SMTP reply line ending
69
     * @type string
70
     * @deprecated Use the class constant instead
71
     * @see SMTP::CRLF
72
     */
73
    public $CRLF = "\r\n";
80 74

  
81
  private $smtp_conn; // the socket to the server
82
  private $error;     // error if any on the last call
83
  private $helo_rply; // the reply the server sent to us for HELO
75
    /**
76
     * Debug output level.
77
     * Options: 0 for no output, 1 for commands, 2 for data and commands
78
     * @type int
79
     */
80
    public $do_debug = 0;
84 81

  
85
  /**
86
   * Initialize the class so that the data is in a known state.
87
   * @access public
88
   * @return void
89
   */
90
  public function __construct() {
91
    $this->smtp_conn = 0;
92
    $this->error = null;
93
    $this->helo_rply = null;
82
    /**
83
     * The function/method to use for debugging output.
84
     * Options: 'echo', 'html' or 'error_log'
85
     * @type string
86
     */
87
    public $Debugoutput = 'echo';
94 88

  
95
    $this->do_debug = 0;
96
  }
89
    /**
90
     * Whether to use VERP.
91
     * @type bool
92
     */
93
    public $do_verp = false;
97 94

  
98
  /////////////////////////////////////////////////
99
  // CONNECTION FUNCTIONS
100
  /////////////////////////////////////////////////
95
    /**
96
     * The SMTP timeout value for reads, in seconds.
97
     * @type int
98
     */
99
    public $Timeout = 15;
101 100

  
102
  /**
103
   * Connect to the server specified on the port specified.
104
   * If the port is not specified use the default SMTP_PORT.
105
   * If tval is specified then a connection will try and be
106
   * established with the server for that number of seconds.
107
   * If tval is not specified the default is 30 seconds to
108
   * try on the connection.
109
   *
110
   * SMTP CODE SUCCESS: 220
111
   * SMTP CODE FAILURE: 421
112
   * @access public
113
   * @return bool
114
   */
115
  public function Connect($host, $port = 0, $tval = 30) {
116
    // set the error val to null so there is no confusion
117
    $this->error = null;
101
    /**
102
     * The SMTP timelimit value for reads, in seconds.
103
     * @type int
104
     */
105
    public $Timelimit = 30;
118 106

  
119
    // make sure we are __not__ connected
120
    if($this->connected()) {
121
      // already connected, generate error
122
      $this->error = array("error" => "Already connected to a server");
123
      return false;
124
    }
107
    /**
108
     * The socket for the server connection.
109
     * @type resource
110
     */
111
    protected $smtp_conn;
125 112

  
126
    if(empty($port)) {
127
      $port = $this->SMTP_PORT;
128
    }
113
    /**
114
     * Error message, if any, for the last call.
115
     * @type string
116
     */
117
    protected $error = '';
129 118

  
130
    // connect to the smtp server
131
    $this->smtp_conn = @fsockopen($host,    // the host of the server
132
                                 $port,    // the port to use
133
                                 $errno,   // error number if any
134
                                 $errstr,  // error message if any
135
                                 $tval);   // give up after ? secs
136
    // verify we connected properly
137
    if(empty($this->smtp_conn)) {
138
      $this->error = array("error" => "Failed to connect to server",
139
                           "errno" => $errno,
140
                           "errstr" => $errstr);
141
      if($this->do_debug >= 1) {
142
        echo "SMTP -> ERROR: " . $this->error["error"] . ": $errstr ($errno)" . $this->CRLF . '<br />';
143
      }
144
      return false;
145
    }
119
    /**
120
     * The reply the server sent to us for HELO.
121
     * @type string
122
     */
123
    protected $helo_rply = '';
146 124

  
147
    // SMTP server can take longer to respond, give longer timeout for first read
148
    // Windows does not have support for this timeout function
149
    if(substr(PHP_OS, 0, 3) != "WIN")
150
     socket_set_timeout($this->smtp_conn, $tval, 0);
125
    /**
126
     * The most recent reply received from the server.
127
     * @type string
128
     */
129
    protected $last_reply = '';
151 130

  
152
    // get any announcement
153
    $announce = $this->get_lines();
131
    /**
132
     * Constructor.
133
     * @access public
134
     */
135
    public function __construct()
136
    {
137
        $this->smtp_conn = 0;
138
        $this->error = null;
139
        $this->helo_rply = null;
154 140

  
155
    if($this->do_debug >= 2) {
156
      echo "SMTP -> FROM SERVER:" . $announce . $this->CRLF . '<br />';
141
        $this->do_debug = 0;
157 142
    }
158 143

  
159
    return true;
160
  }
161

  
162
  /**
163
   * Initiate a TLS communication with the server.
164
   *
165
   * SMTP CODE 220 Ready to start TLS
166
   * SMTP CODE 501 Syntax error (no parameters allowed)
167
   * SMTP CODE 454 TLS not available due to temporary reason
168
   * @access public
169
   * @return bool success
170
   */
171
  public function StartTLS() {
172
    $this->error = null; # to avoid confusion
173

  
174
    if(!$this->connected()) {
175
      $this->error = array("error" => "Called StartTLS() without being connected");
176
      return false;
144
    /**
145
     * Output debugging info via a user-selected method.
146
     * @param string $str Debug string to output
147
     * @return void
148
     */
149
    protected function edebug($str)
150
    {
151
        switch ($this->Debugoutput) {
152
            case 'error_log':
153
                //Don't output, just log
154
                error_log($str);
155
                break;
156
            case 'html':
157
                //Cleans up output a bit for a better looking, HTML-safe output
158
                echo htmlentities(
159
                    preg_replace('/[\r\n]+/', '', $str),
160
                    ENT_QUOTES,
161
                    'UTF-8'
162
                )
163
                . "<br>\n";
164
                break;
165
            case 'echo':
166
            default:
167
                //Just echoes whatever was received
168
                echo $str;
169
        }
177 170
    }
178 171

  
179
    fputs($this->smtp_conn,"STARTTLS" . $this->CRLF);
172
    /**
173
     * Connect to an SMTP server.
174
     * @param string $host    SMTP server IP or host name
175
     * @param int $port    The port number to connect to
176
     * @param int $timeout How long to wait for the connection to open
177
     * @param array $options An array of options for stream_context_create()
178
     * @access public
179
     * @return bool
180
     */
181
    public function connect($host, $port = null, $timeout = 30, $options = array())
182
    {
183
        // Clear errors to avoid confusion
184
        $this->error = null;
180 185

  
181
    $rply = $this->get_lines();
182
    $code = substr($rply,0,3);
186
        // Make sure we are __not__ connected
187
        if ($this->connected()) {
188
            // Already connected, generate error
189
            $this->error = array('error' => 'Already connected to a server');
190
            return false;
191
        }
183 192

  
184
    if($this->do_debug >= 2) {
185
      echo "SMTP -> FROM SERVER:" . $rply . $this->CRLF . '<br />';
186
    }
193
        if (empty($port)) {
194
            $port = self::DEFAULT_SMTP_PORT;
195
        }
187 196

  
188
    if($code != 220) {
189
      $this->error =
190
         array("error"     => "STARTTLS not accepted from server",
191
               "smtp_code" => $code,
192
               "smtp_msg"  => substr($rply,4));
193
      if($this->do_debug >= 1) {
194
        echo "SMTP -> ERROR: " . $this->error["error"] . ": " . $rply . $this->CRLF . '<br />';
195
      }
196
      return false;
197
    }
197
        // Connect to the SMTP server
198
        $errno = 0;
199
        $errstr = '';
200
        $socket_context = stream_context_create($options);
201
        //Suppress errors; connection failures are handled at a higher level
202
        $this->smtp_conn = @stream_socket_client(
203
            $host . ":" . $port,
204
            $errno,
205
            $errstr,
206
            $timeout,
207
            STREAM_CLIENT_CONNECT,
208
            $socket_context
209
        );
198 210

  
199
    // Begin encrypted connection
200
    if(!stream_socket_enable_crypto($this->smtp_conn, true, STREAM_CRYPTO_METHOD_TLS_CLIENT)) {
201
      return false;
202
    }
211
        // Verify we connected properly
212
        if (empty($this->smtp_conn)) {
213
            $this->error = array(
214
                'error' => 'Failed to connect to server',
215
                'errno' => $errno,
216
                'errstr' => $errstr
217
            );
218
            if ($this->do_debug >= 1) {
219
                $this->edebug(
220
                    'SMTP -> ERROR: ' . $this->error['error']
221
                    . ": $errstr ($errno)"
222
                );
223
            }
224
            return false;
225
        }
203 226

  
204
    return true;
205
  }
227
        // SMTP server can take longer to respond, give longer timeout for first read
228
        // Windows does not have support for this timeout function
229
        if (substr(PHP_OS, 0, 3) != 'WIN') {
230
            $max = ini_get('max_execution_time');
231
            if ($max != 0 && $timeout > $max) { // Don't bother if unlimited
232
                @set_time_limit($timeout);
233
            }
234
            stream_set_timeout($this->smtp_conn, $timeout, 0);
235
        }
206 236

  
207
  /**
208
   * Performs SMTP authentication.  Must be run after running the
209
   * Hello() method.  Returns true if successfully authenticated.
210
   * @access public
211
   * @return bool
212
   */
213
  public function Authenticate($username, $password) {
214
    // Start authentication
215
    fputs($this->smtp_conn,"AUTH LOGIN" . $this->CRLF);
237
        // Get any announcement
238
        $announce = $this->get_lines();
216 239

  
217
    $rply = $this->get_lines();
218
    $code = substr($rply,0,3);
240
        if ($this->do_debug >= 2) {
241
            $this->edebug('SMTP -> FROM SERVER:' . $announce);
242
        }
219 243

  
220
    if($code != 334) {
221
      $this->error =
222
        array("error" => "AUTH not accepted from server",
223
              "smtp_code" => $code,
224
              "smtp_msg" => substr($rply,4));
225
      if($this->do_debug >= 1) {
226
        echo "SMTP -> ERROR: " . $this->error["error"] . ": " . $rply . $this->CRLF . '<br />';
227
      }
228
      return false;
244
        return true;
229 245
    }
230 246

  
231
    // Send encoded username
232
    fputs($this->smtp_conn, base64_encode($username) . $this->CRLF);
247
    /**
248
     * Initiate a TLS (encrypted) session.
249
     * @access public
250
     * @return bool
251
     */
252
    public function startTLS()
253
    {
254
        if (!$this->sendCommand("STARTTLS", "STARTTLS", 220)) {
255
            return false;
256
        }
257
        // Begin encrypted connection
258
        if (!stream_socket_enable_crypto(
259
            $this->smtp_conn,
260
            true,
261
            STREAM_CRYPTO_METHOD_TLS_CLIENT
262
        )
263
        ) {
264
            return false;
265
        }
266
        return true;
267
    }
233 268

  
234
    $rply = $this->get_lines();
235
    $code = substr($rply,0,3);
269
    /**
270
     * Perform SMTP authentication.
271
     * Must be run after hello().
272
     * @see hello()
273
     * @param string $username    The user name
274
     * @param string $password    The password
275
     * @param string $authtype    The auth type (PLAIN, LOGIN, NTLM, CRAM-MD5)
276
     * @param string $realm       The auth realm for NTLM
277
     * @param string $workstation The auth workstation for NTLM
278
     * @access public
279
     * @return bool True if successfully authenticated.
280
     */
281
    public function authenticate(
282
        $username,
283
        $password,
284
        $authtype = 'LOGIN',
285
        $realm = '',
286
        $workstation = ''
287
    ) {
288
        if (empty($authtype)) {
289
            $authtype = 'LOGIN';
290
        }
236 291

  
237
    if($code != 334) {
238
      $this->error =
239
        array("error" => "Username not accepted from server",
240
              "smtp_code" => $code,
241
              "smtp_msg" => substr($rply,4));
242
      if($this->do_debug >= 1) {
243
        echo "SMTP -> ERROR: " . $this->error["error"] . ": " . $rply . $this->CRLF . '<br />';
244
      }
245
      return false;
246
    }
292
        switch ($authtype) {
293
            case 'PLAIN':
294
                // Start authentication
295
                if (!$this->sendCommand('AUTH', 'AUTH PLAIN', 334)) {
296
                    return false;
297
                }
298
                // Send encoded username and password
299
                if (!$this->sendCommand(
300
                    'User & Password',
301
                    base64_encode("\0" . $username . "\0" . $password),
302
                    235
303
                )
304
                ) {
305
                    return false;
306
                }
307
                break;
308
            case 'LOGIN':
309
                // Start authentication
310
                if (!$this->sendCommand('AUTH', 'AUTH LOGIN', 334)) {
311
                    return false;
312
                }
313
                if (!$this->sendCommand("Username", base64_encode($username), 334)) {
314
                    return false;
315
                }
316
                if (!$this->sendCommand("Password", base64_encode($password), 235)) {
317
                    return false;
318
                }
319
                break;
320
            case 'NTLM':
321
                /*
322
                 * ntlm_sasl_client.php
323
                 * Bundled with Permission
324
                 *
325
                 * How to telnet in windows:
326
                 * http://technet.microsoft.com/en-us/library/aa995718%28EXCHG.65%29.aspx
327
                 * PROTOCOL Docs http://curl.haxx.se/rfc/ntlm.html#ntlmSmtpAuthentication
328
                 */
329
                require_once 'extras/ntlm_sasl_client.php';
330
                $temp = new stdClass();
331
                $ntlm_client = new ntlm_sasl_client_class;
332
                //Check that functions are available
333
                if (!$ntlm_client->Initialize($temp)) {
334
                    $this->error = array('error' => $temp->error);
335
                    if ($this->do_debug >= 1) {
336
                        $this->edebug(
337
                            'You need to enable some modules in your php.ini file: '
338
                            . $this->error['error']
339
                        );
340
                    }
341
                    return false;
342
                }
343
                //msg1
344
                $msg1 = $ntlm_client->TypeMsg1($realm, $workstation); //msg1
247 345

  
248
    // Send encoded password
249
    fputs($this->smtp_conn, base64_encode($password) . $this->CRLF);
346
                if (!$this->sendCommand(
347
                    'AUTH NTLM',
348
                    'AUTH NTLM ' . base64_encode($msg1),
349
                    334
350
                )
351
                ) {
352
                    return false;
353
                }
250 354

  
251
    $rply = $this->get_lines();
252
    $code = substr($rply,0,3);
355
                //Though 0 based, there is a white space after the 3 digit number
356
                //msg2
357
                $challenge = substr($this->last_reply, 3);
358
                $challenge = base64_decode($challenge);
359
                $ntlm_res = $ntlm_client->NTLMResponse(
360
                    substr($challenge, 24, 8),
361
                    $password
362
                );
363
                //msg3
364
                $msg3 = $ntlm_client->TypeMsg3(
365
                    $ntlm_res,
366
                    $username,
367
                    $realm,
368
                    $workstation
369
                );
370
                // send encoded username
371
                return $this->sendCommand('Username', base64_encode($msg3), 235);
372
                break;
373
            case 'CRAM-MD5':
374
                // Start authentication
375
                if (!$this->sendCommand('AUTH CRAM-MD5', 'AUTH CRAM-MD5', 334)) {
376
                    return false;
377
                }
378
                // Get the challenge
379
                $challenge = base64_decode(substr($this->last_reply, 4));
253 380

  
254
    if($code != 235) {
255
      $this->error =
256
        array("error" => "Password not accepted from server",
257
              "smtp_code" => $code,
258
              "smtp_msg" => substr($rply,4));
259
      if($this->do_debug >= 1) {
260
        echo "SMTP -> ERROR: " . $this->error["error"] . ": " . $rply . $this->CRLF . '<br />';
261
      }
262
      return false;
263
    }
381
                // Build the response
382
                $response = $username . ' ' . $this->hmac($challenge, $password);
264 383

  
265
    return true;
266
  }
267

  
268
  /**
269
   * Returns true if connected to a server otherwise false
270
   * @access public
271
   * @return bool
272
   */
273
  public function Connected() {
274
    if(!empty($this->smtp_conn)) {
275
      $sock_status = socket_get_status($this->smtp_conn);
276
      if($sock_status["eof"]) {
277
        // the socket is valid but we are not connected
278
        if($this->do_debug >= 1) {
279
            echo "SMTP -> NOTICE:" . $this->CRLF . "EOF caught while checking if connected";
384
                // send encoded credentials
385
                return $this->sendCommand('Username', base64_encode($response), 235);
386
                break;
280 387
        }
281
        $this->Close();
282
        return false;
283
      }
284
      return true; // everything looks good
388
        return true;
285 389
    }
286
    return false;
287
  }
288 390

  
289
  /**
290
   * Closes the socket and cleans up the state of the class.
291
   * It is not considered good to use this function without
292
   * first trying to use QUIT.
293
   * @access public
294
   * @return void
295
   */
296
  public function Close() {
297
    $this->error = null; // so there is no confusion
298
    $this->helo_rply = null;
299
    if(!empty($this->smtp_conn)) {
300
      // close the connection and cleanup
301
      fclose($this->smtp_conn);
302
      $this->smtp_conn = 0;
303
    }
304
  }
391
    /**
392
     * Calculate an MD5 HMAC hash.
393
     * Works like hash_hmac('md5', $data, $key)
394
     * in case that function is not available
395
     * @param string $data The data to hash
396
     * @param string $key  The key to hash with
397
     * @access protected
398
     * @return string
399
     */
400
    protected function hmac($data, $key)
401
    {
402
        if (function_exists('hash_hmac')) {
403
            return hash_hmac('md5', $data, $key);
404
        }
305 405

  
306
  /////////////////////////////////////////////////
307
  // SMTP COMMANDS
308
  /////////////////////////////////////////////////
406
        // The following borrowed from
407
        // http://php.net/manual/en/function.mhash.php#27225
309 408

  
310
  /**
311
   * Issues a data command and sends the msg_data to the server
312
   * finializing the mail transaction. $msg_data is the message
313
   * that is to be send with the headers. Each header needs to be
314
   * on a single line followed by a <CRLF> with the message headers
315
   * and the message body being seperated by and additional <CRLF>.
316
   *
317
   * Implements rfc 821: DATA <CRLF>
318
   *
319
   * SMTP CODE INTERMEDIATE: 354
320
   *     [data]
321
   *     <CRLF>.<CRLF>
322
   *     SMTP CODE SUCCESS: 250
323
   *     SMTP CODE FAILURE: 552,554,451,452
324
   * SMTP CODE FAILURE: 451,554
325
   * SMTP CODE ERROR  : 500,501,503,421
326
   * @access public
327
   * @return bool
328
   */
329
  public function Data($msg_data) {
330
    $this->error = null; // so no confusion is caused
409
        // RFC 2104 HMAC implementation for php.
410
        // Creates an md5 HMAC.
411
        // Eliminates the need to install mhash to compute a HMAC
412
        // Hacked by Lance Rushing
331 413

  
332
    if(!$this->connected()) {
333
      $this->error = array(
334
              "error" => "Called Data() without being connected");
335
      return false;
414
        $b = 64; // byte length for md5
415
        if (strlen($key) > $b) {
416
            $key = pack('H*', md5($key));
417
        }
418
        $key = str_pad($key, $b, chr(0x00));
419
        $ipad = str_pad('', $b, chr(0x36));
420
        $opad = str_pad('', $b, chr(0x5c));
421
        $k_ipad = $key ^ $ipad;
422
        $k_opad = $key ^ $opad;
423

  
424
        return md5($k_opad . pack('H*', md5($k_ipad . $data)));
336 425
    }
337 426

  
338
    fputs($this->smtp_conn,"DATA" . $this->CRLF);
339

  
340
    $rply = $this->get_lines();
341
    $code = substr($rply,0,3);
342

  
343
    if($this->do_debug >= 2) {
344
      echo "SMTP -> FROM SERVER:" . $rply . $this->CRLF . '<br />';
427
    /**
428
     * Check connection state.
429
     * @access public
430
     * @return bool True if connected.
431
     */
432
    public function connected()
433
    {
434
        if (!empty($this->smtp_conn)) {
435
            $sock_status = stream_get_meta_data($this->smtp_conn);
436
            if ($sock_status['eof']) {
437
                // the socket is valid but we are not connected
438
                if ($this->do_debug >= 1) {
439
                    $this->edebug(
440
                        'SMTP -> NOTICE: EOF caught while checking if connected'
441
                    );
442
                }
443
                $this->close();
444
                return false;
445
            }
446
            return true; // everything looks good
447
        }
448
        return false;
345 449
    }
346 450

  
347
    if($code != 354) {
348
      $this->error =
349
        array("error" => "DATA command not accepted from server",
350
              "smtp_code" => $code,
351
              "smtp_msg" => substr($rply,4));
352
      if($this->do_debug >= 1) {
353
        echo "SMTP -> ERROR: " . $this->error["error"] . ": " . $rply . $this->CRLF . '<br />';
354
      }
355
      return false;
451
    /**
452
     * Close the socket and clean up the state of the class.
453
     * Don't use this function without first trying to use QUIT.
454
     * @see quit()
455
     * @access public
456
     * @return void
457
     */
458
    public function close()
459
    {
460
        $this->error = null; // so there is no confusion
461
        $this->helo_rply = null;
462
        if (!empty($this->smtp_conn)) {
463
            // close the connection and cleanup
464
            fclose($this->smtp_conn);
465
            $this->smtp_conn = 0;
466
        }
356 467
    }
357 468

  
358
    /* the server is ready to accept data!
359
     * according to rfc 821 we should not send more than 1000
360
     * including the CRLF
361
     * characters on a single line so we will break the data up
362
     * into lines by \r and/or \n then if needed we will break
363
     * each of those into smaller lines to fit within the limit.
364
     * in addition we will be looking for lines that start with
365
     * a period '.' and append and additional period '.' to that
366
     * line. NOTE: this does not count towards limit.
469
    /**
470
     * Send an SMTP DATA command.
471
     * Issues a data command and sends the msg_data to the server,
472
     * finializing the mail transaction. $msg_data is the message
473
     * that is to be send with the headers. Each header needs to be
474
     * on a single line followed by a <CRLF> with the message headers
475
     * and the message body being separated by and additional <CRLF>.
476
     * Implements rfc 821: DATA <CRLF>
477
     * @param string $msg_data Message data to send
478
     * @access public
479
     * @return bool
367 480
     */
481
    public function data($msg_data)
482
    {
483
        if (!$this->sendCommand('DATA', 'DATA', 354)) {
484
            return false;
485
        }
368 486

  
369
    // normalize the line breaks so we know the explode works
370
    $msg_data = str_replace("\r\n","\n",$msg_data);
371
    $msg_data = str_replace("\r","\n",$msg_data);
372
    $lines = explode("\n",$msg_data);
487
        /* The server is ready to accept data!
488
         * according to rfc821 we should not send more than 1000
489
         * including the CRLF
490
         * characters on a single line so we will break the data up
491
         * into lines by \r and/or \n then if needed we will break
492
         * each of those into smaller lines to fit within the limit.
493
         * in addition we will be looking for lines that start with
494
         * a period '.' and append and additional period '.' to that
495
         * line. NOTE: this does not count towards limit.
496
         */
373 497

  
374
    /* we need to find a good way to determine is headers are
375
     * in the msg_data or if it is a straight msg body
376
     * currently I am assuming rfc 822 definitions of msg headers
377
     * and if the first field of the first line (':' sperated)
378
     * does not contain a space then it _should_ be a header
379
     * and we can process all lines before a blank "" line as
380
     * headers.
381
     */
498
        // Normalize the line breaks before exploding
499
        $msg_data = str_replace("\r\n", "\n", $msg_data);
500
        $msg_data = str_replace("\r", "\n", $msg_data);
501
        $lines = explode("\n", $msg_data);
382 502

  
383
    $field = substr($lines[0],0,strpos($lines[0],":"));
384
    $in_headers = false;
385
    if(!empty($field) && !strstr($field," ")) {
386
      $in_headers = true;
387
    }
503
        /* We need to find a good way to determine if headers are
504
         * in the msg_data or if it is a straight msg body
505
         * currently I am assuming rfc822 definitions of msg headers
506
         * and if the first field of the first line (':' separated)
507
         * does not contain a space then it _should_ be a header
508
         * and we can process all lines before a blank "" line as
509
         * headers.
510
         */
388 511

  
389
    $max_line_length = 998; // used below; set here for ease in change
390

  
391
    while(list(,$line) = @each($lines)) {
392
      $lines_out = null;
393
      if($line == "" && $in_headers) {
512
        $field = substr($lines[0], 0, strpos($lines[0], ':'));
394 513
        $in_headers = false;
395
      }
396
      // ok we need to break this line up into several smaller lines
397
      while(strlen($line) > $max_line_length) {
398
        $pos = strrpos(substr($line,0,$max_line_length)," ");
399

  
400
        // Patch to fix DOS attack
401
        if(!$pos) {
402
          $pos = $max_line_length - 1;
403
          $lines_out[] = substr($line,0,$pos);
404
          $line = substr($line,$pos);
405
        } else {
406
          $lines_out[] = substr($line,0,$pos);
407
          $line = substr($line,$pos + 1);
514
        if (!empty($field) && !strstr($field, ' ')) {
515
            $in_headers = true;
408 516
        }
409 517

  
410
        /* if processing headers add a LWSP-char to the front of new line
411
         * rfc 822 on long msg headers
412
         */
413
        if($in_headers) {
414
          $line = "\t" . $line;
415
        }
416
      }
417
      $lines_out[] = $line;
518
        //RFC 2822 section 2.1.1 limit
519
        $max_line_length = 998;
418 520

  
419
      // send the lines to the server
420
      while(list(,$line_out) = @each($lines_out)) {
421
        if(strlen($line_out) > 0)
422
        {
423
          if(substr($line_out, 0, 1) == ".") {
424
            $line_out = "." . $line_out;
425
          }
426
        }
427
        fputs($this->smtp_conn,$line_out . $this->CRLF);
428
      }
429
    }
521
        foreach ($lines as $line) {
522
            $lines_out = null;
523
            if ($line == '' && $in_headers) {
524
                $in_headers = false;
525
            }
526
            // ok we need to break this line up into several smaller lines
527
            while (strlen($line) > $max_line_length) {
528
                $pos = strrpos(substr($line, 0, $max_line_length), ' ');
430 529

  
431
    // message data has been sent
432
    fputs($this->smtp_conn, $this->CRLF . "." . $this->CRLF);
530
                // Patch to fix DOS attack
531
                if (!$pos) {
532
                    $pos = $max_line_length - 1;
533
                    $lines_out[] = substr($line, 0, $pos);
534
                    $line = substr($line, $pos);
535
                } else {
536
                    $lines_out[] = substr($line, 0, $pos);
537
                    $line = substr($line, $pos + 1);
538
                }
433 539

  
434
    $rply = $this->get_lines();
435
    $code = substr($rply,0,3);
540
                /* If processing headers add a LWSP-char to the front of new line
541
                 * rfc822 on long msg headers
542
                 */
543
                if ($in_headers) {
544
                    $line = "\t" . $line;
545
                }
546
            }
547
            $lines_out[] = $line;
436 548

  
437
    if($this->do_debug >= 2) {
438
      echo "SMTP -> FROM SERVER:" . $rply . $this->CRLF . '<br />';
439
    }
549
            // send the lines to the server
550
            while (list(, $line_out) = @each($lines_out)) {
551
                if (strlen($line_out) > 0) {
552
                    if (substr($line_out, 0, 1) == '.') {
553
                        $line_out = '.' . $line_out;
554
                    }
555
                }
556
                $this->client_send($line_out . self::CRLF);
557
            }
558
        }
440 559

  
441
    if($code != 250) {
442
      $this->error =
443
        array("error" => "DATA not accepted from server",
444
              "smtp_code" => $code,
445
              "smtp_msg" => substr($rply,4));
446
      if($this->do_debug >= 1) {
447
        echo "SMTP -> ERROR: " . $this->error["error"] . ": " . $rply . $this->CRLF . '<br />';
448
      }
449
      return false;
560
        // Message data has been sent, complete the command
561
        return $this->sendCommand('DATA END', '.', 250);
450 562
    }
451
    return true;
452
  }
453 563

  
454
  /**
455
   * Sends the HELO command to the smtp server.
456
   * This makes sure that we and the server are in
457
   * the same known state.
458
   *
459
   * Implements from rfc 821: HELO <SP> <domain> <CRLF>
460
   *
461
   * SMTP CODE SUCCESS: 250
462
   * SMTP CODE ERROR  : 500, 501, 504, 421
463
   * @access public
464
   * @return bool
465
   */
466
  public function Hello($host = '') {
467
    $this->error = null; // so no confusion is caused
564
    /**
565
     * Send an SMTP HELO or EHLO command.
566
     * Used to identify the sending server to the receiving server.
567
     * This makes sure that client and server are in a known state.
568
     * Implements from RFC 821: HELO <SP> <domain> <CRLF>
569
     * and RFC 2821 EHLO.
570
     * @param string $host The host name or IP to connect to
571
     * @access public
572
     * @return bool
573
     */
574
    public function hello($host = '')
575
    {
576
        // Try extended hello first (RFC 2821)
577
        if (!$this->sendHello('EHLO', $host)) {
578
            if (!$this->sendHello('HELO', $host)) {
579
                return false;
580
            }
581
        }
468 582

  
469
    if(!$this->connected()) {
470
      $this->error = array(
471
            "error" => "Called Hello() without being connected");
472
      return false;
583
        return true;
473 584
    }
474 585

  
475
    // if hostname for HELO was not specified send default
476
    if(empty($host)) {
477
      // determine appropriate default to send to server
478
      $host = "localhost";
586
    /**
587
     * Send an SMTP HELO or EHLO command.
588
     * Low-level implementation used by hello()
589
     * @see hello()
590
     * @param string $hello The HELO string
591
     * @param string $host  The hostname to say we are
592
     * @access protected
593
     * @return bool
594
     */
595
    protected function sendHello($hello, $host)
596
    {
597
        $noerror = $this->sendCommand($hello, $hello . ' ' . $host, 250);
598
        $this->helo_rply = $this->last_reply;
599
        return $noerror;
479 600
    }
480 601

  
481
    // Send extended hello first (RFC 2821)
482
    if(!$this->SendHello("EHLO", $host)) {
483
      if(!$this->SendHello("HELO", $host)) {
484
        return false;
485
      }
602
    /**
603
     * Send an SMTP MAIL command.
604
     * Starts a mail transaction from the email address specified in
605
     * $from. Returns true if successful or false otherwise. If True
606
     * the mail transaction is started and then one or more recipient
607
     * commands may be called followed by a data command.
608
     * Implements rfc 821: MAIL <SP> FROM:<reverse-path> <CRLF>
609
     * @param string $from Source address of this message
610
     * @access public
611
     * @return bool
612
     */
613
    public function mail($from)
614
    {
615
        $useVerp = ($this->do_verp ? ' XVERP' : '');
616
        return $this->sendCommand(
617
            'MAIL FROM',
618
            'MAIL FROM:<' . $from . '>' . $useVerp,
619
            250
620
        );
486 621
    }
487 622

  
488
    return true;
489
  }
623
    /**
624
     * Send an SMTP QUIT command.
625
     * Closes the socket if there is no error or the $close_on_error argument is true.
626
     * Implements from rfc 821: QUIT <CRLF>
627
     * @param bool $close_on_error Should the connection close if an error occurs?
628
     * @access public
629
     * @return bool
630
     */
631
    public function quit($close_on_error = true)
632
    {
633
        $noerror = $this->sendCommand('QUIT', 'QUIT', 221);
634
        $e = $this->error; //Save any error
635
        if ($noerror or $close_on_error) {
636
            $this->close();
637
            $this->error = $e; //Restore any error from the quit command
638
        }
639
        return $noerror;
640
    }
490 641

  
491
  /**
492
   * Sends a HELO/EHLO command.
493
   * @access private
494
   * @return bool
495
   */
496
  private function SendHello($hello, $host) {
497
    fputs($this->smtp_conn, $hello . " " . $host . $this->CRLF);
498

  
499
    $rply = $this->get_lines();
500
    $code = substr($rply,0,3);
501

  
502
    if($this->do_debug >= 2) {
503
      echo "SMTP -> FROM SERVER: " . $rply . $this->CRLF . '<br />';
642
    /**
643
     * Send an SMTP RCPT command.
644
     * Sets the TO argument to $to.
645
     * Returns true if the recipient was accepted false if it was rejected.
646
     * Implements from rfc 821: RCPT <SP> TO:<forward-path> <CRLF>
647
     * @param string $to The address the message is being sent to
648
     * @access public
649
     * @return bool
650
     */
651
    public function recipient($to)
652
    {
653
        return $this->sendCommand(
654
            'RCPT TO ',
655
            'RCPT TO:<' . $to . '>',
656
            array(250, 251)
657
        );
504 658
    }
505 659

  
506
    if($code != 250) {
507
      $this->error =
508
        array("error" => $hello . " not accepted from server",
509
              "smtp_code" => $code,
510
              "smtp_msg" => substr($rply,4));
511
      if($this->do_debug >= 1) {
512
        echo "SMTP -> ERROR: " . $this->error["error"] . ": " . $rply . $this->CRLF . '<br />';
513
      }
514
      return false;
660
    /**
661
     * Send an SMTP RSET command.
662
     * Abort any transaction that is currently in progress.
663
     * Implements rfc 821: RSET <CRLF>
664
     * @access public
665
     * @return bool True on success.
666
     */
667
    public function reset()
668
    {
669
        return $this->sendCommand('RSET', 'RSET', 250);
515 670
    }
516 671

  
517
    $this->helo_rply = $rply;
672
    /**
673
     * Send a command to an SMTP server and check its return code.
674
     * @param string $command       The command name - not sent to the server
675
     * @param string $commandstring The actual command to send
676
     * @param int|array $expect     One or more expected integer success codes
677
     * @access protected
678
     * @return bool True on success.
679
     */
680
    protected function sendCommand($command, $commandstring, $expect)
681
    {
682
        if (!$this->connected()) {
683
            $this->error = array(
684
                "error" => "Called $command without being connected"
685
            );
686
            return false;
687
        }
688
        $this->client_send($commandstring . self::CRLF);
518 689

  
519
    return true;
520
  }
690
        $reply = $this->get_lines();
691
        $code = substr($reply, 0, 3);
521 692

  
522
  /**
523
   * Starts a mail transaction from the email address specified in
524
   * $from. Returns true if successful or false otherwise. If True
525
   * the mail transaction is started and then one or more Recipient
526
   * commands may be called followed by a Data command.
527
   *
528
   * Implements rfc 821: MAIL <SP> FROM:<reverse-path> <CRLF>
529
   *
530
   * SMTP CODE SUCCESS: 250
531
   * SMTP CODE SUCCESS: 552,451,452
532
   * SMTP CODE SUCCESS: 500,501,421
533
   * @access public
534
   * @return bool
535
   */
536
  public function Mail($from) {
537
    $this->error = null; // so no confusion is caused
693
        if ($this->do_debug >= 2) {
694
            $this->edebug('SMTP -> FROM SERVER:' . $reply);
695
        }
538 696

  
539
    if(!$this->connected()) {
540
      $this->error = array(
541
              "error" => "Called Mail() without being connected");
542
      return false;
543
    }
697
        if (!in_array($code, (array)$expect)) {
698
            $this->last_reply = null;
699
            $this->error = array(
700
                "error" => "$command command failed",
701
                "smtp_code" => $code,
702
                "detail" => substr($reply, 4)
703
            );
704
            if ($this->do_debug >= 1) {
705
                $this->edebug(
706
                    'SMTP -> ERROR: ' . $this->error['error'] . ': ' . $reply
707
                );
708
            }
709
            return false;
710
        }
544 711

  
545
    $useVerp = ($this->do_verp ? "XVERP" : "");
546
    fputs($this->smtp_conn,"MAIL FROM:<" . $from . ">" . $useVerp . $this->CRLF);
547

  
548
    $rply = $this->get_lines();
549
    $code = substr($rply,0,3);
550

  
551
    if($this->do_debug >= 2) {
552
      echo "SMTP -> FROM SERVER:" . $rply . $this->CRLF . '<br />';
712
        $this->last_reply = $reply;
713
        $this->error = null;
714
        return true;
553 715
    }
554 716

  
555
    if($code != 250) {
556
      $this->error =
557
        array("error" => "MAIL not accepted from server",
558
              "smtp_code" => $code,
559
              "smtp_msg" => substr($rply,4));
560
      if($this->do_debug >= 1) {
561
        echo "SMTP -> ERROR: " . $this->error["error"] . ": " . $rply . $this->CRLF . '<br />';
562
      }
563
      return false;
717
    /**
718
     * Send an SMTP SAML command.
719
     * Starts a mail transaction from the email address specified in $from.
720
     * Returns true if successful or false otherwise. If True
721
     * the mail transaction is started and then one or more recipient
722
     * commands may be called followed by a data command. This command
723
     * will send the message to the users terminal if they are logged
724
     * in and send them an email.
725
     * Implements rfc 821: SAML <SP> FROM:<reverse-path> <CRLF>
726
     * @param string $from The address the message is from
727
     * @access public
728
     * @return bool
729
     */
730
    public function sendAndMail($from)
731
    {
732
        return $this->sendCommand("SAML", "SAML FROM:$from", 250);
564 733
    }
565
    return true;
566
  }
567 734

  
568
  /**
569
   * Sends the quit command to the server and then closes the socket
570
   * if there is no error or the $close_on_error argument is true.
571
   *
572
   * Implements from rfc 821: QUIT <CRLF>
573
   *
574
   * SMTP CODE SUCCESS: 221
575
   * SMTP CODE ERROR  : 500
576
   * @access public
577
   * @return bool
578
   */
579
  public function Quit($close_on_error = true) {
580
    $this->error = null; // so there is no confusion
581

  
582
    if(!$this->connected()) {
583
      $this->error = array(
584
              "error" => "Called Quit() without being connected");
585
      return false;
735
    /**
736
     * Send an SMTP VRFY command.
737
     * @param string $name The name to verify
738
     * @access public
739
     * @return bool
740
     */
741
    public function verify($name)
742
    {
743
        return $this->sendCommand("VRFY", "VRFY $name", array(250, 251));
586 744
    }
587 745

  
588
    // send the quit command to the server
589
    fputs($this->smtp_conn,"quit" . $this->CRLF);
590

  
591
    // get any good-bye messages
592
    $byemsg = $this->get_lines();
593

  
594
    if($this->do_debug >= 2) {
595
      echo "SMTP -> FROM SERVER:" . $byemsg . $this->CRLF . '<br />';
746
    /**
747
     * Send an SMTP NOOP command.
748
     * Used to keep keep-alives alive, doesn't actually do anything
749
     * @access public
750
     * @return bool
751
     */
752
    public function noop()
753
    {
754
        return $this->sendCommand("NOOP", "NOOP", 250);
596 755
    }
597 756

  
598
    $rval = true;
599
    $e = null;
600

  
601
    $code = substr($byemsg,0,3);
602
    if($code != 221) {
603
      // use e as a tmp var cause Close will overwrite $this->error
604
      $e = array("error" => "SMTP server rejected quit command",
605
                 "smtp_code" => $code,
606
                 "smtp_rply" => substr($byemsg,4));
607
      $rval = false;
608
      if($this->do_debug >= 1) {
609
        echo "SMTP -> ERROR: " . $e["error"] . ": " . $byemsg . $this->CRLF . '<br />';
610
      }
757
    /**
758
     * Send an SMTP TURN command.
759
     * This is an optional command for SMTP that this class does not support.
760
     * This method is here to make the RFC821 Definition
761
     * complete for this class and __may__ be implemented in future
762
     * Implements from rfc 821: TURN <CRLF>
763
     * @access public
764
     * @return bool
765
     */
766
    public function turn()
767
    {
768
        $this->error = array(
769
            'error' => 'The SMTP TURN command is not implemented'
770
        );
771
        if ($this->do_debug >= 1) {
772
            $this->edebug('SMTP -> NOTICE: ' . $this->error['error']);
773
        }
774
        return false;
611 775
    }
612 776

  
613
    if(empty($e) || $close_on_error) {
614
      $this->Close();
777
    /**
778
     * Send raw data to the server.
779
     * @param string $data The data to send
780
     * @access public
781
     * @return int|bool The number of bytes sent to the server or FALSE on error
782
     */
783
    public function client_send($data)
784
    {
785
        if ($this->do_debug >= 1) {
786
            $this->edebug("CLIENT -> SMTP: $data");
787
        }
788
        return fwrite($this->smtp_conn, $data);
615 789
    }
616 790

  
617
    return $rval;
618
  }
619

  
620
  /**
621
   * Sends the command RCPT to the SMTP server with the TO: argument of $to.
622
   * Returns true if the recipient was accepted false if it was rejected.
623
   *
624
   * Implements from rfc 821: RCPT <SP> TO:<forward-path> <CRLF>
625
   *
626
   * SMTP CODE SUCCESS: 250,251
627
   * SMTP CODE FAILURE: 550,551,552,553,450,451,452
628
   * SMTP CODE ERROR  : 500,501,503,421
629
   * @access public
630
   * @return bool
631
   */
632
  public function Recipient($to) {
633
    $this->error = null; // so no confusion is caused
634

  
635
    if(!$this->connected()) {
636
      $this->error = array(
637
              "error" => "Called Recipient() without being connected");
638
      return false;
791
    /**
792
     * Get the latest error.
793
     * @access public
794
     * @return array
795
     */
796
    public function getError()
797
    {
798
        return $this->error;
639 799
    }
640 800

  
641
    fputs($this->smtp_conn,"RCPT TO:<" . $to . ">" . $this->CRLF);
642

  
643
    $rply = $this->get_lines();
644
    $code = substr($rply,0,3);
645

  
646
    if($this->do_debug >= 2) {
647
      echo "SMTP -> FROM SERVER:" . $rply . $this->CRLF . '<br />';
801
    /**
802
     * Get the last reply from the server.
803
     * @access public
804
     * @return string
805
     */
806
    public function getLastReply()
807
    {
808
        return $this->last_reply;
648 809
    }
649 810

  
650
    if($code != 250 && $code != 251) {
651
      $this->error =
652
        array("error" => "RCPT not accepted from server",
653
              "smtp_code" => $code,
654
              "smtp_msg" => substr($rply,4));
655
      if($this->do_debug >= 1) {
656
        echo "SMTP -> ERROR: " . $this->error["error"] . ": " . $rply . $this->CRLF . '<br />';
657
      }
658
      return false;
811
    /**
812
     * Read the SMTP server's response.
813
     * Either before eof or socket timeout occurs on the operation.
814
     * With SMTP we can tell if we have more lines to read if the
815
     * 4th character is '-' symbol. If it is a space then we don't
816
     * need to read anything else.
817
     * @access protected
818
     * @return string
819
     */
820
    protected function get_lines()
821
    {
822
        $data = '';
823
        $endtime = 0;
824
        // If the connection is bad, give up now
825
        if (!is_resource($this->smtp_conn)) {
826
            return $data;
827
        }
828
        stream_set_timeout($this->smtp_conn, $this->Timeout);
829
        if ($this->Timelimit > 0) {
830
            $endtime = time() + $this->Timelimit;
831
        }
832
        while (is_resource($this->smtp_conn) && !feof($this->smtp_conn)) {
833
            $str = @fgets($this->smtp_conn, 515);
834
            if ($this->do_debug >= 4) {
835
                $this->edebug("SMTP -> get_lines(): \$data was \"$data\"");
836
                $this->edebug("SMTP -> get_lines(): \$str is \"$str\"");
837
            }
838
            $data .= $str;
839
            if ($this->do_debug >= 4) {
840
                $this->edebug("SMTP -> get_lines(): \$data is \"$data\"");
841
            }
842
            // if 4th character is a space, we are done reading, break the loop
843
            if (substr($str, 3, 1) == ' ') {
844
                break;
845
            }
846
            // Timed-out? Log and break
847
            $info = stream_get_meta_data($this->smtp_conn);
848
            if ($info['timed_out']) {
849
                if ($this->do_debug >= 4) {
850
                    $this->edebug(
851
                        'SMTP -> get_lines(): timed-out (' . $this->Timeout . ' sec)'
852
                    );
853
                }
854
                break;
855
            }
856
            // Now check if reads took too long
857
            if ($endtime) {
858
                if (time() > $endtime) {
859
                    if ($this->do_debug >= 4) {
860
                        $this->edebug(
861
                            'SMTP -> get_lines(): timelimit reached ('
862
                            . $this->Timelimit . ' sec)'
863
                        );
864
                    }
865
                    break;
866
                }
867
            }
868
        }
869
        return $data;
659 870
    }
660
    return true;
661
  }
662 871

  
663
  /**
664
   * Sends the RSET command to abort and transaction that is
665
   * currently in progress. Returns true if successful false
666
   * otherwise.
667
   *
668
   * Implements rfc 821: RSET <CRLF>
669
   *
670
   * SMTP CODE SUCCESS: 250
671
   * SMTP CODE ERROR  : 500,501,504,421
672
   * @access public
673
   * @return bool
674
   */
675
  public function Reset() {
676
    $this->error = null; // so no confusion is caused
677

  
678
    if(!$this->connected()) {
679
      $this->error = array(
680
              "error" => "Called Reset() without being connected");
681
      return false;
872
    /**
873
     * Enable or disable VERP address generation.
874
     * @param bool $enabled
875
     */
876
    public function setVerp($enabled = false)
877
    {
878
        $this->do_verp = $enabled;
682 879
    }
683 880

  
684
    fputs($this->smtp_conn,"RSET" . $this->CRLF);
685

  
686
    $rply = $this->get_lines();
687
    $code = substr($rply,0,3);
688

  
689
    if($this->do_debug >= 2) {
690
      echo "SMTP -> FROM SERVER:" . $rply . $this->CRLF . '<br />';
881
    /**
882
     * Get VERP address generation mode.
883
     * @return bool
884
     */
885
    public function getVerp()
886
    {
887
        return $this->do_verp;
691 888
    }
692 889

  
693
    if($code != 250) {
694
      $this->error =
695
        array("error" => "RSET failed",
696
              "smtp_code" => $code,
697
              "smtp_msg" => substr($rply,4));
698
      if($this->do_debug >= 1) {
699
        echo "SMTP -> ERROR: " . $this->error["error"] . ": " . $rply . $this->CRLF . '<br />';
700
      }
701
      return false;
890
    /**
891
     * Set debug output method.
892
     * @param string $method The function/method to use for debugging output.
893
     */
894
    public function setDebugOutput($method = 'echo')
895
    {
896
        $this->Debugoutput = $method;
702 897
    }
703 898

  
704
    return true;
705
  }
706

  
707
  /**
708
   * Starts a mail transaction from the email address specified in
709
   * $from. Returns true if successful or false otherwise. If True
710
   * the mail transaction is started and then one or more Recipient
... This diff was truncated because it exceeds the maximum size that can be displayed.

Also available in: Unified diff