update README to reflect inclusion in squirrelmail-core-plugins
[squirrelmail.git] / plugins / administrator / defines.php
1 <?php
2 /**
3 * Administrator plugin - Option definitions
4 *
5 * @version $Id$
6 * @author Philippe Mingo
7 * @copyright (c) 1999-2005 The SquirrelMail Project Team
8 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
9 * @package plugins
10 * @subpackage administrator
11 */
12
13 /** */
14 require_once( SM_PATH . 'functions/constants.php' );
15
16 /* Define constants for the various option types. */
17 define('SMOPT_TYPE_UNDEFINED', -1);
18 define('SMOPT_TYPE_STRING', 0);
19 define('SMOPT_TYPE_STRLIST', 1);
20 define('SMOPT_TYPE_TEXTAREA', 2);
21 define('SMOPT_TYPE_INTEGER', 3);
22 define('SMOPT_TYPE_FLOAT', 4);
23 define('SMOPT_TYPE_BOOLEAN', 5);
24 define('SMOPT_TYPE_HIDDEN', 6);
25 define('SMOPT_TYPE_COMMENT', 7);
26 define('SMOPT_TYPE_NUMLIST', 8);
27 define('SMOPT_TYPE_TITLE', 9);
28 define('SMOPT_TYPE_THEME', 10);
29 define('SMOPT_TYPE_PLUGINS', 11);
30 define('SMOPT_TYPE_LDAP', 12);
31 define('SMOPT_TYPE_EXTERNAL', 32);
32 define('SMOPT_TYPE_PATH',33);
33
34 global $languages;
35
36 $language_values = array( );
37 foreach ($languages as $lang_key => $lang_attributes) {
38 if (isset($lang_attributes['NAME'])) {
39 $language_values[$lang_key] = $lang_attributes['NAME'];
40 }
41 }
42 asort( $language_values );
43 $language_values = array_merge(array('' => _("Default")), $language_values);
44 $left_size_values = array();
45 for ($lsv = 100; $lsv <= 300; $lsv += 10) {
46 $left_size_values[$lsv] = "$lsv " . _("pixels");
47 }
48
49 $defcfg = array( '$config_version' => array( 'name' => _("Config File Version"),
50 'type' => SMOPT_TYPE_COMMENT,
51 'size' => 7 ),
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() ),
58 /* --------------------------------------------------------*/
59 'Group1' => array( 'name' => _("Organization Preferences"),
60 'type' => SMOPT_TYPE_TITLE ),
61 '$org_name' => array( 'name' => _("Organization Name"),
62 'type' => SMOPT_TYPE_STRING,
63 'size' => 40 ),
64 '$org_logo' => array( 'name' => _("Organization Logo"),
65 'type' => SMOPT_TYPE_PATH,
66 'size' => 40,
67 'default' => '../images/sm_logo.png'),
68 '$org_logo_width' => array( 'name' => _("Organization Logo Width"),
69 'type' => SMOPT_TYPE_STRING,
70 'size' => 5,
71 'default' => 0),
72 '$org_logo_height' => array( 'name' => _("Organization Logo Height"),
73 'type' => SMOPT_TYPE_STRING,
74 'size' => 5,
75 'default' => 0),
76 '$org_title' => array( 'name' => _("Organization Title"),
77 'type' => SMOPT_TYPE_STRING,
78 'size' => 40 ),
79 '$signout_page' => array( 'name' => _("Signout Page"),
80 'type' => SMOPT_TYPE_PATH,
81 'size' => 40 ),
82 '$provider_uri' => array( 'name' => _("Provider Link URI"),
83 'type' => SMOPT_TYPE_STRING ),
84 '$provider_name' => array( 'name' => _("Provider Name"),
85 'type' => SMOPT_TYPE_STRING ),
86 '$frame_top' => array( 'name' => _("Top Frame"),
87 'type' => SMOPT_TYPE_STRING,
88 'size' => 40,
89 'default' => '_top' ),
90 /* --------------------------------------------------------*/
91 'Group2' => array( 'name' => _("Server Settings"),
92 'type' => SMOPT_TYPE_TITLE ),
93 '$domain' => array( 'name' => _("Mail Domain"),
94 'type' => SMOPT_TYPE_STRING,
95 'size' => 40 ),
96 '$imapServerAddress' => array( 'name' => _("IMAP Server Address"),
97 'type' => SMOPT_TYPE_STRING,
98 'size' => 40 ),
99 '$imapPort' => array( 'name' => _("IMAP Server Port"),
100 'type' => SMOPT_TYPE_INTEGER ),
101 '$imap_server_type' => array( 'name' => _("IMAP Server Type"),
102 'type' => SMOPT_TYPE_STRLIST,
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 'macosx' => _("Mac OS X Mailserver"),
108 'hmailserver' => _("hMailServer IMAP server"),
109 'other' => _("Not one of the above servers") ) ),
110 '$optional_delimiter' => array( 'name' => _("IMAP Folder Delimiter"),
111 'type' => SMOPT_TYPE_STRING,
112 'comment' => _("Use &quot;detect&quot; to auto-detect."),
113 'size' => 10,
114 'default' => 'detect' ),
115 '$use_imap_tls' => array( 'name' => _("Use TLS for IMAP Connections"),
116 'type' => SMOPT_TYPE_BOOLEAN,
117 'comment' => _("Requires PHP 4.3.x! Experimental."),
118 'default' => false ),
119 '$imap_auth_mech' => array( 'name' => _("IMAP Authentication Type"),
120 'type' => SMOPT_TYPE_STRLIST,
121 'posvals' => array('login' => _("IMAP login"),
122 'cram-md5' => 'CRAM-MD5',
123 'digest-md5' => 'DIGEST-MD5'),
124 'default' => 'login' ),
125 '$useSendmail' => array( 'name' => _("Use Sendmail Binary"),
126 'type' => SMOPT_TYPE_BOOLEAN,
127 'comment' => _("Choose &quot;no&quot; for SMTP") ),
128 '$sendmail_path' => array( 'name' => _("Sendmail Path"),
129 'type' => SMOPT_TYPE_STRING,
130 'size' => 40 ),
131 '$smtpServerAddress' => array( 'name' => _("SMTP Server Address"),
132 'type' => SMOPT_TYPE_STRING,
133 'size' => 40 ),
134 '$smtpPort' => array( 'name' => _("SMTP Server Port"),
135 'type' => SMOPT_TYPE_INTEGER ),
136 '$use_smtp_tls' => array( 'name' => _("Use TLS for SMTP Connections"),
137 'type' => SMOPT_TYPE_BOOLEAN,
138 'comment' => _("Requires PHP 4.3.x! Experimental."),
139 'default' => false ),
140 '$smtp_auth_mech' => array( 'name' => _("SMTP Authentication Type"),
141 'type' => SMOPT_TYPE_STRLIST,
142 'posvals' => array('none' => _("No SMTP auth"),
143 'login' => _("Login (plain text)"),
144 'cram-md5' => 'CRAM-MD5',
145 'digest-md5' => 'DIGEST-MD5'),
146 'default' => 'none'),
147 '$pop_before_smtp' => array( 'name' => _("POP3 Before SMTP?"),
148 'type' => SMOPT_TYPE_BOOLEAN,
149 'default' => false ),
150 '$skip_SM_header' => array( 'name' => _("Hide SquirrelMail Header"),
151 'type' => SMOPT_TYPE_BOOLEAN ),
152 '$invert_time' => array( 'name' => _("Invert Time"),
153 'type' => SMOPT_TYPE_BOOLEAN ),
154 /* --------------------------------------------------------*/
155 'Group3' => array( 'name' => _("Folders Defaults"),
156 'type' => SMOPT_TYPE_TITLE ),
157 '$default_folder_prefix' => array( 'name' => _("Default Folder Prefix"),
158 'type' => SMOPT_TYPE_STRING,
159 'size' => 40 ),
160 '$show_prefix_option' => array( 'name' => _("Show Folder Prefix Option"),
161 'type' => SMOPT_TYPE_BOOLEAN ),
162 '$trash_folder' => array( 'name' => _("Trash Folder"),
163 'type' => SMOPT_TYPE_STRING,
164 'size' => 40 ),
165 '$sent_folder' => array( 'name' => _("Sent Folder"),
166 'type' => SMOPT_TYPE_STRING,
167 'size' => 40 ),
168 '$draft_folder' => array( 'name' => _("Draft Folder"),
169 'type' => SMOPT_TYPE_STRING,
170 'size' => 40 ),
171 '$default_move_to_trash' => array( 'name' => _("By default, move to trash"),
172 'type' => SMOPT_TYPE_BOOLEAN ),
173 '$default_move_to_sent' => array( 'name' => _("By default, move to sent"),
174 'type' => SMOPT_TYPE_BOOLEAN ),
175 '$default_save_as_draft' => array( 'name' => _("By default, save as draft"),
176 'type' => SMOPT_TYPE_BOOLEAN ),
177 '$list_special_folders_first' => array( 'name' => _("List Special Folders First"),
178 'type' => SMOPT_TYPE_BOOLEAN ),
179 '$use_special_folder_color' => array( 'name' => _("Show Special Folders Color"),
180 'type' => SMOPT_TYPE_BOOLEAN ),
181 '$auto_expunge' => array( 'name' => _("Auto Expunge"),
182 'type' => SMOPT_TYPE_BOOLEAN ),
183 '$default_sub_of_inbox' => array( 'name' => _("Default Sub. of INBOX"),
184 'type' => SMOPT_TYPE_BOOLEAN ),
185 '$show_contain_subfolders_option' => array( 'name' => _("Show 'Contain Sub.' Option"),
186 'type' => SMOPT_TYPE_BOOLEAN ),
187 '$default_unseen_notify' => array( 'name' => _("Default Unseen Notify"),
188 'type' => SMOPT_TYPE_NUMLIST,
189 'posvals' => array( SMPREF_UNSEEN_NONE => _("No Notification"),
190 SMPREF_UNSEEN_INBOX => _("Only INBOX"),
191 SMPREF_UNSEEN_ALL => _("All Folders")) ),
192 '$default_unseen_type' => array( 'name' => _("Default Unseen Type"),
193 'type' => SMOPT_TYPE_NUMLIST ,
194 'posvals' => array( SMPREF_UNSEEN_ONLY => _("Only Unseen"),
195 SMPREF_UNSEEN_TOTAL => _("Unseen and Total") ) ),
196 '$auto_create_special' => array( 'name' => _("Auto Create Special Folders"),
197 'type' => SMOPT_TYPE_BOOLEAN ),
198 '$delete_folder' => array( 'name' => _("Auto delete folders"),
199 'type' => SMOPT_TYPE_BOOLEAN ),
200 '$noselect_fix_enable' => array( 'name' => _("Enable /NoSelect folder fix"),
201 'type' => SMOPT_TYPE_BOOLEAN,
202 'default' => false),
203 /* --------------------------------------------------------*/
204 'Group4' => array( 'name' => _("General Options"),
205 'type' => SMOPT_TYPE_TITLE ),
206 '$data_dir' => array( 'name' => _("Data Directory"),
207 'type' => SMOPT_TYPE_PATH,
208 'size' => 40 ),
209 '$attachment_dir' => array( 'name' => _("Temp Directory"),
210 'type' => SMOPT_TYPE_PATH,
211 'size' => 40 ),
212 '$dir_hash_level' => array( 'name' => _("Hash Level"),
213 'type' => SMOPT_TYPE_NUMLIST,
214 'posvals' => array( 0 => _("Hash Disabled"),
215 1 => _("Low"),
216 2 => _("Moderate"),
217 3 => _("Medium"),
218 4 => _("High") ) ),
219 '$default_left_size' => array( 'name' => _("Default Left Size"),
220 'type' => SMOPT_TYPE_NUMLIST,
221 'posvals' => $left_size_values ),
222 '$force_username_lowercase' => array( 'name' => _("Usernames in Lowercase"),
223 'type' => SMOPT_TYPE_BOOLEAN ),
224 '$default_use_priority' => array( 'name' => _("Allow use of priority"),
225 'type' => SMOPT_TYPE_BOOLEAN ),
226 '$hide_sm_attributions' => array( 'name' => _("Hide SM attributions"),
227 'type' => SMOPT_TYPE_BOOLEAN ),
228 '$default_use_mdn' => array( 'name' => _("Enable use of delivery receipts"),
229 'type' => SMOPT_TYPE_BOOLEAN ),
230 '$edit_identity' => array( 'name' => _("Allow editing of identities"),
231 'type' => SMOPT_TYPE_BOOLEAN ),
232 '$edit_name' => array( 'name' => _("Allow editing of full name"),
233 'type' => SMOPT_TYPE_BOOLEAN ),
234 '$allow_server_sort' => array( 'name' => _("Use server-side sorting"),
235 'type' => SMOPT_TYPE_BOOLEAN,
236 'default' => false ),
237 '$allow_thread_sort' => array( 'name' => _("Use server-side thread sorting"),
238 'type' => SMOPT_TYPE_BOOLEAN,
239 'default' => false ),
240 '$allow_charset_search' => array( 'name' => _("Allow server charset search"),
241 'type' => SMOPT_TYPE_BOOLEAN,
242 'default' => false ),
243 '$allow_advanced_search' => array( 'name' => _("Search functions"),
244 'type' => SMOPT_TYPE_NUMLIST,
245 'posvals' => array( 0 => _("Only basic search"),
246 1 => _("Only advanced search"),
247 2 => _("Both search functions") ),
248 'default' => 0 ),
249 '$session_name' => array( 'name' => _("PHP session name"),
250 'type' => SMOPT_TYPE_HIDDEN ),
251 /* --------------------------------------------------------*/
252 'Group5' => array( 'name' => _("Message of the Day"),
253 'type' => SMOPT_TYPE_TITLE ),
254 '$motd' => array( 'name' => _("Message of the Day"),
255 'type' => SMOPT_TYPE_TEXTAREA,
256 'size' => 40 ),
257 /* ---- Database settings ---- */
258 'Group6' => array( 'name' => _("Database"),
259 'type' => SMOPT_TYPE_TITLE ),
260 '$addrbook_dsn' => array( 'name' => _("Address book DSN"),
261 'type' => SMOPT_TYPE_STRING,
262 'size' => 40 ),
263 '$addrbook_table' => array( 'name' => _("Address book table"),
264 'type' => SMOPT_TYPE_STRING,
265 'size' => 40,
266 'default' => 'address' ),
267 '$prefs_dsn' => array( 'name' => _("Preferences DSN"),
268 'type' => SMOPT_TYPE_STRING,
269 'size' => 40 ),
270 '$prefs_table' => array( 'name' => _("Preferences table"),
271 'type' => SMOPT_TYPE_STRING,
272 'size' => 40,
273 'default' => 'userprefs' ),
274 '$prefs_user_field' => array('name' => _("Preferences username field"),
275 'type' => SMOPT_TYPE_STRING,
276 'size' => 40,
277 'default' => 'user' ),
278 '$prefs_key_field' => array('name' => _("Preferences key field"),
279 'type' => SMOPT_TYPE_STRING,
280 'size' => 40,
281 'default' => 'prefkey' ),
282 '$prefs_val_field' => array('name' => _("Preferences value field"),
283 'type' => SMOPT_TYPE_STRING,
284 'size' => 40,
285 'default' => 'prefval' ),
286 '$addrbook_global_dsn' => array( 'name' => _("Global address book DSN"),
287 'type' => SMOPT_TYPE_STRING,
288 'size' => 40 ),
289 '$addrbook_global_table' => array( 'name' => _("Global address book table"),
290 'type' => SMOPT_TYPE_STRING,
291 'size' => 40,
292 'default' => 'global_abook' ),
293 '$addrbook_global_writeable' => array( 'name' => _("Allow writing into global address book"),
294 'type' => SMOPT_TYPE_BOOLEAN ),
295 '$addrbook_global_listing' => array( 'name' => _("Allow listing of global address book"),
296 'type' => SMOPT_TYPE_BOOLEAN ),
297 /* ---- Language settings ---- */
298 'Group9' => array( 'name' => _("Language settings"),
299 'type' => SMOPT_TYPE_TITLE ),
300 '$squirrelmail_default_language' => array( 'name' => _("Default Language"),
301 'type' => SMOPT_TYPE_STRLIST,
302 'size' => 7,
303 'posvals' => $language_values ),
304 '$default_charset' => array( 'name' => _("Default Charset"),
305 'type' => SMOPT_TYPE_STRLIST,
306 'posvals' => array( 'iso-8859-1' => 'iso-8859-1',
307 'iso-8859-2' => 'iso-8859-2',
308 'iso-8859-7' => 'iso-8859-7',
309 'iso-8859-9' => 'iso-8859-9',
310 'iso-8859-15' => 'iso-8859-15',
311 'utf-8' => 'utf-8',
312 'koi8-r' => 'koi8-r',
313 'euc-kr' => 'euc-kr',
314 'big5' => 'big5',
315 'gb2312' => 'gb2312',
316 'tis-620' => 'tis-620',
317 'windows-1251' => 'windows-1251',
318 'windows-1255' => 'windows-1255',
319 'windows-1256' => 'windows-1256',
320 'iso-2022-jp' => 'iso-2022-jp' ) ),
321 '$show_alternative_names' => array( 'name' => _("Show alternative language names"),
322 'type' => SMOPT_TYPE_BOOLEAN ),
323 '$available_languages' => array( 'name' => _("Available languages"),
324 'type' => SMOPT_TYPE_STRING,
325 'size' => 40 ),
326 '$aggressive_decoding' => array( 'name' => _("Enable aggressive decoding"),
327 'type' => SMOPT_TYPE_BOOLEAN ),
328 '$lossy_encoding' => array( 'name' => _("Enable lossy encoding"),
329 'type' => SMOPT_TYPE_BOOLEAN ),
330 /* ---- Tweaks ---- */
331 'Group10' => array( 'name' => _("Tweaks"),
332 'type' => SMOPT_TYPE_TITLE ),
333 '$advanced_tree' => array( 'name' => _("Use advanced tree folder listing"),
334 'type' => SMOPT_TYPE_BOOLEAN ),
335 '$oldway' => array( 'name' => _("Use old folder listing functions"),
336 'type' => SMOPT_TYPE_BOOLEAN ),
337 '$use_icons' => array( 'name' => _("Use icons"),
338 'type' => SMOPT_TYPE_BOOLEAN ),
339 '$use_php_recode' => array( 'name' => _("Use PHP recode functions"),
340 'type' => SMOPT_TYPE_BOOLEAN ),
341 '$use_php_iconv' => array( 'name' => _("Use PHP iconv functions"),
342 'type' => SMOPT_TYPE_BOOLEAN ),
343 /* ---- Settings of address books ---- */
344 'Group11' => array( 'name' => _("Address Books"),
345 'type' => SMOPT_TYPE_TITLE ),
346 '$default_use_javascript_addr_book' => array( 'name' => _("Default Javascript Addressbook"),
347 'type' => SMOPT_TYPE_BOOLEAN ),
348 '$abook_global_file' => array( 'name' => _("Global address book file"),
349 'type' => SMOPT_TYPE_STRING ),
350 '$abook_global_file_writeable' => array( 'name' => _("Allow writing into global address book file"),
351 'type' => SMOPT_TYPE_BOOLEAN ),
352 /* --------------------------------------------------------*/
353 'Group7' => array( 'name' => _("Themes"),
354 'type' => SMOPT_TYPE_TITLE ),
355 '$theme_css' => array( 'name' => _("Style Sheet URL (css)"),
356 'type' => SMOPT_TYPE_PATH,
357 'size' => 40 ),
358 '$theme_default' => array( 'name' => _("Default theme"),
359 'type' => SMOPT_TYPE_INTEGER,
360 'default' => 0,
361 'comment' => _("Use index number of theme") ),
362 /* --------------------------------------------------------*/
363 '$config_use_color' => array( 'name' => '',
364 'type' => SMOPT_TYPE_HIDDEN ),
365 '$no_list_for_subscribe' => array( 'name' => '',
366 'type' => SMOPT_TYPE_HIDDEN ),
367 /* --------------------------------------------------------*/
368
369 );
370
371 ?>