"Fossies" - the Fresh Open Source Software Archive 
Member "openmailadmin-1.0.1/inc/config.inc.php" (6 Nov 2007, 3655 Bytes) of package /linux/privat/old/openmailadmin-1.0.1.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) PHP source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
1 <?php
2 // DO NOT EDIT THIS FILE!
3 // Deviations from these default values go to config.local.inc.php!
4 $version = '1.0.1';
5
6 // This is for logging. Unless you experience bugs and want to help fixing them,
7 // leave these settings as they are.
8 $cfg['logger']['facility'] = 'null';
9 $cfg['logger']['name'] = '';
10 // Beware: Do not set this to true or your connection data might get revealed.
11 $cfg['show_exceptions_online'] = false;
12
13 // If language detection fails, use that language as fallback.
14 $default_lang = $lang = 'en';
15 $cfg['force_default_language'] = false;
16
17 // You may want to move some files to a second webserver
18 // in order to decrease the load on your SSL-enabled one.
19 // (Directories out of the client's browser's view.)
20 $cfg['images_dir'] = 'images'; // This is where you store all the images
21 $cfg['design_dir'] = 'design'; // CSS
22
23 // You do not intend to have all 3000 mailboxes displayed on one page, do you?
24 // (Set to false for no upper limit.)
25 $cfg['max_elements_per_page'] = 25;
26 // set this to true and in mailbox-view the owner's name is shown and not the mailbox name.
27 $cfg['mboxview_pers'] = false;
28 // Preferred date and time format for displaying.
29 $cfg['date_format'] = 'Y-m-d';
30
31 // Allow creation of catchalls? (i.e.: @example.com)
32 $cfg['address']['allow_catchall'] = true;
33 // Shall creation of catchalls be limited to the owner of that domain?
34 $cfg['address']['restrict_catchall'] = true;
35 // If an address has at least that many destinations, it will be hidden.
36 $cfg['address']['hide_threshold'] = 5;
37 // To disable this feature set these to a ridiculous high number:
38 $cfg['address']['max_dest_p_catchall'] = 4;
39 $cfg['address']['max_dest_p_address'] = 16000;
40 // Shall unneccesary whitespace between tags be removed?
41 // Setting this to false will make Firefox' odd DOM implementation obvious!
42 $cfg['remove_whitespace'] = true;
43
44 // Shall we accept other user's mailbox-names as targets?
45 // Only use this if you have few mailboxes!
46 $cfg['allow_mbox_as_target'] = true;
47 // Moved from Webcyradm? An specialized equivalent:
48 $cfg['allow_wcyr_as_target'] = false;
49
50 // Shall the canonical-address be created along with the new mailbox?
51 // (Set this to false if your users may own several mailboxes with same canonicals
52 // or if external addresses occur here.)
53 $cfg['create_canonical'] = true;
54
55 // Set this to true and domain-administrators may delete "their" domains,
56 // else only the owner is allowed to. If true implies, that admins cannot
57 // change ownership of domains which are not their own.
58 $cfg['admins_delete_domains'] = false;
59
60 // Comment out the following if you not wish to get these subfolders created.
61 $cfg['folders']['create_default'] = array('Trash','UMS');
62
63 // Pretend these users don't exist. Creation of these mailboxes will be denied.
64 $cfg['user_ignore'] = array('cyrus');
65 // Default dimensions for mailbox names.
66 $cfg['mbox']['min_length'] = 4;
67 $cfg['mbox']['max_length'] = 16;
68 // If a user logged in since this amount of seconds his entry will be highlighted.
69 // Set to 0 to deactivate.
70 $cfg['mboxview_sec'] = 5*86400;
71
72 // Name of class to handle ciphering of passwords. Defaults to PasswordMD5.
73 // See inc/lib/Password* for available ciphering strategies.
74 $cfg['passwd']['strategy'] = 'PasswordMD5';
75 // Default settings for passwords.
76 $cfg['passwd']['min_length'] = 8;
77 $cfg['passwd']['max_length'] = 16;
78
79 // If this file exists it will be shown on login.
80 $cfg['motd'] = 'motd.txt';
81
82 // Select one of: shadow, blueray
83 $cfg['theme'] = 'shadow';
84
85 $i = 0;
86 /*
87 * Please see samples/config.local.inc.php for appropriate database configuration.
88 * Change connection settings in delivered SQL- and pam-files, too!
89 */
90
91 ?>