imap ssl known port

This commit is contained in:
M66B 2016-01-26 14:43:22 +01:00
parent aacbdbeab4
commit 9be681df84
1 changed files with 2 additions and 0 deletions

View File

@ -241,6 +241,8 @@ public class LogAdapter extends CursorAdapter {
return "http";
else if (port == 443)
return "https";
else if (port == 993)
return "imaps";
return Integer.toString(port);
}
}