Skip to content
Snippets Groups Projects
Commit d234d522 authored by jakobsbode's avatar jakobsbode
Browse files

added folders in providers.json

parent 008079a3
Branches
Tags
No related merge requests found
......@@ -654,6 +654,20 @@ class Onboarding: NSObject {
} else {
UserManager.storeUserValue(0 as AnyObject?, attribute: Attribute.smtpAuthType)
}
if let drafts = provider.draftsFolderPath() {
UserManager.storeUserValue(drafts as AnyObject?, attribute: Attribute.draftFolderPath)
}
if let sent = provider.sentMailFolderPath() {
UserManager.storeUserValue(sent as AnyObject?, attribute: Attribute.sentFolderPath)
}
if let trash = provider.trashFolderPath() {
UserManager.storeUserValue(trash as AnyObject?, attribute: Attribute.trashFolderPath)
}
if let archive = provider.allMailFolderPath() {
UserManager.storeUserValue(archive as AnyObject?, attribute: Attribute.archiveFolderPath)
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment