mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-29 13:24:52 +02:00
Added unicode account option
This commit is contained in:
@@ -700,7 +700,7 @@ public class FragmentOAuth extends FragmentBase {
|
||||
EntityLog.log(context, "Trying username=" + alt);
|
||||
try {
|
||||
try (EmailService aservice = new EmailService(
|
||||
context, aprotocol, null, aencryption, false,
|
||||
context, aprotocol, null, aencryption, false, false,
|
||||
EmailService.PURPOSE_CHECK, true)) {
|
||||
aservice.connect(
|
||||
inbound.host, inbound.port,
|
||||
@@ -709,7 +709,7 @@ public class FragmentOAuth extends FragmentBase {
|
||||
null, null);
|
||||
}
|
||||
try (EmailService iservice = new EmailService(
|
||||
context, iprotocol, null, iencryption, false,
|
||||
context, iprotocol, null, iencryption, false, false,
|
||||
EmailService.PURPOSE_CHECK, true)) {
|
||||
iservice.connect(
|
||||
provider.smtp.host, provider.smtp.port,
|
||||
@@ -770,7 +770,7 @@ public class FragmentOAuth extends FragmentBase {
|
||||
|
||||
Log.i("OAuth checking IMAP/POP3 provider=" + provider.id);
|
||||
try (EmailService aservice = new EmailService(
|
||||
context, aprotocol, null, aencryption, false,
|
||||
context, aprotocol, null, aencryption, false, false,
|
||||
EmailService.PURPOSE_CHECK, true)) {
|
||||
aservice.connect(
|
||||
inbound.host, inbound.port,
|
||||
@@ -789,7 +789,7 @@ public class FragmentOAuth extends FragmentBase {
|
||||
Log.i("OAuth checking SMTP provider=" + provider.id);
|
||||
|
||||
try (EmailService iservice = new EmailService(
|
||||
context, iprotocol, null, iencryption, false,
|
||||
context, iprotocol, null, iencryption, false, false,
|
||||
EmailService.PURPOSE_CHECK, true)) {
|
||||
iservice.connect(
|
||||
provider.smtp.host, provider.smtp.port,
|
||||
|
||||
Reference in New Issue
Block a user