From 5ec1dd9bace4254d2811f9990523089462cfa82e Mon Sep 17 00:00:00 2001 From: demlasjr Date: Mon, 31 Mar 2014 02:17:34 +0200 Subject: [PATCH] Small fixes 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). --- install/rhel/roundcube-main.conf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install/rhel/roundcube-main.conf b/install/rhel/roundcube-main.conf index 505c2b81e..14122d5f1 100644 --- a/install/rhel/roundcube-main.conf +++ b/install/rhel/roundcube-main.conf @@ -421,7 +421,7 @@ $rcmail_config['drafts_mbox'] = 'Drafts'; // store spam messages in this mailbox // NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP) -$rcmail_config['junk_mbox'] = 'Junk'; +$rcmail_config['junk_mbox'] = 'Spam'; // store sent message is this mailbox // leave blank if sent messages should not be stored @@ -436,7 +436,7 @@ $rcmail_config['trash_mbox'] = 'Trash'; // display these folders separately in the mailbox list. // these folders will also be displayed with localized names // NOTE: Use folder names with namespace prefix (INBOX. on Courier-IMAP) -$rcmail_config['default_folders'] = array('INBOX', 'Drafts', 'Sent', 'Junk', 'Trash'); +$rcmail_config['default_folders'] = array('INBOX', 'Drafts', 'Sent', 'Spam', 'Trash'); // automatically create the above listed default folders on first login $rcmail_config['create_default_folders'] = false; @@ -808,7 +808,7 @@ $rcmail_config['addressbook_search_mods'] = null; // Example: array('name'=>1, $rcmail_config['delete_always'] = false; // Directly delete messages in Junk instead of moving to Trash -$rcmail_config['delete_junk'] = false; +$rcmail_config['delete_junk'] = true; // Behavior if a received message requests a message delivery notification (read receipt) // 0 = ask the user, 1 = send automatically, 2 = ignore (never send or ask)