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