Copy custom IMAP host to custom SMTP host

This commit is contained in:
M66B 2019-05-23 10:37:53 +02:00
parent 6ff3264e63
commit 104fa6f8c4
1 changed files with 4 additions and 2 deletions

View File

@ -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);