Revision 1853
Added by Dietmar almost 12 years ago
class.smtp.php | ||
---|---|---|
2 | 2 |
/*~ class.smtp.php |
3 | 3 |
.---------------------------------------------------------------------------. |
4 | 4 |
| Software: PHPMailer - PHP email class | |
5 |
| Version: 5.2 |
|
|
5 |
| Version: 5.2.1 |
|
|
6 | 6 |
| Site: https://code.google.com/a/apache-extras.org/p/phpmailer/ | |
7 | 7 |
| ------------------------------------------------------------------------- | |
8 | 8 |
| Admin: Jim Jagielski (project admininistrator) | |
... | ... | |
10 | 10 |
| : Marcus Bointon (coolbru) coolbru@users.sourceforge.net | |
11 | 11 |
| : Jim Jagielski (jimjag) jimjag@gmail.com | |
12 | 12 |
| Founder: Brent R. Matzelle (original founder) | |
13 |
| Copyright (c) 2010-2011, Jim Jagielski. All Rights Reserved. |
|
|
13 |
| Copyright (c) 2010-2012, Jim Jagielski. All Rights Reserved. |
|
|
14 | 14 |
| Copyright (c) 2004-2009, Andy Prevost. All Rights Reserved. | |
15 | 15 |
| Copyright (c) 2001-2003, Brent R. Matzelle | |
16 | 16 |
| ------------------------------------------------------------------------- | |
... | ... | |
30 | 30 |
* @author Marcus Bointon |
31 | 31 |
* @copyright 2004 - 2008 Andy Prevost |
32 | 32 |
* @author Jim Jagielski |
33 |
* @copyright 2010 - 2011 Jim Jagielski
|
|
33 |
* @copyright 2010 - 2012 Jim Jagielski
|
|
34 | 34 |
* @license http://www.gnu.org/copyleft/lesser.html Distributed under the Lesser General Public License (LGPL) |
35 | 35 |
* @version $Id: class.smtp.php 450 2010-06-23 16:46:33Z coolbru $ |
36 | 36 |
*/ |
... | ... | |
72 | 72 |
* Sets the SMTP PHPMailer Version number |
73 | 73 |
* @var string |
74 | 74 |
*/ |
75 |
public $Version = '5.2'; |
|
75 |
public $Version = '5.2.1';
|
|
76 | 76 |
|
77 | 77 |
///////////////////////////////////////////////// |
78 | 78 |
// PROPERTIES, PRIVATE AND PROTECTED |
... | ... | |
797 | 797 |
*/ |
798 | 798 |
private function get_lines() { |
799 | 799 |
$data = ""; |
800 |
while($str = @fgets($this->smtp_conn,515)) { |
|
800 |
while(!feof($this->smtp_conn)) { |
|
801 |
$str = @fgets($this->smtp_conn,515); |
|
801 | 802 |
if($this->do_debug >= 4) { |
802 | 803 |
echo "SMTP -> get_lines(): \$data was \"$data\"" . $this->CRLF . '<br />'; |
803 | 804 |
echo "SMTP -> get_lines(): \$str is \"$str\"" . $this->CRLF . '<br />'; |
Also available in: Unified diff
! update phpmailer to version 5.2.1
! update jquery to 1.8.3 and jQuery UI to 1.9.2