Skip to content

Commit c6f3a65

Browse files
committed
Fix small error
While Exim use Spam, we should use Spam instead Junk here too. Otherwise, there will be two folders created: Spam and Junk Also, directly delete spam instead moving to Junk (and mix with ham messages).
1 parent 76bf903 commit c6f3a65

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

install/ubuntu/roundcube-main.conf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -421,7 +421,7 @@ $rcmail_config['drafts_mbox'] = 'Drafts';
421421

422422
// store spam messages in this mailbox
423423
// NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
424-
$rcmail_config['junk_mbox'] = 'Junk';
424+
$rcmail_config['junk_mbox'] = 'Spam';
425425

426426
// store sent message is this mailbox
427427
// leave blank if sent messages should not be stored
@@ -436,7 +436,7 @@ $rcmail_config['trash_mbox'] = 'Trash';
436436
// display these folders separately in the mailbox list.
437437
// these folders will also be displayed with localized names
438438
// NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP)
439-
$rcmail_config['default_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash');
439+
$rcmail_config['default_folders'] = array('INBOX', 'Drafts', 'Sent', 'Spam', 'Trash');
440440

441441
// automatically create the above listed default folders on first login
442442
$rcmail_config['create_default_folders'] = true;
@@ -808,7 +808,7 @@ $rcmail_config['addressbook_search_mods'] = null; // Example: array('name'=>1,
808808
$rcmail_config['delete_always'] = false;
809809

810810
// Directly delete messages in Junk instead of moving to Trash
811-
$rcmail_config['delete_junk'] = false;
811+
$rcmail_config['delete_junk'] = true;
812812

813813
// Behavior if a received message requests a message delivery notification (read receipt)
814814
// 0 = ask the user, 1 = send automatically, 2 = ignore (never send or ask)

0 commit comments

Comments
 (0)