mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2026-05-10 13:05:56 +02:00
- Resizable folder sidebar with persisted width; nested folder tree with expand/collapse - Message search: scope all folders or single folder; listMessages honors UID filter - Drag-and-drop messages onto folders to move (multi-select supported) - SnappyMail import paths, folder settings store, wm DB migration and SQL install - IMAP quoted mailbox, IPv4 SMTP relay, compose recipient handling - Modal new/delete folder flows; dash-free UI copy; folder pills in search results
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',
|
|
}
|
|
|