Added support for IMAP & SMTP use of TLS and fancy auth mechanisms to administrator...
[squirrelmail.git] / plugins / administrator / defines.php
CommitLineData
abd7a3f8 1<?PHP
2
3/**
4 * defines.php
5 *
76911253 6 * Copyright (c) 1999-2003 The SquirrelMail Project Team
abd7a3f8 7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * Philippe Mingo
10 *
11 * $Id$
12 */
13
b59d1a7d 14require_once( SM_PATH . 'functions/constants.php' );
abd7a3f8 15
16/* Define constants for the various option types. */
17define('SMOPT_TYPE_UNDEFINED', -1);
18define('SMOPT_TYPE_STRING', 0);
19define('SMOPT_TYPE_STRLIST', 1);
20define('SMOPT_TYPE_TEXTAREA', 2);
21define('SMOPT_TYPE_INTEGER', 3);
22define('SMOPT_TYPE_FLOAT', 4);
23define('SMOPT_TYPE_BOOLEAN', 5);
24define('SMOPT_TYPE_HIDDEN', 6);
25define('SMOPT_TYPE_COMMENT', 7);
dcd6f144 26define('SMOPT_TYPE_NUMLIST', 8);
edd4a552 27define('SMOPT_TYPE_TITLE', 9);
28define('SMOPT_TYPE_THEME', 10);
29define('SMOPT_TYPE_PLUGINS', 11);
65a5bae6 30define('SMOPT_TYPE_LDAP', 12);
88cb1b4d 31define('SMOPT_TYPE_EXTERNAL', 32);
a28a56da 32define('SMOPT_TYPE_PATH',33);
abd7a3f8 33
34global $languages;
35
35be4418 36$language_values = array( );
abd7a3f8 37foreach ($languages as $lang_key => $lang_attributes) {
38 if (isset($lang_attributes['NAME'])) {
39 $language_values[$lang_key] = $lang_attributes['NAME'];
40 }
41}
42asort( $language_values );
35be4418 43$language_values = array_merge(array('' => _("Default")), $language_values);
dcd6f144 44$left_size_values = array();
45for ($lsv = 100; $lsv <= 300; $lsv += 10) {
46 $left_size_values[$lsv] = "$lsv " . _("pixels");
47}
48
0e66bc84 49$defcfg = array( '$config_version' => array( 'name' => _("Config File Version"),
50 'type' => SMOPT_TYPE_COMMENT,
abd7a3f8 51 'size' => 7 ),
88cb1b4d 52 'SM_ver' => array( 'name' => _("Squirrelmail Version"),
53 'type' => SMOPT_TYPE_EXTERNAL,
54 'value' => "$version" ),
55 'PHP_ver' => array( 'name' => _("PHP Version"),
56 'type' => SMOPT_TYPE_EXTERNAL,
57 'value' => phpversion() ),
0e66bc84 58 /* --------------------------------------------------------*/
59 'Group1' => array( 'name' => _("Organization Preferences"),
60 'type' => SMOPT_TYPE_TITLE ),
61 '$org_name' => array( 'name' => _("Organization Name"),
abd7a3f8 62 'type' => SMOPT_TYPE_STRING,
63 'size' => 40 ),
0e66bc84 64 '$org_logo' => array( 'name' => _("Organization Logo"),
a28a56da 65 'type' => SMOPT_TYPE_PATH,
66 'size' => 40,
67 'default' => '../images/sm_logo.png'),
99ac8983 68 '$org_logo_width' => array( 'name' => _("Organization Logo Width"),
69 'type' => SMOPT_TYPE_INTEGER,
70 'size' => 5,
71 'default' => 0),
72 '$org_logo_height' => array( 'name' => _("Organization Logo Height"),
73 'type' => SMOPT_TYPE_INTEGER,
74 'size' => 5,
75 'default' => 0),
0e66bc84 76 '$org_title' => array( 'name' => _("Organization Title"),
abd7a3f8 77 'type' => SMOPT_TYPE_STRING,
78 'size' => 40 ),
0e66bc84 79 '$signout_page' => array( 'name' => _("Signout Page"),
a28a56da 80 'type' => SMOPT_TYPE_PATH,
0e66bc84 81 'size' => 40 ),
abd7a3f8 82 '$squirrelmail_default_language' => array( 'name' => _("Default Language"),
83 'type' => SMOPT_TYPE_STRLIST,
84 'size' => 7,
85 'posvals' => $language_values ),
dcd6f144 86 '$frame_top' => array( 'name' => _("Top Frame"),
87 'type' => SMOPT_TYPE_STRING,
feba1a41 88 'size' => 40,
89 'default' => '_top' ),
0e66bc84 90 /* --------------------------------------------------------*/
91 'Group2' => array( 'name' => _("Server Settings"),
92 'type' => SMOPT_TYPE_TITLE ),
93 '$domain' => array( 'name' => _("Mail Domain"),
88cb1b4d 94 'type' => SMOPT_TYPE_STRING,
95 'size' => 40 ),
abd7a3f8 96 '$imapServerAddress' => array( 'name' => _("IMAP Server Address"),
97 'type' => SMOPT_TYPE_STRING,
98 'size' => 40 ),
99 '$imapPort' => array( 'name' => _("IMAP Server Port"),
88cb1b4d 100 'type' => SMOPT_TYPE_INTEGER ),
0e66bc84 101 '$imap_server_type' => array( 'name' => _("IMAP Server Type"),
102 'type' => SMOPT_TYPE_STRLIST,
0e66bc84 103 'posvals' => array( 'cyrus' => _("Cyrus IMAP server"),
104 'uw' => _("University of Washington's IMAP server"),
105 'exchange' => _("Microsoft Exchange IMAP server"),
106 'courier' => _("Courier IMAP server"),
107 'other' => _("Not one of the above servers") ) ),
108 '$optional_delimiter' => array( 'name' => _("IMAP Folder Delimiter"),
109 'type' => SMOPT_TYPE_STRING,
edd4a552 110 'comment' => _("Use \"detect\" to auto-detect."),
2586d588 111 'size' => 10,
112 'default' => 'detect' ),
a2ccd603 113 '$use_imap_tls' => array( 'name' => "Use TLS for IMAP connections",
114 'type' => SMOPT_TYPE_BOOLEAN,
115 'comment' => "Requires PHP 4.3.x! Experimental.",
116 'default' => false ),
117 '$imap_auth_mech' => array( 'name' => "IMAP Authentication Mech",
118 'type' => SMOPT_TYPE_STRLIST,
119 'posvals' => array('plain' => 'Plaintext',
120 'cram-md5' => 'CRAM-MD5',
121 'digest-md5' => 'DIGEST-MD5') ),
0e66bc84 122 '$useSendmail' => array( 'name' => _("Use Sendmail"),
123 'type' => SMOPT_TYPE_BOOLEAN ),
dcd6f144 124 '$sendmail_path' => array( 'name' => _("Sendmail Path"),
125 'type' => SMOPT_TYPE_STRING,
126 'size' => 40 ),
abd7a3f8 127 '$smtpServerAddress' => array( 'name' => _("SMTP Server Address"),
128 'type' => SMOPT_TYPE_STRING,
129 'size' => 40 ),
130 '$smtpPort' => array( 'name' => _("SMTP Server Port"),
88cb1b4d 131 'type' => SMOPT_TYPE_INTEGER ),
a2ccd603 132 '$use_smtp_tls' => array( 'name' => "Use TLS for SMTP connections",
133 'type' => SMOPT_TYPE_BOOLEAN,
134 'comment' => "Requires PHP 4.3.x! Experimental.",
135 'default' => false ),
136 '$smtp_auth_mech' => array( 'name' => "SMTP Authentication Mech",
137 'type' => SMOPT_TYPE_STRLIST,
138 'posvals' => array('none' => 'No SMTP auth',
139 'plain' => 'Plaintext',
140 'cram-md5' => 'CRAM-MD5',
141 'digest-md5' => 'DIGEST-MD5'),
142 'default' => 'none'),
0e66bc84 143 '$invert_time' => array( 'name' => _("Invert Time"),
144 'type' => SMOPT_TYPE_BOOLEAN ),
ad0a71ac 145 '$default_use_mdn' => array( 'name' => _("Use Confirmation Flags"),
146 'type' => SMOPT_TYPE_BOOLEAN ),
0e66bc84 147 /* --------------------------------------------------------*/
148 'Group3' => array( 'name' => _("Folders Defaults"),
149 'type' => SMOPT_TYPE_TITLE ),
dcd6f144 150 '$default_folder_prefix' => array( 'name' => _("Default Folder Prefix"),
151 'type' => SMOPT_TYPE_STRING,
152 'size' => 40 ),
153 '$show_prefix_option' => array( 'name' => _("Show Folder Prefix Option"),
154 'type' => SMOPT_TYPE_BOOLEAN ),
155 '$trash_folder' => array( 'name' => _("Trash Folder"),
156 'type' => SMOPT_TYPE_STRING,
157 'size' => 40 ),
158 '$sent_folder' => array( 'name' => _("Sent Folder"),
159 'type' => SMOPT_TYPE_STRING,
160 'size' => 40 ),
161 '$draft_folder' => array( 'name' => _("Draft Folder"),
162 'type' => SMOPT_TYPE_STRING,
163 'size' => 40 ),
164 '$default_move_to_trash' => array( 'name' => _("By default, move to trash"),
165 'type' => SMOPT_TYPE_BOOLEAN ),
166 '$default_move_to_sent' => array( 'name' => _("By default, move to sent"),
167 'type' => SMOPT_TYPE_BOOLEAN ),
168 '$default_save_as_draft' => array( 'name' => _("By default, save as draft"),
169 'type' => SMOPT_TYPE_BOOLEAN ),
170 '$list_special_folders_first' => array( 'name' => _("List Special Folders First"),
171 'type' => SMOPT_TYPE_BOOLEAN ),
172 '$use_special_folder_color' => array( 'name' => _("Show Special Folders Color"),
173 'type' => SMOPT_TYPE_BOOLEAN ),
174 '$auto_expunge' => array( 'name' => _("Auto Expunge"),
175 'type' => SMOPT_TYPE_BOOLEAN ),
176 '$default_sub_of_inbox' => array( 'name' => _("Default Sub. of INBOX"),
177 'type' => SMOPT_TYPE_BOOLEAN ),
178 '$show_contain_subfolders_option' => array( 'name' => _("Show 'Contain Sub.' Option"),
179 'type' => SMOPT_TYPE_BOOLEAN ),
180 '$default_unseen_notify' => array( 'name' => _("Default Unseen Notify"),
5ed13ec8 181 'type' => SMOPT_TYPE_NUMLIST,
182 'posvals' => array( SMPREF_UNSEEN_NONE => _("No Notification"),
183 SMPREF_UNSEEN_INBOX => _("Only INBOX"),
184 SMPREF_UNSEEN_ALL => _("All Folders")) ),
dcd6f144 185 '$default_unseen_type' => array( 'name' => _("Default Unseen Type"),
5ed13ec8 186 'type' => SMOPT_TYPE_NUMLIST ,
187 'posvals' => array( SMPREF_UNSEEN_ONLY => _("Only Unseen"),
188 SMPREF_UNSEEN_TOTAL => _("Unseen and Total") ) ),
dcd6f144 189 '$auto_create_special' => array( 'name' => _("Auto Create Special Folders"),
190 'type' => SMOPT_TYPE_BOOLEAN ),
e91cf665 191 '$default_use_javascript_addr_book' => array( 'name' => _("Default Javascript Adrressbook"),
192 'type' => SMOPT_TYPE_BOOLEAN ),
4e85a37f 193 '$delete_folder' => array( 'name' => _("Auto delete folders"),
194 'type' => SMOPT_TYPE_BOOLEAN ),
dcd6f144 195 /* --------------------------------------------------------*/
d0102e1a 196 'Group4' => array( 'name' => _("General Options"),
dcd6f144 197 'type' => SMOPT_TYPE_TITLE ),
198 '$default_charset' => array( 'name' => _("Default Charset"),
edd4a552 199 'type' => SMOPT_TYPE_STRLIST,
491e1525 200 'posvals' => array( 'iso-8859-1' => 'iso-8859-1',
201 'iso-8859-2' => 'iso-8859-2',
202 'iso-8859-7' => 'iso-8859-7',
203 'iso-8859-15' => 'iso-8859-15',
204 'iso-8859-15' => 'iso-8859-15',
edd4a552 205 'ns_4551_1' => 'ns_4551_1',
206 'koi8-r' => 'koi8-r',
207 'euc-KR' => 'euc-KR',
fc0dec58 208 'windows-1251' => 'windows-1251',
83be314a 209 'ISO-2022-JP' => 'ISO-2022-JP' ) ),
dcd6f144 210 '$data_dir' => array( 'name' => _("Data Directory"),
a28a56da 211 'type' => SMOPT_TYPE_PATH,
dcd6f144 212 'size' => 40 ),
213 '$attachment_dir' => array( 'name' => _("Temp Directory"),
a28a56da 214 'type' => SMOPT_TYPE_PATH,
abd7a3f8 215 'size' => 40 ),
dcd6f144 216 '$dir_hash_level' => array( 'name' => _("Hash Level"),
217 'type' => SMOPT_TYPE_NUMLIST,
218 'posvals' => array( 0 => _("Hash Disabled"),
219 1 => _("Low"),
220 2 => _("Moderate"),
221 3 => _("Medium"),
222 4 => _("High") ) ),
edd4a552 223 '$default_left_size' => array( 'name' => _("Default Left Size"),
dcd6f144 224 'type' => SMOPT_TYPE_NUMLIST,
225 'posvals' => $left_size_values ),
226 '$force_username_lowercase' => array( 'name' => _("Usernames in Lowercase"),
227 'type' => SMOPT_TYPE_BOOLEAN ),
228 '$default_use_priority' => array( 'name' => _("Allow use of priority"),
229 'type' => SMOPT_TYPE_BOOLEAN ),
230 '$hide_sm_attributions' => array( 'name' => _("Hide SM attributions"),
231 'type' => SMOPT_TYPE_BOOLEAN ),
6fa38b33 232 'default_use_mdn' => array( 'name' => _("Enable use of delivery receipts"),
233 'type' => SMOPT_TYPE_BOOLEAN ),
8a7d0669 234 '$edit_identity' => array( 'name' => _("Allow editing of identities"),
235 'type' => SMOPT_TYPE_BOOLEAN ),
236 '$edit_name' => array( 'name' => _("Allow editing of full name"),
237 'type' => SMOPT_TYPE_BOOLEAN ),
dcd6f144 238 /* --------------------------------------------------------*/
edd4a552 239 'Group5' => array( 'name' => _("Message of the Day"),
240 'type' => SMOPT_TYPE_TITLE ),
241 '$motd' => array( 'name' => _("Message of the Day"),
242 'type' => SMOPT_TYPE_TEXTAREA,
243 'size' => 40 ),
244 /* --------------------------------------------------------*/
497203d4 245 'Group6' => array( 'name' => _("Database"),
246 'type' => SMOPT_TYPE_TITLE ),
247 '$addrbook_dsn' => array( 'name' => _("Address book DSN"),
248 'type' => SMOPT_TYPE_STRING,
88cb1b4d 249 'size' => 40 ),
4f40a59d 250 '$addrbook_table' => array( 'name' => _("Address book table"),
251 'type' => SMOPT_TYPE_STRING,
2586d588 252 'size' => 40,
253 'default' => 'address' ),
f58f1fd8 254 '$prefs_dsn' => array( 'name' => _("Preferences DSN"),
255 'type' => SMOPT_TYPE_STRING,
256 'size' => 40 ),
257 '$prefs_table' => array( 'name' => _("Preferences table"),
258 'type' => SMOPT_TYPE_STRING,
259 'size' => 40,
260 'default' => 'userprefs' ),
99a6c222 261 '$prefs_user_field' => array('name' => _("Preferences username field"),
262 'type' => SMOPT_TYPE_STRING,
263 'size' => 40,
264 'default' => 'user' ),
265 '$prefs_key_field' => array('name' => _("Preferences key field"),
266 'type' => SMOPT_TYPE_STRING,
267 'size' => 40,
268 'default' => 'prefkey' ),
269 '$prefs_val_field' => array('name' => _("Preferences value field"),
270 'type' => SMOPT_TYPE_STRING,
271 'size' => 40,
272 'default' => 'prefval' ),
497203d4 273 /* --------------------------------------------------------*/
274 'Group7' => array( 'name' => _("Themes"),
edd4a552 275 'type' => SMOPT_TYPE_TITLE ),
276 '$theme_css' => array( 'name' => _("Style Sheet URL (css)"),
a28a56da 277 'type' => SMOPT_TYPE_PATH,
edd4a552 278 'size' => 40 ),
279 /* --------------------------------------------------------*/
88cb1b4d 280 '$config_use_color' => array( 'name' => '',
281 'type' => SMOPT_TYPE_HIDDEN )
497203d4 282 /* --------------------------------------------------------*/
dcd6f144 283
edd4a552 284 );
dcd6f144 285
4f40a59d 286?>