0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-19 19:22:14 +02:00

config.inc.php: renamed from config.inc.php.sample; added variable that needs disabling for site to work

git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@128 a1433add-5e2c-0410-b055-b7f2511e0802
This commit is contained in:
David Goodwin 2007-10-04 13:53:45 +00:00
parent c8ed2ffddf
commit e6025ff959

View File

@ -22,6 +22,15 @@ if (ereg ("config.inc.php", $_SERVER['PHP_SELF']))
exit;
}
/*****************************************************************
* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
* The following line needs commenting out or removing before the
* application will run!
* Doing this implies you have changed this file as required.
*/
$CONF['configured'] = false;
// Postfix Admin Path
// Set the location of your Postfix Admin installation here.
// You must enter complete url (http://domain.tld/) and full path (/var/www/postfixadmin)
@ -74,6 +83,10 @@ $CONF['smtp_port'] = '25';
// cleartext = clear text passwords (ouch!)
$CONF['encrypt'] = 'md5crypt';
// Minimum length required for passwords. Postfixadmin will not
// allow users to set passwords which are shorter than this value.
$CONF['min_password_length'] = 5;
// Generate Password
// Generate a random password for a mailbox or admin and display it.
// If you want to automagically generate paswords set this to 'YES'.