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.inc.php.dist 1.1KB

12345678910111213141516171819202122232425262728
  1. <?php
  2. // Driver - 'file' or 'sql'
  3. $config['squirrelmail_driver'] = 'sql';
  4. // full path to the squirrelmail data directory
  5. $config['squirrelmail_data_dir'] = '';
  6. $config['squirrelmail_data_dir_hash_level'] = 0;
  7. // file charset - e.g. 'EUC-JP'. Leave empty for ASCII.
  8. $config['squirrelmail_file_charset'] = '';
  9. // 'mysql://dbuser:dbpass@localhost/database'
  10. $config['squirrelmail_dsn'] = 'mysql://user:password@localhost/webmail';
  11. $config['squirrelmail_db_charset'] = 'iso-8859-1';
  12. $config['squirrelmail_address_table'] = 'address';
  13. $config['squirrelmail_userprefs_table'] = 'userprefs';
  14. // identities_level option value for squirrelmail plugin
  15. // With this you can bypass/change identities_level checks
  16. // for operations inside this plugin. See #1486773
  17. $config['squirrelmail_identities_level'] = null;
  18. // Set to false if you don't want the email address of the default identity
  19. // (squirrelmail preference "email_address") to be saved as alias.
  20. // Recommended: set to false if your squirrelmail config setting $edit_identity has been true.
  21. $config['squirrelmail_set_alias'] = true;