diff --git a/app/src/main/java/eu/faircode/email/EmailService.java b/app/src/main/java/eu/faircode/email/EmailService.java index 29e2bb45a3..5b1f855dbf 100644 --- a/app/src/main/java/eu/faircode/email/EmailService.java +++ b/app/src/main/java/eu/faircode/email/EmailService.java @@ -594,7 +594,7 @@ public class EmailService implements AutoCloseable { throw new AuthenticationFailedException(context.getString(R.string.title_service_error10), ex); if (ConnectionHelper.isAborted(ex)) - throw new MessagingException("The server or network actively aborted the connection", ex); + throw new MessagingException(context.getString(R.string.title_service_abort), ex); if (purpose == PURPOSE_CHECK) { if (port == 995 && !("pop3".equals(protocol) || "pop3s".equals(protocol))) diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 97c93f0804..12ae6f570e 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -1303,6 +1303,7 @@ Please double check the port number Please double check the protocol (SSL/TLS or STARTTLS) This account needs to be authenticated again, which can be done via the quick setup wizard + The server or network actively disconnected the connection Due to Google\'s Play Store policies, it is no longer possible to support insecure connections to email servers with certificate issues for the version of FairEmail distributed in the Play Store. Therefore, this issue can only be resolved by your email provider - the above error information may help them resolve this issue.