1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2024-12-28 10:47:28 +00:00

Use reversed package name as SMTP host name

This commit is contained in:
M66B 2019-11-08 18:07:06 +01:00
parent 8e7903e07b
commit 6cf2fae5fb

View file

@ -18,6 +18,8 @@ import java.net.Inet6Address;
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.List;
@ -301,7 +303,9 @@ public class MailService implements AutoCloseable {
}
} else if ("smtp".equals(protocol) || "smtps".equals(protocol)) {
String haddr = BuildConfig.APPLICATION_ID;
String[] c = BuildConfig.APPLICATION_ID.split("\\.");
Collections.reverse(Arrays.asList(c));
String haddr = TextUtils.join(".", c);
if (useip)
try {