Changeset 59481 for trunk/src/wp-includes/PHPMailer/SMTP.php
- Timestamp:
- 12/03/2024 03:20:13 PM (2 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/PHPMailer/SMTP.php
r59246 r59481 36 36 * @var string 37 37 */ 38 const VERSION = '6.9. 2';38 const VERSION = '6.9.3'; 39 39 40 40 /** … … 63 63 * *excluding* a trailing CRLF break. 64 64 * 65 * @see https:// tools.ietf.org/html/rfc5321#section-4.5.3.1.665 * @see https://www.rfc-editor.org/rfc/rfc5321#section-4.5.3.1.6 66 66 * 67 67 * @var int … … 73 73 * *including* a trailing CRLF line break. 74 74 * 75 * @see https:// tools.ietf.org/html/rfc5321#section-4.5.3.1.575 * @see https://www.rfc-editor.org/rfc/rfc5321#section-4.5.3.1.5 76 76 * 77 77 * @var int … … 374 374 //Anything other than a 220 response means something went wrong 375 375 //RFC 5321 says the server will wait for us to send a QUIT in response to a 554 error 376 //https:// tools.ietf.org/html/rfc5321#section-3.1376 //https://www.rfc-editor.org/rfc/rfc5321#section-3.1 377 377 if ($responseCode === 554) { 378 378 $this->quit(); … … 583 583 //Send encoded username and password 584 584 if ( 585 //Format from https:// tools.ietf.org/html/rfc4616#section-2585 //Format from https://www.rfc-editor.org/rfc/rfc4616#section-2 586 586 //We skip the first field (it's forgery), so the string starts with a null byte 587 587 !$this->sendCommand( … … 796 796 foreach ($lines_out as $line_out) { 797 797 //Dot-stuffing as per RFC5321 section 4.5.2 798 //https:// tools.ietf.org/html/rfc5321#section-4.5.2798 //https://www.rfc-editor.org/rfc/rfc5321#section-4.5.2 799 799 if (!empty($line_out) && $line_out[0] === '.') { 800 800 $line_out = '.' . $line_out;
Note: See TracChangeset
for help on using the changeset viewer.