File: config.php.sample

package info (click to toggle)
postfixadmin 3.3.15%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 3,816 kB
  • sloc: php: 10,120; perl: 1,069; sh: 643; python: 169; xml: 62; sql: 3; makefile: 2
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;