blob: e82953810ba781f63682235d25adef017d2cb9f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<?php
$config = [];
// PEAR database DSN for performing the query. By default
// Roundcube DB settings are used.
// Supported replacement variables:
// %h - user's IMAP hostname
// %n - hostname ($_SERVER['SERVER_NAME'])
// %t - hostname without the first part
// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
// %z - IMAP domain (IMAP hostname without the first part)
$config['identity_addresses_db_dsn'] = '';
// The SQL query used to select a user's supported identity addresses.
// Supported replacement variables:
// %h - user's IMAP hostname
// %u - the username (from the session info)
// %l - the local part of the username
// (in case the username is an email address)
// %d - the domain part of the username
// (in case the username is an email address)
$config['identity_addresses_query'] = 'SELECT address FROM users WHERE owner = %u';
?>
|