496dca6506cdd6e8d27b2b92dcdce59fc97a0c6d
[squirrelmail.git] / plugins / administrator / defines.php
1 <?php
2
3 /**
4 * Administrator plugin - Option definitions
5 *
6 * @author Philippe Mingo
7 * @copyright &copy; 1999-2006 The SquirrelMail Project Team
8 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
9 * @version $Id$
10 * @package plugins
11 * @subpackage administrator
12 */
13
14 /** Define constants for the various option types. */
15 define('SMOPT_TYPE_UNDEFINED', -1);
16 define('SMOPT_TYPE_STRING', 0);
17 define('SMOPT_TYPE_STRLIST', 1);
18 define('SMOPT_TYPE_TEXTAREA', 2);
19 define('SMOPT_TYPE_INTEGER', 3);
20 define('SMOPT_TYPE_FLOAT', 4);
21 define('SMOPT_TYPE_BOOLEAN', 5);
22 define('SMOPT_TYPE_HIDDEN', 6);
23 define('SMOPT_TYPE_COMMENT', 7);
24 define('SMOPT_TYPE_NUMLIST', 8);
25 define('SMOPT_TYPE_TITLE', 9);
26 define('SMOPT_TYPE_THEME', 10);
27 define('SMOPT_TYPE_PLUGINS', 11);
28 define('SMOPT_TYPE_LDAP', 12);
29 define('SMOPT_TYPE_CUSTOM', 13);
30 define('SMOPT_TYPE_EXTERNAL', 32);
31 define('SMOPT_TYPE_PATH',33);
32
33 /**
34 * Returns reformated aTemplateSet array data for option selection
35 * @return array template selection options
36 * @since 1.5.1
37 */
38 function adm_template_options() {
39 global $aTemplateSet;
40 $ret = array();
41 foreach ($aTemplateSet as $iTemplateID => $aTemplate) {
42 $ret[$iTemplateID] = $aTemplate['NAME'];
43 }
44 return $ret;
45 }
46
47 global $languages, $version;
48
49 $language_values = array( );
50 foreach ($languages as $lang_key => $lang_attributes) {
51 if (isset($lang_attributes['NAME'])) {
52 $language_values[$lang_key] = $lang_attributes['NAME'];
53 }
54 }
55 asort( $language_values );
56 $language_values = array_merge(array('' => _("Default")), $language_values);
57 $left_size_values = array();
58 for ($lsv = 100; $lsv <= 300; $lsv += 10) {
59 $left_size_values[$lsv] = "$lsv " . _("pixels");
60 }
61
62 $defcfg = array( '$config_version' => array( 'name' => _("Config File Version"),
63 'type' => SMOPT_TYPE_COMMENT,
64 'size' => 7 ),
65 'SM_ver' => array( 'name' => _("SquirrelMail Version"),
66 'type' => SMOPT_TYPE_EXTERNAL,
67 'value' => "$version" ),
68 'PHP_ver' => array( 'name' => _("PHP Version"),
69 'type' => SMOPT_TYPE_EXTERNAL,
70 'value' => phpversion() ),
71 /* --------------------------------------------------------*/
72 'Group1' => array( 'name' => _("Organization Preferences"),
73 'type' => SMOPT_TYPE_TITLE ),
74 '$org_name' => array( 'name' => _("Organization Name"),
75 'type' => SMOPT_TYPE_STRING,
76 'size' => 40 ),
77 '$org_logo' => array( 'name' => _("Organization Logo"),
78 'type' => SMOPT_TYPE_PATH,
79 'size' => 40,
80 'default' => '../images/sm_logo.png'),
81 '$org_logo_width' => array( 'name' => _("Organization Logo Width"),
82 'type' => SMOPT_TYPE_STRING,
83 'size' => 5,
84 'default' => 0),
85 '$org_logo_height' => array( 'name' => _("Organization Logo Height"),
86 'type' => SMOPT_TYPE_STRING,
87 'size' => 5,
88 'default' => 0),
89 '$org_title' => array( 'name' => _("Organization Title"),
90 'type' => SMOPT_TYPE_STRING,
91 'size' => 40 ),
92 '$signout_page' => array( 'name' => _("Signout Page"),
93 'type' => SMOPT_TYPE_PATH,
94 'size' => 40 ),
95 '$provider_uri' => array( 'name' => _("Provider Link URI"),
96 'type' => SMOPT_TYPE_STRING ),
97 '$provider_name' => array( 'name' => _("Provider Name"),
98 'type' => SMOPT_TYPE_STRING ),
99 '$frame_top' => array( 'name' => _("Top Frame"),
100 'type' => SMOPT_TYPE_STRING,
101 'size' => 40,
102 'default' => '_top' ),
103 /* --------------------------------------------------------*/
104 'Group2' => array( 'name' => _("Server Settings"),
105 'type' => SMOPT_TYPE_TITLE ),
106 '$domain' => array( 'name' => _("Mail Domain"),
107 'type' => SMOPT_TYPE_STRING,
108 'size' => 40 ),
109 '$imapServerAddress' => array( 'name' => _("IMAP Server Address"),
110 'type' => SMOPT_TYPE_STRING,
111 'size' => 40 ),
112 '$imapPort' => array( 'name' => _("IMAP Server Port"),
113 'type' => SMOPT_TYPE_INTEGER ),
114 '$imap_server_type' => array( 'name' => _("IMAP Server Type"),
115 'type' => SMOPT_TYPE_STRLIST,
116 'posvals' => array( 'cyrus' => _("Cyrus IMAP server"),
117 'uw' => _("University of Washington's IMAP server"),
118 'exchange' => _("Microsoft Exchange IMAP server"),
119 'courier' => _("Courier IMAP server"),
120 'macosx' => _("Mac OS X Mailserver"),
121 'hmailserver' => _("hMailServer IMAP server"),
122 'mercury32' => _("Mercury/32 IMAP server"),
123 'bincimap' => _("Binc IMAP server"),
124 'other' => _("Not one of the above servers") ) ),
125 '$optional_delimiter' => array( 'name' => _("IMAP Folder Delimiter"),
126 'type' => SMOPT_TYPE_STRING,
127 'comment' => _("Use &quot;detect&quot; to auto-detect."),
128 'size' => 10,
129 'default' => 'detect' ),
130 '$use_imap_tls' => array( 'name' => _("IMAP Connection Security"),
131 'type' => SMOPT_TYPE_STRLIST,
132 'posvals' => array( 0 => _("Plain text connection"),
133 1 => _("Secure IMAP (TLS) connection"),
134 2 => _("IMAP STARTTLS connection")),
135 'comment' => _("Requires higher PHP version and special functions. See SquirrelMail documentation."),
136 'default' => 0 ),
137 '$imap_auth_mech' => array( 'name' => _("IMAP Authentication Type"),
138 'type' => SMOPT_TYPE_STRLIST,
139 'posvals' => array('login' => _("IMAP login"),
140 'cram-md5' => 'CRAM-MD5',
141 'digest-md5' => 'DIGEST-MD5'),
142 'default' => 'login' ),
143 '$useSendmail' => array( 'name' => _("Use Sendmail Binary"),
144 'type' => SMOPT_TYPE_BOOLEAN,
145 'comment' => _("Choose &quot;no&quot; for SMTP") ),
146 '$sendmail_path' => array( 'name' => _("Sendmail Path"),
147 'type' => SMOPT_TYPE_STRING,
148 'size' => 40 ),
149 '$sendmail_args' => array( 'name' => _("Sendmail Arguments"),
150 'type' => SMOPT_TYPE_STRING,
151 'size' => 40 ),
152 '$smtpServerAddress' => array( 'name' => _("SMTP Server Address"),
153 'type' => SMOPT_TYPE_STRING,
154 'size' => 40 ),
155 '$smtpPort' => array( 'name' => _("SMTP Server Port"),
156 'type' => SMOPT_TYPE_INTEGER ),
157 '$use_smtp_tls' => array( 'name' => _("SMTP Connection Security"),
158 'type' => SMOPT_TYPE_STRLIST,
159 'posvals' => array( 0 => _("Plain text connection"),
160 1 => _("Secure IMAP (TLS) connection"),
161 2 => _("IMAP STARTTLS connection")),
162 'comment' => _("Requires higher PHP version and special functions. See SquirrelMail documentation."),
163 'default' => 0 ),
164 '$smtp_auth_mech' => array( 'name' => _("SMTP Authentication Type"),
165 'type' => SMOPT_TYPE_STRLIST,
166 'posvals' => array('none' => _("No SMTP auth"),
167 'login' => _("Login (plain text)"),
168 'cram-md5' => 'CRAM-MD5',
169 'digest-md5' => 'DIGEST-MD5'),
170 'default' => 'none'),
171 '$pop_before_smtp' => array( 'name' => _("POP3 Before SMTP?"),
172 'type' => SMOPT_TYPE_BOOLEAN,
173 'default' => false ),
174 '$encode_header_key' => array( 'name' => _("Header Encryption Key"),
175 'type' => SMOPT_TYPE_STRING ),
176 '$invert_time' => array( 'name' => _("Invert Time"),
177 'type' => SMOPT_TYPE_BOOLEAN ),
178 /* --------------------------------------------------------*/
179 'Group3' => array( 'name' => _("Folders Defaults"),
180 'type' => SMOPT_TYPE_TITLE ),
181 '$default_folder_prefix' => array( 'name' => _("Default Folder Prefix"),
182 'type' => SMOPT_TYPE_STRING,
183 'size' => 40 ),
184 '$show_prefix_option' => array( 'name' => _("Show Folder Prefix Option"),
185 'type' => SMOPT_TYPE_BOOLEAN ),
186 '$trash_folder' => array( 'name' => _("Trash Folder"),
187 'type' => SMOPT_TYPE_STRING,
188 'size' => 40 ),
189 '$sent_folder' => array( 'name' => _("Sent Folder"),
190 'type' => SMOPT_TYPE_STRING,
191 'size' => 40 ),
192 '$draft_folder' => array( 'name' => _("Draft Folder"),
193 'type' => SMOPT_TYPE_STRING,
194 'size' => 40 ),
195 '$default_move_to_trash' => array( 'name' => _("By default, move to trash"),
196 'type' => SMOPT_TYPE_BOOLEAN ),
197 '$default_move_to_sent' => array( 'name' => _("By default, move to sent"),
198 'type' => SMOPT_TYPE_BOOLEAN ),
199 '$default_save_as_draft' => array( 'name' => _("By default, save as draft"),
200 'type' => SMOPT_TYPE_BOOLEAN ),
201 '$list_special_folders_first' => array( 'name' => _("List Special Folders First"),
202 'type' => SMOPT_TYPE_BOOLEAN ),
203 '$use_special_folder_color' => array( 'name' => _("Show Special Folders Color"),
204 'type' => SMOPT_TYPE_BOOLEAN ),
205 '$auto_expunge' => array( 'name' => _("Auto Expunge"),
206 'type' => SMOPT_TYPE_BOOLEAN ),
207 '$default_sub_of_inbox' => array( 'name' => _("Default Sub. of INBOX"),
208 'type' => SMOPT_TYPE_BOOLEAN ),
209 '$show_contain_subfolders_option' => array( 'name' => _("Show 'Contain Sub.' Option"),
210 'type' => SMOPT_TYPE_BOOLEAN ),
211 '$default_unseen_notify' => array( 'name' => _("Default Unseen Notify"),
212 'type' => SMOPT_TYPE_NUMLIST,
213 'posvals' => array( SMPREF_UNSEEN_NONE => _("No Notification"),
214 SMPREF_UNSEEN_INBOX => _("Only INBOX"),
215 SMPREF_UNSEEN_ALL => _("All Folders")) ),
216 '$default_unseen_type' => array( 'name' => _("Default Unseen Type"),
217 'type' => SMOPT_TYPE_NUMLIST ,
218 'posvals' => array( SMPREF_UNSEEN_ONLY => _("Only Unseen"),
219 SMPREF_UNSEEN_TOTAL => _("Unseen and Total") ) ),
220 '$auto_create_special' => array( 'name' => _("Auto Create Special Folders"),
221 'type' => SMOPT_TYPE_BOOLEAN ),
222 '$delete_folder' => array( 'name' => _("Auto delete folders"),
223 'type' => SMOPT_TYPE_BOOLEAN ),
224 '$noselect_fix_enable' => array( 'name' => _("Enable /NoSelect folder fix"),
225 'type' => SMOPT_TYPE_BOOLEAN,
226 'default' => false),
227 /* --------------------------------------------------------*/
228 'Group4' => array( 'name' => _("General Options"),
229 'type' => SMOPT_TYPE_TITLE ),
230 '$data_dir' => array( 'name' => _("Data Directory"),
231 'type' => SMOPT_TYPE_PATH,
232 'size' => 40 ),
233 '$attachment_dir' => array( 'name' => _("Temp Directory"),
234 'type' => SMOPT_TYPE_PATH,
235 'size' => 40 ),
236 '$dir_hash_level' => array( 'name' => _("Hash Level"),
237 'type' => SMOPT_TYPE_NUMLIST,
238 'posvals' => array( 0 => _("Hash Disabled"),
239 1 => _("Low"),
240 2 => _("Moderate"),
241 3 => _("Medium"),
242 4 => _("High") ) ),
243 '$default_left_size' => array( 'name' => _("Default Left Size"),
244 'type' => SMOPT_TYPE_NUMLIST,
245 'posvals' => $left_size_values ),
246 '$force_username_lowercase' => array( 'name' => _("Usernames in Lowercase"),
247 'type' => SMOPT_TYPE_BOOLEAN ),
248 '$default_use_priority' => array( 'name' => _("Allow use of priority"),
249 'type' => SMOPT_TYPE_BOOLEAN ),
250 '$hide_sm_attributions' => array( 'name' => _("Hide SM attributions"),
251 'type' => SMOPT_TYPE_BOOLEAN ),
252 '$default_use_mdn' => array( 'name' => _("Enable use of delivery receipts"),
253 'type' => SMOPT_TYPE_BOOLEAN ),
254 '$edit_identity' => array( 'name' => _("Allow editing of identities"),
255 'type' => SMOPT_TYPE_BOOLEAN ),
256 '$edit_name' => array( 'name' => _("Allow editing of full name"),
257 'type' => SMOPT_TYPE_BOOLEAN ),
258 '$hide_auth_header' => array( 'name' => _("Remove username from headers"),
259 'comment' => _("Used only when identities can't be modified"),
260 'type' => SMOPT_TYPE_BOOLEAN ),
261 '$disable_server_sort' => array( 'name' => _("Disable server-side sorting"),
262 'type' => SMOPT_TYPE_BOOLEAN,
263 'default' => false ),
264 '$disable_thread_sort' => array( 'name' => _("Disable server-side thread sorting"),
265 'type' => SMOPT_TYPE_BOOLEAN,
266 'default' => false ),
267 '$allow_charset_search' => array( 'name' => _("Allow server charset search"),
268 'type' => SMOPT_TYPE_BOOLEAN,
269 'default' => false ),
270 '$allow_advanced_search' => array( 'name' => _("Search functions"),
271 'type' => SMOPT_TYPE_NUMLIST,
272 'posvals' => array( 0 => _("Only basic search"),
273 1 => _("Only advanced search"),
274 2 => _("Both search functions") ),
275 'default' => 0 ),
276 '$session_name' => array( 'name' => _("PHP session name"),
277 'type' => SMOPT_TYPE_HIDDEN ),
278 '$time_zone_type' => array( 'name' => _("Time Zone Configuration"),
279 'type' => SMOPT_TYPE_NUMLIST,
280 'posvals' => array( 0 => _("Standard GNU C time zones"),
281 1 => _("Strict time zones"),
282 2 => _("Custom GNU C time zones"),
283 3 => _("Custom strict time zones")),
284 'default' => 0 ),
285 '$config_location_base' => array( 'name' => _("Location base"),
286 'type' => SMOPT_TYPE_STRING,
287 'size' => 40,
288 'default' => '' ),
289 /* --------------------------------------------------------*/
290 'Group5' => array( 'name' => _("Message of the Day"),
291 'type' => SMOPT_TYPE_TITLE ),
292 '$motd' => array( 'name' => _("Message of the Day"),
293 'type' => SMOPT_TYPE_TEXTAREA,
294 'size' => 40 ),
295 /* ---- Database settings ---- */
296 'Group6' => array( 'name' => _("Database"),
297 'type' => SMOPT_TYPE_TITLE ),
298 '$addrbook_dsn' => array( 'name' => _("Address book DSN"),
299 'type' => SMOPT_TYPE_STRING,
300 'size' => 40 ),
301 '$addrbook_table' => array( 'name' => _("Address book table"),
302 'type' => SMOPT_TYPE_STRING,
303 'size' => 40,
304 'default' => 'address' ),
305 '$prefs_dsn' => array( 'name' => _("Preferences DSN"),
306 'type' => SMOPT_TYPE_STRING,
307 'size' => 40 ),
308 '$prefs_table' => array( 'name' => _("Preferences table"),
309 'type' => SMOPT_TYPE_STRING,
310 'size' => 40,
311 'default' => 'userprefs' ),
312 '$prefs_user_field' => array('name' => _("Preferences username field"),
313 'type' => SMOPT_TYPE_STRING,
314 'size' => 40,
315 'default' => 'user' ),
316 '$prefs_user_size' => array( 'name' => _("Size of username field"),
317 'type' => SMOPT_TYPE_INTEGER ),
318 '$prefs_key_field' => array('name' => _("Preferences key field"),
319 'type' => SMOPT_TYPE_STRING,
320 'size' => 40,
321 'default' => 'prefkey' ),
322 '$prefs_key_size' => array( 'name' => _("Size of key field"),
323 'type' => SMOPT_TYPE_INTEGER ),
324 '$prefs_val_field' => array('name' => _("Preferences value field"),
325 'type' => SMOPT_TYPE_STRING,
326 'size' => 40,
327 'default' => 'prefval' ),
328 '$prefs_val_size' => array( 'name' => _("Size of value field"),
329 'type' => SMOPT_TYPE_INTEGER ),
330 '$addrbook_global_dsn' => array( 'name' => _("Global address book DSN"),
331 'type' => SMOPT_TYPE_STRING,
332 'size' => 40 ),
333 '$addrbook_global_table' => array( 'name' => _("Global address book table"),
334 'type' => SMOPT_TYPE_STRING,
335 'size' => 40,
336 'default' => 'global_abook' ),
337 '$addrbook_global_writeable' => array( 'name' => _("Allow writing into global address book"),
338 'type' => SMOPT_TYPE_BOOLEAN ),
339 '$addrbook_global_listing' => array( 'name' => _("Allow listing of global address book"),
340 'type' => SMOPT_TYPE_BOOLEAN ),
341 /* ---- Language settings ---- */
342 'Group9' => array( 'name' => _("Language settings"),
343 'type' => SMOPT_TYPE_TITLE ),
344 '$squirrelmail_default_language' => array( 'name' => _("Default Language"),
345 'type' => SMOPT_TYPE_STRLIST,
346 'size' => 7,
347 'posvals' => $language_values ),
348 '$default_charset' => array( 'name' => _("Default Charset"),
349 'type' => SMOPT_TYPE_STRLIST,
350 'posvals' => array( 'iso-8859-1' => 'iso-8859-1',
351 'iso-8859-2' => 'iso-8859-2',
352 'iso-8859-7' => 'iso-8859-7',
353 'iso-8859-9' => 'iso-8859-9',
354 'iso-8859-15' => 'iso-8859-15',
355 'utf-8' => 'utf-8',
356 'koi8-r' => 'koi8-r',
357 'euc-kr' => 'euc-kr',
358 'big5' => 'big5',
359 'gb2312' => 'gb2312',
360 'tis-620' => 'tis-620',
361 'windows-1251' => 'windows-1251',
362 'windows-1255' => 'windows-1255',
363 'windows-1256' => 'windows-1256',
364 'iso-2022-jp' => 'iso-2022-jp' ) ),
365 '$show_alternative_names' => array( 'name' => _("Show alternative language names"),
366 'type' => SMOPT_TYPE_BOOLEAN ),
367 '$aggressive_decoding' => array( 'name' => _("Enable aggressive decoding"),
368 'type' => SMOPT_TYPE_BOOLEAN ),
369 '$lossy_encoding' => array( 'name' => _("Enable lossy encoding"),
370 'type' => SMOPT_TYPE_BOOLEAN ),
371 /* ---- Tweaks ---- */
372 'Group10' => array( 'name' => _("Tweaks"),
373 'type' => SMOPT_TYPE_TITLE ),
374 '$use_icons' => array( 'name' => _("Use icons"),
375 'type' => SMOPT_TYPE_BOOLEAN ),
376 '$use_iframe' => array( 'name' => _("Use inline frames with HTML mails"),
377 'type' => SMOPT_TYPE_BOOLEAN ),
378 '$use_php_recode' => array( 'name' => _("Use PHP recode functions"),
379 'type' => SMOPT_TYPE_BOOLEAN ),
380 '$use_php_iconv' => array( 'name' => _("Use PHP iconv functions"),
381 'type' => SMOPT_TYPE_BOOLEAN ),
382 '$allow_remote_configtest' => array( 'name' => _("Allow remote configuration test"),
383 'type' => SMOPT_TYPE_BOOLEAN ),
384 /* ---- Settings of address books ---- */
385 'Group11' => array( 'name' => _("Address Books"),
386 'type' => SMOPT_TYPE_TITLE ),
387 '$default_use_javascript_addr_book' => array( 'name' => _("Default Javascript Addressbook"),
388 'type' => SMOPT_TYPE_BOOLEAN ),
389 '$abook_global_file' => array( 'name' => _("Global address book file"),
390 'type' => SMOPT_TYPE_STRING ),
391 '$abook_global_file_writeable' => array( 'name' => _("Allow writing into global address book file"),
392 'type' => SMOPT_TYPE_BOOLEAN ),
393 '$abook_global_file_listing' => array( 'name' => _("Allow listing of global address book"),
394 'type' => SMOPT_TYPE_BOOLEAN ),
395 '$abook_file_line_length' => array( 'name' => _("Address book file line length"),
396 'type' => SMOPT_TYPE_INTEGER ),
397 /* --------------------------------------------------------*/
398 'Group7' => array( 'name' => _("Templates"),
399 'type' => SMOPT_TYPE_TITLE ),
400 '$theme_css' => array( 'name' => _("Style Sheet URL (css)"),
401 'type' => SMOPT_TYPE_PATH,
402 'size' => 40 ),
403 '$default_fontsize' => array( 'name' => _("Default font size"),
404 'type' => SMOPT_TYPE_STRING,
405 'default' => ''),
406 '$default_fontset' => array( 'name' => _("Default font set"),
407 'type' => SMOPT_TYPE_STRLIST,
408 'posvals' => $fontsets),
409 '$templateset_default' => array( 'name' => _("Default template"),
410 'type' => SMOPT_TYPE_STRLIST,
411 'posvals' => adm_template_options()),
412 '$theme_default' => array( 'name' => _("Default theme"),
413 'type' => SMOPT_TYPE_INTEGER,
414 'default' => 0,
415 'comment' => _("Use index number of theme") ),
416 /* --------------------------------------------------------*/
417 '$config_use_color' => array( 'name' => '',
418 'type' => SMOPT_TYPE_HIDDEN ),
419 '$no_list_for_subscribe' => array( 'name' => '',
420 'type' => SMOPT_TYPE_HIDDEN ),
421 /* --------------------------------------------------------*/
422
423 );
424