forked from vexim/Roundcube-Plugin-VeximAccountAdmin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.inc.php.dist
More file actions
41 lines (33 loc) · 1.73 KB
/
config.inc.php.dist
File metadata and controls
41 lines (33 loc) · 1.73 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
<?php
/*
VeximAccountAdmin options
default config last updated in version 2009-11-12
*/
$veximaccountadmin_config = array();
// PEAR database DSN for performing the query
// change this to your vexim database info, e.g.
// mysql://vexim:password@localhost/vexim
$veximaccountadmin_config['db_dsn'] = 'mysql://USERNAME:PASSWORD@SERVER/DATABASE';
// Use the same $cryptscheme as in vexim config/variables.php (either 'des' or 'md5')
$veximaccountadmin_config['vexim_cryptscheme'] = 'md5';
// Maxlength of autoresponder message, defaults to 255 characters. You probably want to
// extend this limit. If so, you must change the vacation field in users table in
// vexim database structure from VARCHAR(255) to TEXT. Also set $max_vacation_length
// in vexim config/variables.php to get the same limit there.
$veximaccountadmin_config['vexim_vacation_maxlength'] = 255;
/*
Support for the Exim/Vexim customizations described on
http://axel.sjostedt.no/misc/vexim/
*/
// Set this to true if you have added the custom crypted password hack to Vexim/Exim
$veximaccountadmin_config['crypted_password_hack'] = false;
// Set this to true if you have added the auto spam folder transporters to Vexim/Exim
$veximaccountadmin_config['movespam_transporter'] = false;
// Set this to true if you have added the parsefolders shell script
$veximaccountadmin_config['parsefolders_script'] = false;
$veximaccountadmin_config['parsefolders_script_show_tip'] = true; // Show notice about learnasspam folders
// Show a link to Vexim if the user is registered as domain admin
$veximaccountadmin_config['show_admin_link'] = true;
// Vexim link URL, relative to Roundcube or external
$veximaccountadmin_config['vexim_url'] = '../vexim/';
?>