mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-09-17 02:24:19 +08:00
Sieve always allow fileinto INBOX #1510
This commit is contained in:
parent
60de50da64
commit
b45459d645
3 changed files with 2 additions and 6 deletions
|
@ -30,8 +30,6 @@ const
|
|||
sDeepPrefix = '\u00A0\u00A0\u00A0',
|
||||
showUnsubscribed = true/*!SettingsUserStore.hideUnsubscribed()*/,
|
||||
|
||||
disabled = rl.settings.get('sieveAllowFileintoInbox') ? '' : 'INBOX',
|
||||
|
||||
foldersWalk = folders => {
|
||||
folders.forEach(oItem => {
|
||||
if (showUnsubscribed || oItem.hasSubscriptions() || !oItem.exists) {
|
||||
|
@ -39,7 +37,7 @@ const
|
|||
id: oItem.fullName,
|
||||
name: sDeepPrefix.repeat(oItem.deep) + oItem.detailedName(),
|
||||
system: false,
|
||||
disabled: !oItem.selectable() || disabled == oItem.fullName
|
||||
disabled: !oItem.selectable()
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -603,8 +603,7 @@ class Actions
|
|||
'showNextMessage' => (bool) $oConfig->Get('defaults', 'view_show_next_message', false),
|
||||
'AutoLogout' => (int) $oConfig->Get('defaults', 'autologout', 30),
|
||||
'AllowDraftAutosave' => (bool) $oConfig->Get('defaults', 'allow_draft_autosave', true),
|
||||
'ContactsAutosave' => (bool) $oConfig->Get('defaults', 'contacts_autosave', true),
|
||||
'sieveAllowFileintoInbox' => (bool)$oConfig->Get('labs', 'sieve_allow_fileinto_inbox', false)
|
||||
'ContactsAutosave' => (bool) $oConfig->Get('defaults', 'contacts_autosave', true)
|
||||
],
|
||||
// MainAccount or AdditionalAccount
|
||||
$this->getAccountData($oAccount)
|
||||
|
|
|
@ -421,7 +421,6 @@ Enables caching in the system'),
|
|||
'log_ajax_response_write_limit' => array(300),
|
||||
'smtp_show_server_errors' => array(false),
|
||||
'sieve_auth_plain_initial' => array(true),
|
||||
'sieve_allow_fileinto_inbox' => array(false),
|
||||
'mail_func_clear_headers' => array(true, 'PHP mail() remove To and Subject headers'),
|
||||
'mail_func_additional_parameters' => array(false, 'PHP mail() set -f emailaddress'),
|
||||
'folders_spec_limit' => array(50),
|
||||
|
|
Loading…
Add table
Reference in a new issue