We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 955c843 commit 7656434Copy full SHA for 7656434
src/login_param.rs
@@ -318,30 +318,6 @@ fn get_readable_flags(flags: i32) -> String {
318
res += "AUTH_NORMAL ";
319
flag_added = true;
320
}
321
- if 1 << bit == 0x100 {
322
- res += "IMAP_STARTTLS ";
323
- flag_added = true;
324
- }
325
- if 1 << bit == 0x200 {
326
- res += "IMAP_SSL ";
327
328
329
- if 1 << bit == 0x400 {
330
- res += "IMAP_PLAIN ";
331
332
333
- if 1 << bit == 0x10000 {
334
- res += "SMTP_STARTTLS ";
335
336
337
- if 1 << bit == 0x20000 {
338
- res += "SMTP_SSL ";
339
340
341
- if 1 << bit == 0x40000 {
342
- res += "SMTP_PLAIN ";
343
344
345
if flag_added {
346
res += &format!("{:#0x}", 1 << bit);
347
0 commit comments