mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-19 05:38:31 +00:00
Attempt to fix PRX4
This commit is contained in:
parent
b001f1ac7f
commit
23121ac172
1 changed files with 3 additions and 1 deletions
|
@ -411,8 +411,10 @@ public class ConnectionHelper {
|
|||
return false;
|
||||
// 501 HELO requires valid address
|
||||
// 501 Syntactically invalid HELO argument(s)
|
||||
// 451 4.7.0 Temporary server error. Please try again later. PRX4 [xxx.yyy.prod.outlook.com]
|
||||
String message = ex.getMessage().toLowerCase(Locale.ROOT);
|
||||
return message.contains("syntactically invalid") ||
|
||||
return message.contains("prx4") ||
|
||||
message.contains("syntactically invalid") ||
|
||||
message.contains("requires valid address");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue