mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 03:59:21 +03:00
Rename spam=>junk and draft=>drafts folder names to be compatible with IMAP and JMAP
This commit is contained in:
parent
6c00a9cf3b
commit
07f6b7545a
6 changed files with 25 additions and 19 deletions
|
|
@ -9,9 +9,9 @@ class MailboxDetectPlugin extends \RainLoop\Plugins\AbstractPlugin
|
|||
NAME = 'MailboxDetect',
|
||||
AUTHOR = 'SnappyMail',
|
||||
URL = 'https://snappymail.eu/',
|
||||
VERSION = '2.4',
|
||||
RELEASE = '2023-02-08',
|
||||
REQUIRED = '2.25.0',
|
||||
VERSION = '2.5',
|
||||
RELEASE = '2023-02-21',
|
||||
REQUIRED = '2.26.3',
|
||||
CATEGORY = 'General',
|
||||
LICENSE = 'MIT',
|
||||
DESCRIPTION = 'Autodetect system folders and/or create them when needed';
|
||||
|
|
@ -48,8 +48,8 @@ class MailboxDetectPlugin extends \RainLoop\Plugins\AbstractPlugin
|
|||
$roles = [
|
||||
'inbox' => false,
|
||||
'sent' => !!$oSettingsLocal->GetConf('SentFolder', ''),
|
||||
'drafts' => !!$oSettingsLocal->GetConf('DraftFolder', ''),
|
||||
'junk' => !!$oSettingsLocal->GetConf('SpamFolder', ''),
|
||||
'drafts' => !!$oSettingsLocal->GetConf('DraftsFolder', ''),
|
||||
'junk' => !!$oSettingsLocal->GetConf('JunkFolder', ''),
|
||||
'trash' => !!$oSettingsLocal->GetConf('TrashFolder', ''),
|
||||
'archive' => !!$oSettingsLocal->GetConf('ArchiveFolder', '')
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue