0
0
mirror of https://github.com/PHPMailer/PHPMailer.git synced 2024-09-20 01:52:15 +02:00
Commit Graph

2248 Commits

Author SHA1 Message Date
Marcus Bointon
40ede8cc04
PHPMailer 6.5.2 2021-11-25 17:22:48 +01:00
Marcus Bointon
c1a6339108
Enable PHP 8.1 2021-11-25 17:22:48 +01:00
Marcus Bointon
2649f9d70f Changelog 2021-11-19 19:33:09 +01:00
Marcus Bointon
1abbf09a3b CS 2021-11-19 19:32:01 +01:00
Marcus Bointon
eaac722adf
Merge pull request #2564 from j-bernard/fix_2563
Fix #2563: Provide the right flags to IDN methods for email addresses conversion
2021-11-19 19:31:01 +01:00
Julien BERNARD
3c81f485df Fix #2563: Provide the right flags to IDN methods for email addresses conversion 2021-11-19 13:19:50 -05:00
Marcus Bointon
e84b657160
Merge pull request #2558 from Fonata/patch-1
Improve spelling and code style in SMTP.php
2021-11-12 15:23:01 +01:00
Fonata
50cc644d0e
Avoid identical line in both if and else branch 2021-11-12 14:00:42 +01:00
Fonata
61d2d02515
Improve spelling in DocBlock 2021-11-12 13:59:28 +01:00
Fonata
ea31254c41
Code style: explicit return value in getServerExt 2021-11-12 13:57:38 +01:00
Marcus Bointon
72c1e32d5e
Merge branch 'BlazOrazem/master' 2021-10-22 15:37:47 +02:00
Marcus Bointon
ef4081ea99
Line breaks in translations are not supported as of 6.5.0 2021-10-22 15:37:35 +02:00
Marcus Bointon
477762e7fc
Merge branch 'patch-1' 2021-10-22 15:34:50 +02:00
Marcus Bointon
35e45fd907
Cleanup 2021-10-22 15:34:38 +02:00
Marcus Bointon
22376a8669
Merge branch 'ro_lang' 2021-10-22 15:29:26 +02:00
Marcus Bointon
8536acacef
Line breaks in translations are not supported as of 6.5.0 2021-10-22 15:28:45 +02:00
Marcus Bointon
b52af5002c
Merge branch 'feature/update-translation-pt-br' 2021-10-22 15:24:15 +02:00
Marcus Bointon
f0798e729a
Merge pull request #2531 from geidsonc/feature/update-translation-pt-br
Update language portuguese brazilian
2021-10-22 15:23:34 +02:00
Marcus Bointon
066dde51bd
Trailing break 2021-10-22 15:22:23 +02:00
Marcus Bointon
485a2b6fea
Line breaks in translations are not supported as of 6.5.0 2021-10-22 15:22:13 +02:00
Geidson Benicio Coelho
af14a5f43e Update language portuguese brasilian 2021-10-22 02:29:03 -03:00
Alex
9d278f37d2 Update romanian translation 2021-10-21 18:42:03 +01:00
Marcus Bointon
537927b550
Fix for ini_get issue in PHP 5.6, fixes #2529 2021-10-20 16:39:14 +02:00
Machou
a2bfc160b1
fr_FR update
I corrected the spaces with this one: U+202F

