mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2026-06-17 17:52:04 +02:00
16 lines
395 B
Python
16 lines
395 B
Python
|
|
class IMAPDefaults:
|
||
|
|
"""
|
||
|
|
Minimal defaults shared with the folder settings store.
|
||
|
|
|
||
|
|
Keep this separate from IMAPClient to avoid importing imaplib during settings reads.
|
||
|
|
"""
|
||
|
|
|
||
|
|
SPECIAL_FOLDERS = {
|
||
|
|
'sent': 'INBOX.Sent',
|
||
|
|
'drafts': 'INBOX.Drafts',
|
||
|
|
'trash': 'INBOX.Deleted Items',
|
||
|
|
'junk': 'INBOX.Junk E-mail',
|
||
|
|
'archive': 'INBOX.Archive',
|
||
|
|
}
|
||
|
|
|