You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.php.sample 670B

12345678910111213141516171819202122
  1. <?php
  2. $CONF = array();
  3. $CONF['xmlrpc_url'] = 'http://postfixadmin.local/postfixadmin/xmlrpc.php';
  4. // Virtual Vacation
  5. // If you use virtual vacation for you mailbox users set this to 'true'.
  6. // NOTE: Make sure that you install the vacation module!!
  7. //$AllowVacation = true; // true or false
  8. global $AllowVacation;
  9. $AllowVacation = true;
  10. // Change Password
  11. // Enables user to change the POP3/IMAP Password.
  12. //$AllowChangePass = true; // true or false
  13. global $AllowChangePass;
  14. $AllowChangePass = true;
  15. // Minimum password length - set to Zero to not care, otherwise the number of
  16. // characters a password must be longer than.
  17. $CONF['min_password_length'] = 5;