mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-27 08:01:50 +01:00
Copy custom IMAP host to custom SMTP host
This commit is contained in:
@@ -214,9 +214,11 @@ public class FragmentIdentity extends FragmentBase {
|
||||
auth_type = account.auth_type;
|
||||
|
||||
// Select associated provider
|
||||
if (position == 0)
|
||||
if (position == 0) {
|
||||
spProvider.setSelection(0);
|
||||
else {
|
||||
etHost.setText(account.host.replace("imap", "smtp"));
|
||||
etPort.setText(null);
|
||||
} else {
|
||||
boolean found = false;
|
||||
for (int pos = 1; pos < spProvider.getAdapter().getCount(); pos++) {
|
||||
EmailProvider provider = (EmailProvider) spProvider.getItemAtPosition(pos);
|
||||
|
||||
Reference in New Issue
Block a user