Skip to content

Commit

Permalink
Upgrade PHPMailer to 5.2.9
Browse files Browse the repository at this point in the history
See changelog.md for full details

Fixes #17717
  • Loading branch information
dregad committed Apr 18, 2015
1 parent 3b58440 commit 4c3ce1a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion config_defaults_inc.php
Expand Up @@ -550,7 +550,7 @@
* standard-compliant, with this you can.
* - EMAIL_VALIDATE_AUTO: let PHPMailer's
* {@link http://phpmailer.github.io/PHPMailer/classes/PHPMailer.html#method_validateAddress validateAddress()}
* method pick the best validation pattern. As of PHPMailer v5.2.8 on recent
* method pick the best validation pattern. As of PHPMailer v5.2.9, on recent
* systems, this is generally the same as EMAIL_VALIDATE_RFC5322.
* - OFF: disable email validation
*
Expand Down
4 changes: 2 additions & 2 deletions core/email_api.php
Expand Up @@ -47,7 +47,7 @@
* @uses user_pref_api.php
* @uses utility_api.php
*
* @uses class.phpmailer.php PHPMailer library
* @uses PHPMailerAutoload.php PHPMailer library
*/

require_api( 'access_api.php' );
Expand All @@ -74,7 +74,7 @@
require_api( 'user_pref_api.php' );
require_api( 'utility_api.php' );

require_lib( 'phpmailer' . DIRECTORY_SEPARATOR . 'class.phpmailer.php' );
require_lib( 'phpmailer/PHPMailerAutoload.php' );

# reusable object of class SMTP
$g_phpMailer = null;
Expand Down
2 changes: 1 addition & 1 deletion docbook/Admin_Guide/en-US/config/email.xml
Expand Up @@ -177,7 +177,7 @@
<ulink url="http://phpmailer.github.io/PHPMailer/classes/PHPMailer.html#method_validateAddress">
validateAddress() method</ulink>
pick the best validation pattern.
As of PHPMailer v5.2.8 on recent systems, this is
As of PHPMailer v5.2.9 on recent systems, this is
generally the same as
<literal>EMAIL_VALIDATE_RFC5322</literal>.
</para></listitem>
Expand Down
2 changes: 1 addition & 1 deletion library/README.libs
Expand Up @@ -8,7 +8,7 @@ directory | project | version | status
adodb | adodb | v5.19 | patched [1][3]
disposable | disposable | 1.1.0 | unpatched
ezc | ez Components | 2009.2.1 | unpatched
phpmailer | PHPMailer | 5.2.8 | unpatched [1]
phpmailer | PHPMailer | 5.2.9 | unpatched [1]
rssbuilder | RSSBuilder | 2.2.1 | patched [2]
utf8 | phputf8 | 0.5 | unpatched
securimage | PHP Captcha | 3.5.4 | unpatched [1]
Expand Down
2 changes: 1 addition & 1 deletion library/phpmailer
Submodule phpmailer updated 48 files
+5 −2 README.md
+23 −1 changelog.md
+256 −218 class.phpmailer.php
+56 −76 class.pop3.php
+184 −153 class.smtp.php
+148 −0 extras/EasyPeasyICS.php
+17 −0 extras/README.md
+1,166 −0 extras/htmlfilter.php
+185 −0 extras/ntlm_sasl_client.php
+20 −20 language/phpmailer.lang-ar.php
+4 −3 language/phpmailer.lang-be.php
+5 −5 language/phpmailer.lang-br.php
+4 −4 language/phpmailer.lang-ca.php
+4 −4 language/phpmailer.lang-ch.php
+3 −3 language/phpmailer.lang-cz.php
+3 −3 language/phpmailer.lang-de.php
+4 −4 language/phpmailer.lang-dk.php
+3 −3 language/phpmailer.lang-el.php
+3 −3 language/phpmailer.lang-eo.php
+4 −5 language/phpmailer.lang-es.php
+5 −5 language/phpmailer.lang-et.php
+5 −5 language/phpmailer.lang-fa.php
+4 −4 language/phpmailer.lang-fi.php
+4 −5 language/phpmailer.lang-fo.php
+2 −3 language/phpmailer.lang-fr.php
+4 −5 language/phpmailer.lang-gl.php
+4 −4 language/phpmailer.lang-he.php
+3 −3 language/phpmailer.lang-hr.php
+4 −3 language/phpmailer.lang-hu.php
+5 −5 language/phpmailer.lang-it.php
+5 −5 language/phpmailer.lang-ja.php
+4 −3 language/phpmailer.lang-ka.php
+4 −3 language/phpmailer.lang-lt.php
+4 −3 language/phpmailer.lang-lv.php
+4 −3 language/phpmailer.lang-nl.php
+3 −3 language/phpmailer.lang-no.php
+3 −3 language/phpmailer.lang-pl.php
+4 −5 language/phpmailer.lang-pt.php
+4 −5 language/phpmailer.lang-ro.php
+4 −3 language/phpmailer.lang-ru.php
+4 −4 language/phpmailer.lang-se.php
+4 −4 language/phpmailer.lang-sk.php
+3 −3 language/phpmailer.lang-sr.php
+7 −6 language/phpmailer.lang-tr.php
+4 −3 language/phpmailer.lang-uk.php
+3 −3 language/phpmailer.lang-vi.php
+5 −5 language/phpmailer.lang-zh.php
+5 −5 language/phpmailer.lang-zh_cn.php

0 comments on commit 4c3ce1a

Please sign in to comment.