File: config.php.sample

package info (click to toggle)
postfixadmin 2.3.5-2%2Bdeb7u1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 6,200 kB
  • sloc: php: 25,767; xml: 14,485; perl: 964; sh: 664; python: 169; makefile: 84
file content (22 lines) | stat: -rw-r--r-- 670 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

$CONF = array();
$CONF['xmlrpc_url'] = 'http://postfixadmin.local/postfixadmin/xmlrpc.php';

// Virtual Vacation
// If you use virtual vacation for you mailbox users set this to 'true'.
// NOTE: Make sure that you install the vacation module!!

//$AllowVacation = true;    // true or false
global $AllowVacation;
$AllowVacation = true;

// Change Password
// Enables user to change the POP3/IMAP Password.
//$AllowChangePass = true;    // true or false
global $AllowChangePass;
$AllowChangePass = true;

// Minimum password length - set to Zero to not care, otherwise the number of 
// characters a password must be longer than.
$CONF['min_password_length'] = 5;