When appending a message, the returned data still included a ) from the
[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 ),
a3d6c63e 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 ),
abd7a3f8 86 '$squirrelmail_default_language' => array( 'name' => _("Default Language"),
87 'type' => SMOPT_TYPE_STRLIST,
88 'size' => 7,
89 'posvals' => $language_values ),
dcd6f144 90 '$frame_top' => array( 'name' => _("Top Frame"),
91 'type' => SMOPT_TYPE_STRING,
feba1a41 92 'size' => 40,
93 'default' => '_top' ),
0e66bc84 94 /* --------------------------------------------------------*/
95 'Group2' => array( 'name' => _("Server Settings"),
96 'type' => SMOPT_TYPE_TITLE ),
97 '$domain' => array( 'name' => _("Mail Domain"),
88cb1b4d 98 'type' => SMOPT_TYPE_STRING,
99 'size' => 40 ),
abd7a3f8 100 '$imapServerAddress' => array( 'name' => _("IMAP Server Address"),
101 'type' => SMOPT_TYPE_STRING,
102 'size' => 40 ),
103 '$imapPort' => array( 'name' => _("IMAP Server Port"),
88cb1b4d 104 'type' => SMOPT_TYPE_INTEGER ),
0e66bc84 105 '$imap_server_type' => array( 'name' => _("IMAP Server Type"),
106 'type' => SMOPT_TYPE_STRLIST,
0e66bc84 107 'posvals' => array( 'cyrus' => _("Cyrus IMAP server"),
108 'uw' => _("University of Washington's IMAP server"),
109 'exchange' => _("Microsoft Exchange IMAP server"),
110 'courier' => _("Courier IMAP server"),
111 'other' => _("Not one of the above servers") ) ),
112 '$optional_delimiter' => array( 'name' => _("IMAP Folder Delimiter"),
113 'type' => SMOPT_TYPE_STRING,
edd4a552 114 'comment' => _("Use \"detect\" to auto-detect."),
2586d588 115 'size' => 10,
116 'default' => 'detect' ),
a3d6c63e 117 '$use_imap_tls' => array( 'name' => _("Use TLS for IMAP Connections"),
a2ccd603 118 'type' => SMOPT_TYPE_BOOLEAN,
a3d6c63e 119 'comment' => _("Requires PHP 4.3.x! Experimental."),
a2ccd603 120 'default' => false ),
a3d6c63e 121 '$imap_auth_mech' => array( 'name' => _("IMAP Authentication Type"),
a2ccd603 122 'type' => SMOPT_TYPE_STRLIST,
fe0b18b3 123 'posvals' => array('login' => 'IMAP LOGIN',
a2ccd603 124 'cram-md5' => 'CRAM-MD5',
fe0b18b3 125 'digest-md5' => 'DIGEST-MD5'),
126 'default' => 'login' ),
a3d6c63e 127 '$useSendmail' => array( 'name' => _("Use Sendmail Binary"),
128 'type' => SMOPT_TYPE_BOOLEAN,
129 'comment' => "Say 'no' for SMTP" ),
dcd6f144 130 '$sendmail_path' => array( 'name' => _("Sendmail Path"),
131 'type' => SMOPT_TYPE_STRING,
132 'size' => 40 ),
abd7a3f8 133 '$smtpServerAddress' => array( 'name' => _("SMTP Server Address"),
134 'type' => SMOPT_TYPE_STRING,
135 'size' => 40 ),
136 '$smtpPort' => array( 'name' => _("SMTP Server Port"),
88cb1b4d 137 'type' => SMOPT_TYPE_INTEGER ),
a3d6c63e 138 '$use_smtp_tls' => array( 'name' => _("Use TLS for SMTP Connections"),
a2ccd603 139 'type' => SMOPT_TYPE_BOOLEAN,
a3d6c63e 140 'comment' => _("Requires PHP 4.3.x! Experimental."),
a2ccd603 141 'default' => false ),
a3d6c63e 142 '$smtp_auth_mech' => array( 'name' => _("SMTP Authentication Type"),
a2ccd603 143 'type' => SMOPT_TYPE_STRLIST,
144 'posvals' => array('none' => 'No SMTP auth',
fe0b18b3 145 'login' => 'Login (Plaintext)',
a2ccd603 146 'cram-md5' => 'CRAM-MD5',
147 'digest-md5' => 'DIGEST-MD5'),
148 'default' => 'none'),
a3d6c63e 149 '$pop_before_smtp' => array( 'name' => _("POP3 Before SMTP?"),
87d7a194 150 'type' => SMOPT_TYPE_BOOLEAN,
151 'default' => false ),
0e66bc84 152 '$invert_time' => array( 'name' => _("Invert Time"),
153 'type' => SMOPT_TYPE_BOOLEAN ),
ad0a71ac 154 '$default_use_mdn' => array( 'name' => _("Use Confirmation Flags"),
155 'type' => SMOPT_TYPE_BOOLEAN ),
0e66bc84 156 /* --------------------------------------------------------*/
157 'Group3' => array( 'name' => _("Folders Defaults"),
158 'type' => SMOPT_TYPE_TITLE ),
dcd6f144 159 '$default_folder_prefix' => array( 'name' => _("Default Folder Prefix"),
160 'type' => SMOPT_TYPE_STRING,
161 'size' => 40 ),
162 '$show_prefix_option' => array( 'name' => _("Show Folder Prefix Option"),
163 'type' => SMOPT_TYPE_BOOLEAN ),
164 '$trash_folder' => array( 'name' => _("Trash Folder"),
165 'type' => SMOPT_TYPE_STRING,
166 'size' => 40 ),
167 '$sent_folder' => array( 'name' => _("Sent Folder"),
168 'type' => SMOPT_TYPE_STRING,
169 'size' => 40 ),
170 '$draft_folder' => array( 'name' => _("Draft Folder"),
171 'type' => SMOPT_TYPE_STRING,
172 'size' => 40 ),
173 '$default_move_to_trash' => array( 'name' => _("By default, move to trash"),
174 'type' => SMOPT_TYPE_BOOLEAN ),
175 '$default_move_to_sent' => array( 'name' => _("By default, move to sent"),
176 'type' => SMOPT_TYPE_BOOLEAN ),
177 '$default_save_as_draft' => array( 'name' => _("By default, save as draft"),
178 'type' => SMOPT_TYPE_BOOLEAN ),
179 '$list_special_folders_first' => array( 'name' => _("List Special Folders First"),
180 'type' => SMOPT_TYPE_BOOLEAN ),
181 '$use_special_folder_color' => array( 'name' => _("Show Special Folders Color"),
182 'type' => SMOPT_TYPE_BOOLEAN ),
183 '$auto_expunge' => array( 'name' => _("Auto Expunge"),
184 'type' => SMOPT_TYPE_BOOLEAN ),
185 '$default_sub_of_inbox' => array( 'name' => _("Default Sub. of INBOX"),
186 'type' => SMOPT_TYPE_BOOLEAN ),
187 '$show_contain_subfolders_option' => array( 'name' => _("Show 'Contain Sub.' Option"),
188 'type' => SMOPT_TYPE_BOOLEAN ),
189 '$default_unseen_notify' => array( 'name' => _("Default Unseen Notify"),
5ed13ec8 190 'type' => SMOPT_TYPE_NUMLIST,
191 'posvals' => array( SMPREF_UNSEEN_NONE => _("No Notification"),
192 SMPREF_UNSEEN_INBOX => _("Only INBOX"),
193 SMPREF_UNSEEN_ALL => _("All Folders")) ),
dcd6f144 194 '$default_unseen_type' => array( 'name' => _("Default Unseen Type"),
5ed13ec8 195 'type' => SMOPT_TYPE_NUMLIST ,
196 'posvals' => array( SMPREF_UNSEEN_ONLY => _("Only Unseen"),
197 SMPREF_UNSEEN_TOTAL => _("Unseen and Total") ) ),
dcd6f144 198 '$auto_create_special' => array( 'name' => _("Auto Create Special Folders"),
199 'type' => SMOPT_TYPE_BOOLEAN ),
e91cf665 200 '$default_use_javascript_addr_book' => array( 'name' => _("Default Javascript Adrressbook"),
201 'type' => SMOPT_TYPE_BOOLEAN ),
4e85a37f 202 '$delete_folder' => array( 'name' => _("Auto delete folders"),
203 'type' => SMOPT_TYPE_BOOLEAN ),
a3d6c63e 204 '$noselect_fix_enable' => array( 'name' => _("Enable /NoSelect folder fix"),
205 'type' => SMOPT_TYPE_BOOLEAN,
206 'default' => false),
dcd6f144 207 /* --------------------------------------------------------*/
d0102e1a 208 'Group4' => array( 'name' => _("General Options"),
dcd6f144 209 'type' => SMOPT_TYPE_TITLE ),
210 '$default_charset' => array( 'name' => _("Default Charset"),
edd4a552 211 'type' => SMOPT_TYPE_STRLIST,
491e1525 212 'posvals' => array( 'iso-8859-1' => 'iso-8859-1',
213 'iso-8859-2' => 'iso-8859-2',
214 'iso-8859-7' => 'iso-8859-7',
215 'iso-8859-15' => 'iso-8859-15',
216 'iso-8859-15' => 'iso-8859-15',
edd4a552 217 'ns_4551_1' => 'ns_4551_1',
218 'koi8-r' => 'koi8-r',
219 'euc-KR' => 'euc-KR',
fc0dec58 220 'windows-1251' => 'windows-1251',
83be314a 221 'ISO-2022-JP' => 'ISO-2022-JP' ) ),
dcd6f144 222 '$data_dir' => array( 'name' => _("Data Directory"),
a28a56da 223 'type' => SMOPT_TYPE_PATH,
dcd6f144 224 'size' => 40 ),
225 '$attachment_dir' => array( 'name' => _("Temp Directory"),
a28a56da 226 'type' => SMOPT_TYPE_PATH,
abd7a3f8 227 'size' => 40 ),
dcd6f144 228 '$dir_hash_level' => array( 'name' => _("Hash Level"),
229 'type' => SMOPT_TYPE_NUMLIST,
230 'posvals' => array( 0 => _("Hash Disabled"),
231 1 => _("Low"),
232 2 => _("Moderate"),
233 3 => _("Medium"),
234 4 => _("High") ) ),
edd4a552 235 '$default_left_size' => array( 'name' => _("Default Left Size"),
dcd6f144 236 'type' => SMOPT_TYPE_NUMLIST,
237 'posvals' => $left_size_values ),
238 '$force_username_lowercase' => array( 'name' => _("Usernames in Lowercase"),
239 'type' => SMOPT_TYPE_BOOLEAN ),
240 '$default_use_priority' => array( 'name' => _("Allow use of priority"),
241 'type' => SMOPT_TYPE_BOOLEAN ),
242 '$hide_sm_attributions' => array( 'name' => _("Hide SM attributions"),
243 'type' => SMOPT_TYPE_BOOLEAN ),
6fa38b33 244 'default_use_mdn' => array( 'name' => _("Enable use of delivery receipts"),
245 'type' => SMOPT_TYPE_BOOLEAN ),
8a7d0669 246 '$edit_identity' => array( 'name' => _("Allow editing of identities"),
247 'type' => SMOPT_TYPE_BOOLEAN ),
248 '$edit_name' => array( 'name' => _("Allow editing of full name"),
249 'type' => SMOPT_TYPE_BOOLEAN ),
a3d6c63e 250 '$allow_server_sort' => array( 'name' => _("Use server-side sorting"),
87d7a194 251 'type' => SMOPT_TYPE_BOOLEAN,
252 'default' => false ),
a3d6c63e 253 '$allow_thread_sort' => array( 'name' => _("Use server-side thread sorting"),
87d7a194 254 'type' => SMOPT_TYPE_BOOLEAN,
255 'default' => false ),
a3d6c63e 256 '$allow_charset_search' => array( 'name' => _("Allow server charset search"),
87d7a194 257 'type' => SMOPT_TYPE_BOOLEAN,
258 'default' => false ),
a3d6c63e 259 '$uid_support' => array( 'name' => _("UID support"),
87d7a194 260 'type' => SMOPT_TYPE_BOOLEAN,
261 'default' => false ),
a3d6c63e 262 '$session_name' => array( 'name' => _("PHP session name"),
87d7a194 263 'type' => SMOPT_TYPE_HIDDEN ),
dcd6f144 264 /* --------------------------------------------------------*/
edd4a552 265 'Group5' => array( 'name' => _("Message of the Day"),
266 'type' => SMOPT_TYPE_TITLE ),
267 '$motd' => array( 'name' => _("Message of the Day"),
268 'type' => SMOPT_TYPE_TEXTAREA,
269 'size' => 40 ),
270 /* --------------------------------------------------------*/
497203d4 271 'Group6' => array( 'name' => _("Database"),
272 'type' => SMOPT_TYPE_TITLE ),
273 '$addrbook_dsn' => array( 'name' => _("Address book DSN"),
274 'type' => SMOPT_TYPE_STRING,
88cb1b4d 275 'size' => 40 ),
4f40a59d 276 '$addrbook_table' => array( 'name' => _("Address book table"),
277 'type' => SMOPT_TYPE_STRING,
2586d588 278 'size' => 40,
279 'default' => 'address' ),
f58f1fd8 280 '$prefs_dsn' => array( 'name' => _("Preferences DSN"),
281 'type' => SMOPT_TYPE_STRING,
282 'size' => 40 ),
283 '$prefs_table' => array( 'name' => _("Preferences table"),
284 'type' => SMOPT_TYPE_STRING,
285 'size' => 40,
286 'default' => 'userprefs' ),
99a6c222 287 '$prefs_user_field' => array('name' => _("Preferences username field"),
288 'type' => SMOPT_TYPE_STRING,
289 'size' => 40,
290 'default' => 'user' ),
291 '$prefs_key_field' => array('name' => _("Preferences key field"),
292 'type' => SMOPT_TYPE_STRING,
293 'size' => 40,
294 'default' => 'prefkey' ),
295 '$prefs_val_field' => array('name' => _("Preferences value field"),
296 'type' => SMOPT_TYPE_STRING,
297 'size' => 40,
298 'default' => 'prefval' ),
497203d4 299 /* --------------------------------------------------------*/
300 'Group7' => array( 'name' => _("Themes"),
edd4a552 301 'type' => SMOPT_TYPE_TITLE ),
302 '$theme_css' => array( 'name' => _("Style Sheet URL (css)"),
a28a56da 303 'type' => SMOPT_TYPE_PATH,
edd4a552 304 'size' => 40 ),
a3d6c63e 305 '$theme_default' => array( 'name' => _("Default theme"),
306 'type' => SMOPT_TYPE_INTEGER,
307 'default' => 0,
308 'comment' => _("Use index number of theme") ),
edd4a552 309 /* --------------------------------------------------------*/
88cb1b4d 310 '$config_use_color' => array( 'name' => '',
a3d6c63e 311 'type' => SMOPT_TYPE_HIDDEN ),
312 '$no_list_for_subscribe' => array( 'name' => '',
313 'type' => SMOPT_TYPE_HIDDEN ),
497203d4 314 /* --------------------------------------------------------*/
dcd6f144 315
edd4a552 316 );
dcd6f144 317
4f40a59d 318?>