Skip to content

Commit

Permalink
Default IMAP message_list_limit to 10000
Browse files Browse the repository at this point in the history
  • Loading branch information
the-djmaze committed Dec 26, 2023
1 parent b88794b commit 167c27c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dev/View/Popup/Domain.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const
imapForce_select: false,
imapFolder_list_limit: 200,
imapMessage_all_headers: false,
imapMessage_list_limit: 0,
imapMessage_list_limit: 10000,
imapSearch_filter: '',

sieveEnabled: false,
Expand Down
2 changes: 1 addition & 1 deletion snappymail/v/0.0.0/app/domains/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"fast_simple_search": true,
"force_select": false,
"message_all_headers": false,
"message_list_limit": 0,
"message_list_limit": 10000,
"search_filter": ""
},
"SMTP": {
Expand Down
2 changes: 1 addition & 1 deletion snappymail/v/0.0.0/app/libraries/MailSo/Imap/Settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Settings extends \MailSo\Net\ConnectSettings
$timeout = 300,
$body_text_limit = 0,
// $folder_list_limit = 200,
$message_list_limit = 0,
$message_list_limit = 10000,
$thread_limit = 50;

public bool
Expand Down

0 comments on commit 167c27c

Please sign in to comment.