forked from eagle00789/RC_Filters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.inc.php.dist
27 lines (21 loc) · 914 Bytes
/
config.inc.php.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?php
/**
* Filters
*
* Plugin that adds a new tab to the settings section to create client-side e-mail filtering.
*
* @version 2.1.6
* @author Roberto Zarrelli <[email protected]>
* @author Chris Simon <[email protected]> from version 2.1.3
*/
/***********************************************
* Filter plugin settings
***********************************************/
// if TRUE a spam filter rule is created for all users which automatically move messages into junk folder
$config['autoAddSpamFilterRule'] = TRUE;
// How to mark the spam in the subject? To have effect the previous variable must be TRUE.
$config['spam_subject'] = '***SPAM***';
// if TRUE decodes base64 mail messages.
$config['decodeBase64Msg'] = TRUE;
// if TRUE new filters searching default in case insensitive mode unless the filter specified otherwise.
$config['caseInsensitiveSearch'] = TRUE;