-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathconfig.inc.php.dist
More file actions
29 lines (19 loc) · 851 Bytes
/
config.inc.php.dist
File metadata and controls
29 lines (19 loc) · 851 Bytes
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
28
<?php
$config = array();
// Regex to match against the email to determine if from your organization
$config['org_email_regex'] = "/@(.*\.|)iitb\.ac\.in/i";
// Turn on letter avatars
$config['avatars'] = true;
// Make external avatars hexagon
$config['avatars_external_hexagon'] = true;
// Header that marks the message as SPAM. ('Yes').
$config['x_spam_status_header'] = 'x-spam-status';
// Header to check spam level. Counts number of asterisk in this.
$config['x_spam_level_header'] = 'x-spam-level';
// Spam threshold for X-Spam-Level to alert user for
$config['spam_level_threshold'] = 4;
// Header that marks the message as SPF fail. ('Pass' to pass).
$config['received_spf_header'] = 'received-spf';
// Display images for avatars
// If you don't use images for avatars, set `false` to save performance
$config['avatar_images'] = true;