diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-10-30 12:04:09 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-10-30 12:04:09 +0100 |
commit | b972b4c4c079898250912588d1eb1d8907dfe868 (patch) | |
tree | 34c8d37c827cba9354f8143196b70f906d50c470 /program/js | |
parent | c641dea371ad3b3162c1d8cfa77ba4d4b8629479 (diff) |
Add an option to disable smart Reply-List behaviour - reply_all_mode (#1488734)
Diffstat (limited to 'program/js')
-rw-r--r-- | program/js/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/js/app.js b/program/js/app.js index 59105ffb6..81b796ec1 100644 --- a/program/js/app.js +++ b/program/js/app.js @@ -1065,7 +1065,7 @@ function rcube_webmail() url = {_reply_uid: uid, _mbox: this.env.mailbox}; if (command == 'reply-all') // do reply-list, when list is detected and popup menu wasn't used - url._all = (!props && this.commands['reply-list'] ? 'list' : 'all'); + url._all = (!props && this.env.reply_all_mode == 1 && this.commands['reply-list'] ? 'list' : 'all'); else if (command == 'reply-list') url._all = 'list'; |