Merge pull request #1760 from deltachat/empty-server-inbox

empty_server: use configured inbox instead of hardcoded "INBOX"
This commit is contained in:
bjoern
2020-07-26 23:21:23 +02:00
committed by GitHub

View File

@@ -633,7 +633,9 @@ impl Job {
}
}
if self.foreign_id & DC_EMPTY_INBOX > 0 {
imap.empty_folder(context, "INBOX").await;
if let Some(inbox_folder) = &context.get_config(Config::ConfiguredInboxFolder).await {
imap.empty_folder(context, &inbox_folder).await;
}
}
Status::Finished(Ok(()))
}