summaryrefslogtreecommitdiff
path: root/config.inc.php.dist
blob: 7e5f055a91d3acb320c0bef589cfb3906faa515d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?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['inbox_settings_db_dsn'] = '';

// Whether we should scrub the "Encryption" tab from the preferences list.
// This may be confusing to some users since this plugin adds additional
// encryption settings in a different place.
$config['inbox_settings_scrub_encryption_preference'] = true;

// The SQL query used to select whether a user's inbox is encrypted.
// 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['inbox_settings_encryption_enabled_query'] = 'SELECT encrypt FROM users WHERE username = %u';

// The SQL query used to update whether a user's inbox is encrypted.
// 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)
// %e - whether the inbox should be encrypted (boolean)
$config['inbox_settings_encryption_enabled_query'] = 'UPDATE users SET encrypt = ? WHERE username = %u';

// The SQL query used to select a user's forwarding 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['inbox_settings_forwarding_addresses_query'] = 'SELECT addr, fwd_addr, active FROM forwarders WHERE username = %u';

// The SQL query used to update a user's forwarding setting for an address.
// 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)
// %fa - the email address being forwarded
//          (returned as `addr` from the above query)
// %fl - the local part of the forwarding address
// %fd - the domain part of the forwarding address
// %sf - whether forwarding is set for this address (boolean)
// %sa - the new forwarding address (string)
$config['inbox_settings_forwarding_update_query'] = 'UPDATE forwarders SET fwd_addr = %sf, active = %sa WHERE addr = %fa';
?>