remove now unused ImapConfig.imap_delimiter

This commit is contained in:
B. Petersen
2020-03-25 13:23:29 +01:00
parent e135c969c9
commit ab8d75b192

View File

@@ -188,7 +188,6 @@ struct ImapConfig {
/// True if the server has MOVE capability as defined in
/// https://tools.ietf.org/html/rfc6851
pub can_move: bool,
pub imap_delimiter: char,
}
impl Default for ImapConfig {
@@ -206,7 +205,6 @@ impl Default for ImapConfig {
selected_folder_needs_expunge: false,
can_idle: false,
can_move: false,
imap_delimiter: '.',
}
}
}