roundcube-identity_db/config.inc.php.dist

19 lines
611 B
Plaintext
Raw Normal View History

2019-06-01 14:08:00 +02:00
<?php
$conf = array();
2019-06-01 14:08:00 +02:00
// Enables (true) or disables (false) the plugin
$conf['update_on_login'] = true;
// Remove identities for which the email address is unknown for this user
$conf['remove_unknown_identities'] = true;
2019-06-01 14:08:00 +02:00
// Connection to the database which holds user aliases information
$conf['dsn'] = '';
// Query all aliases for a given user. '%u' will be replaced with the username.
// Example : SELECT aliases.email FROM aliases LEFT JOIN users ON aliases.user_id=users.id WHERE users.name="%u"
$conf['identities_query'] = '';
// Finally register to the global config
$config['identity_db'] = $conf;