-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.inc.php.dist
117 lines (111 loc) · 4.39 KB
/
config.inc.php.dist
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?php
/* Password encryption:
'rcmail': encrypt passwords by default Roundcube methods.
'secure': passwords must be re-entered by users.
*/
$config['additional_imap_crypt'] = 'rcmail';
/* password encryption salt (only used for secure encryption) */
// $config['additional_imap_salt'] = 'Utilizes RC Default des_key generated at installation';
/* predefined imap hosts (associated with the domain part of the identity email property) */
$config['additional_imap_external'] = array(
'gmail.com' => array(
'host' =>'ssl://imap.gmail.com:993',
'delimiter' => '/',
'drafts_mbox' => '[Google Mail]/Drafts',
'junk_mbox' => '[Google Mail]/Spam',
'sent_mbox' => '[Google Mail]/Sent Mail',
'trash_mbox' => '[Google Mail]/Trash',
'archive_mbox' => '[Google Mail]/Archive',
'default_folders' => array('INBOX', '[Google Mail]/Archive', '[Google Mail]/Drafts', '[Google Mail]/Spam', '[Google Mail]/Sent Mail', '[Google Mail]/Trash'),
'readonly' => true, // This prevents field editing & does not make your remote email "Read Only"
),
'yahoo.com' => array(
'host' =>'ssl://imap.mail.yahoo.com:993',
'delimiter' => '/',
'drafts_mbox' => 'INBOX/Drafts',
'junk_mbox' => 'INBOX/Spam',
'sent_mbox' => 'INBOX/Sent',
'trash_mbox' => 'INBOX/Trash',
'default_folders' => array('INBOX'),
'readonly' => true, // This prevents field editing & does not make your remote email "Read Only"
),
'hotmail.com' => array(
'host' =>'ssl://imap-mail.outlook.com:993',
'delimiter' => '/',
'drafts_mbox' => 'INBOX/Drafts',
'junk_mbox' => 'INBOX/Spam',
'sent_mbox' => 'INBOX/Sent',
'trash_mbox' => 'INBOX/Trash',
'default_folders' => array('INBOX'),
'readonly' => true, // This prevents field editing & does not make your remote email "Read Only"
),
'live.com' => array(
'host' =>'ssl://imap-mail.outlook.com:993',
'delimiter' => '/',
'drafts_mbox' => 'INBOX/Drafts',
'junk_mbox' => 'INBOX/Spam',
'sent_mbox' => 'INBOX/Sent',
'trash_mbox' => 'INBOX/Trash',
'default_folders' => array('INBOX'),
'readonly' => true, // This prevents field editing & does not make your remote email "Read Only"
),
'outlook.com' => array(
'host' =>'ssl://imap-mail.outlook.com:993',
'delimiter' => '/',
'drafts_mbox' => 'INBOX/Drafts',
'junk_mbox' => 'INBOX/Spam',
'sent_mbox' => 'INBOX/Sent',
'trash_mbox' => 'INBOX/Trash',
'default_folders' => array('INBOX'),
'readonly' => true, // This prevents field editing & does not make your remote email "Read Only"
),
'aol.com' => array(
'host' =>'ssl://export.imap.aol.com:993',
'delimiter' => '/',
'drafts_mbox' => 'INBOX/Drafts',
'junk_mbox' => 'INBOX/Spam',
'sent_mbox' => 'INBOX/Sent',
'trash_mbox' => 'INBOX/Trash',
'default_folders' => array('INBOX'),
'readonly' => true, // This prevents field editing & does not make your remote email "Read Only"
),
'gmx.com' => array(
'host' =>'ssl://imap.gmx.com:993',
'delimiter' => '/',
'drafts_mbox' => 'INBOX/Drafts',
'junk_mbox' => 'INBOX/Spam',
'sent_mbox' => 'INBOX/Sent',
'trash_mbox' => 'INBOX/Trash',
'default_folders' => array('INBOX'),
'readonly' => true, // This prevents field editing & does not make your remote email "Read Only"
),
'icloud.com' => array(
'host' =>'ssl://imap.mail.me.com:993',
'delimiter' => '/',
'drafts_mbox' => 'INBOX/Drafts',
'junk_mbox' => 'INBOX/Spam',
'sent_mbox' => 'INBOX/Sent',
'trash_mbox' => 'INBOX/Trash',
'default_folders' => array('INBOX'),
'readonly' => true, // This prevents field editing & does not make your remote email "Read Only"
),
'yandex.com' => array(
'host' =>'ssl://imap.yandex.com:993',
'delimiter' => '/',
'drafts_mbox' => 'INBOX/Drafts',
'junk_mbox' => 'INBOX/Spam',
'sent_mbox' => 'INBOX/Sent',
'trash_mbox' => 'INBOX/Trash',
'default_folders' => array('INBOX'),
'readonly' => true, // This prevents field editing & does not make your remote email "Read Only"
),
);
/* auto-detect IMAP server */
$config['additional_imap_autodetect'] = true;
/* Cache remote accounts
NOTE: if you enable this option your database user must have permissions to CREATE and DROP database tables */
$config['additional_imap_cache'] = false;
/* Cache garbage collection
Remove unused cache tables every x-nd request (randomly) */
$config['additional_imap_gc'] = 100;
?>