I don't understand the problem, can you please explain?
2021-10-12 04:50:06 +02:00
Michael Newton
05e70e859c throw exception with details for connection failures 2021-10-11 11:45:39 -04:00
Michael Newton
7b4e8cdf92 add details from SMTP::getError() to STARTTLS exceptions 2021-10-11 11:43:27 -04:00
Blaž Oražem
56051ae53d Fix some more styles 2021-10-11 16:41:36 +02:00
Blaž Oražem
3b01c7675c Fix styles 2021-10-11 16:38:00 +02:00
Blaž Oražem
a7acec2ae7 Slovenian language update 2021-10-11 16:07:16 +02:00
Peter Scopes
6b5b318025 #2523 updates OAuthTokenProvider usage to gmail_xoauth.phps 2021-10-11 10:26:51 +01:00
Peter Scopes
21974a05a1 #2523 adds OAuthTokenProvider interface to allow for other oauth libraries 2021-10-11 09:44:18 +01:00
Marcus Bointon
cbfe93b75a
CS 2021-10-04 17:20:23 +02:00
Marcus Bointon
ca09c748ea
Merge pull request #2519 from miken32/master
POP3 cleanup
2021-10-04 17:15:39 +02:00
Michael Newton
c01d14b8be
don't wait for checkResponse result before failing 2021-10-04 08:44:43 -06:00
Michael Newton
dc854c4671
capture server response to QUIT command
and properly set `$connected` property to false
2021-10-04 08:40:32 -06:00
Marcus Bointon
be98d62e36
Merge pull request #2510 from jrfnl/feature/phpunit-update-config
PHPUnit: update configuration
2021-09-26 22:35:36 +02:00
jrfnl
8732627d40 PHPUnit: update configuration
PHPUnit just released version 9.5.10 and 8.5.21.

This contains a particular (IMO breaking) change:

> * PHPUnit no longer converts PHP deprecations to exceptions by default (configure `convertDeprecationsToExceptions="true"` to enable this)

Let's unpack this:

Previously (PHPUnit < 9.5.10/8.5.21), if PHPUnit would encounter a PHP native deprecation notice, it would:
1. Show a test which causes a deprecation notice to be thrown as **"errored"**,
2. Show the **first** deprecation notice it encountered and
3. PHPUnit would exit with a **non-0 exit code** (2), which will fail a CI build.

As of PHPUnit 9.5.10/8.5.21, if PHPUnit encounters a PHP native deprecation notice, it will no longer do so. Instead PHPUnit will:
1. Show a test which causes a PHP deprecation notice to be thrown as **"risky"**,
2. Show the **all** deprecation notices it encountered and
3. PHPUnit will exit with a **0 exit code**, which will show a CI build as passing.

This commit reverts PHPUnit to the previous behaviour by adding `convertDeprecationsToExceptions="true"` to the PHPUnit configuration.

Refs:
* https://github.com/sebastianbergmann/phpunit/blob/9.5/ChangeLog-8.5.md
* https://github.com/sebastianbergmann/phpunit/blob/9.5/ChangeLog-9.5.md
2021-09-25 19:08:59 +02:00
Marcus Bointon
40a12618ea
Garbage removal! 2021-08-29 19:41:57 +02:00
Marcus Bointon
dd803df5ad
Remove invalid default from address (and name)! Fixes #2396 2021-08-18 11:14:16 +02:00
Marcus Bointon
fd06e7614a
Remove wrong tests 2021-08-18 11:05:30 +02:00
Marcus Bointon
c5d0f48730
Not needed 2021-08-18 11:05:17 +02:00
Marcus Bointon
a99b249d42
6.5.1 2021-08-18 10:39:34 +02:00
Marcus Bointon
5d7f077daa
CS 2021-08-18 10:37:43 +02:00
Marcus Bointon
99937ed637
Fixes #2470 and #2471 2021-08-18 10:35:47 +02:00
Marcus Bointon
a4548d7ebe
Merge pull request #2472 from Arisophy/master
Japanese messages
2021-08-17 15:03:33 +02:00
Arisophy
942da89fc2
Update LocalizationTest.php
Restore the leading space.
2021-08-17 20:59:17 +09:00
Arisophy
8de64a0ba1
Update phpmailer.lang-ja.php
Restore the leading space.
2021-08-17 20:56:49 +09:00
Arisophy
ecb661448f
Update phpmailer.lang-ja.php
Add author
2021-08-17 11:43:22 +09:00
Arisophy
3f358ab478
Update LocalizationTest.php
Remove extra whitespace
2021-08-17 11:40:28 +09:00
Arisophy
de0a1e1af6
Update phpmailer.lang-ja.php 2021-08-15 15:43:19 +09:00