mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-25 10:09:20 +03:00
Add CRAM-MD5 support (#1016)
This commit is contained in:
parent
c0ab236440
commit
4f2a8b5b9b
5 changed files with 71 additions and 21 deletions
|
|
@ -396,8 +396,6 @@ Enables caching in the system'),
|
|||
'use_imap_list_subscribe' => array(true),
|
||||
'use_imap_thread' => array(true),
|
||||
'use_imap_move' => array(false),
|
||||
'use_imap_auth_plain' => array(false),
|
||||
'use_imap_auth_cram_md5' => array(false),
|
||||
'use_imap_expunge_all_on_delete' => array(false),
|
||||
'imap_forwarded_flag' => array('$Forwarded'),
|
||||
'imap_read_receipt_flag' => array('$ReadReceipt'),
|
||||
|
|
@ -410,7 +408,11 @@ 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(true),
|
||||
'smtp_show_server_errors' => array(false),
|
||||
'smtp_use_auth_plain' => array(true),
|
||||
'smtp_use_auth_cram_md5' => array(true),
|
||||
'sieve_allow_raw_script' => array(false),
|
||||
'sieve_utf8_folder_name' => array(true),
|
||||
'imap_timeout' => array(300),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue