Added provider xs4all

This commit is contained in:
M66B
2019-11-06 12:48:12 +01:00
parent 0ddec7ed46
commit 7d46638217
4 changed files with 23 additions and 3 deletions

View File

@@ -242,6 +242,7 @@ public class FragmentIdentity extends FragmentBase {
etHost.setText(provider.smtp.host);
etPort.setText(Integer.toString(provider.smtp.port));
rgEncryption.check(provider.smtp.starttls ? R.id.radio_starttls : R.id.radio_ssl);
cbUseIp.setChecked(provider.useip);
break;
}
@@ -357,6 +358,7 @@ public class FragmentIdentity extends FragmentBase {
etHost.setText(provider.smtp.host);
etPort.setText(position == 0 ? null : Integer.toString(provider.smtp.port));
rgEncryption.check(provider.smtp.starttls ? R.id.radio_starttls : R.id.radio_ssl);
cbUseIp.setChecked(provider.useip);
}
@Override
@@ -470,6 +472,7 @@ public class FragmentIdentity extends FragmentBase {
etHost.setText(provider.smtp.host);
etPort.setText(Integer.toString(provider.smtp.port));
rgEncryption.check(provider.smtp.starttls ? R.id.radio_starttls : R.id.radio_ssl);
cbUseIp.setChecked(provider.useip);
}
@Override