mirror of https://github.com/M66B/FairEmail.git
Added comments
This commit is contained in:
parent
da488295cd
commit
562f09f875
|
@ -276,6 +276,7 @@ public class FragmentAccount extends FragmentEx {
|
|||
new SimpleTask<SRVRecord>() {
|
||||
@Override
|
||||
protected SRVRecord onLoad(Context context, Bundle args) throws Throwable {
|
||||
// https://tools.ietf.org/html/rfc6186
|
||||
String dns = "_imaps._tcp." + args.getString("domain");
|
||||
Lookup lookup = new Lookup(dns, Type.SRV);
|
||||
// https://dns.watch/
|
||||
|
|
|
@ -367,6 +367,7 @@ public class FragmentIdentity extends FragmentEx {
|
|||
new SimpleTask<SRVRecord>() {
|
||||
@Override
|
||||
protected SRVRecord onLoad(Context context, Bundle args) throws Throwable {
|
||||
// https://tools.ietf.org/html/rfc6186
|
||||
String dns = "_submission._tcp." + args.getString("domain");
|
||||
Lookup lookup = new Lookup(dns, Type.SRV);
|
||||
// https://dns.watch/
|
||||
|
|
Loading…
Reference in New Issue