mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-09 17:37:02 +03:00
v2.9.5
This commit is contained in:
parent
987315fb65
commit
e25ffcacd6
10 changed files with 32 additions and 36 deletions
|
|
@ -343,17 +343,15 @@ Enables caching in the system'),
|
|||
'imap_large_thread_limit' => array(50),
|
||||
'imap_folder_list_limit' => array(200),
|
||||
'imap_show_login_alert' => array(true),
|
||||
'imap_use_auth_plain' => array(true),
|
||||
'imap_use_auth_cram_md5' => array(false),
|
||||
'imap_use_list_status' => array(true),
|
||||
'imap_timeout' => array(300),
|
||||
'smtp_show_server_errors' => array(false),
|
||||
'smtp_use_auth_plain' => array(true),
|
||||
'smtp_use_auth_cram_md5' => array(false),
|
||||
'smtp_timeout' => array(60),
|
||||
'sieve_auth_plain_initial' => array(true),
|
||||
'sieve_allow_fileinto_inbox' => array(false),
|
||||
'imap_timeout' => array(300),
|
||||
'smtp_timeout' => array(60),
|
||||
'sieve_timeout' => array(10),
|
||||
'sasl_allow_plain' => array(true),
|
||||
'sasl_allow_cram_md5' => array(false),
|
||||
'domain_list_limit' => array(99),
|
||||
'mail_func_clear_headers' => array(true),
|
||||
'mail_func_additional_parameters' => array(false),
|
||||
|
|
|
|||
|
|
@ -303,8 +303,8 @@ abstract class Account implements \JsonSerializable
|
|||
'Password' => $this->Password(),
|
||||
'ProxyAuthUser' => $this->ProxyAuthUser(),
|
||||
'ProxyAuthPassword' => $this->ProxyAuthPassword(),
|
||||
'UseAuthPlainIfSupported' => !!$oConfig->Get('labs', 'imap_use_auth_plain', true),
|
||||
'UseAuthCramMd5IfSupported' => !!$oConfig->Get('labs', 'imap_use_auth_cram_md5', true),
|
||||
'UseAuthPlainIfSupported' => !!$oConfig->Get('labs', 'sasl_allow_plain', true),
|
||||
'UseAuthCramMd5IfSupported' => !!$oConfig->Get('labs', 'sasl_allow_cram_md5', false),
|
||||
'UseAuthOAuth2IfSupported' => false
|
||||
)
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue