Added support for IMAP & SMTP use of TLS and fancy auth mechanisms to administrator...
[squirrelmail.git] / plugins / administrator / defines.php
1 <?PHP
2
3 /**
4 * defines.php
5 *
6 * Copyright (c) 1999-2003 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * Philippe Mingo
10 *
11 * $Id$
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_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),
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 '$squirrelmail_default_language' => array( 'name' => _("Default Language"),
83 'type' => SMOPT_TYPE_STRLIST,
84 'size' => 7,
85 'posvals' => $language_values ),
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 'other' => _("Not one of the above servers") ) ),
108 '$optional_delimiter' => array( 'name' => _("IMAP Folder Delimiter"),
109 'type' => SMOPT_TYPE_STRING,
110 'comment' => _("Use \"detect\" to auto-detect."),
111 'size' => 10,
112 'default' => 'detect' ),
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') ),
122 '$useSendmail' => array( 'name' => _("Use Sendmail"),
123 'type' => SMOPT_TYPE_BOOLEAN ),
124 '$sendmail_path' => array( 'name' => _("Sendmail Path"),
125 'type' => SMOPT_TYPE_STRING,
126 'size' => 40 ),
127 '$smtpServerAddress' => array( 'name' => _("SMTP Server Address"),
128 'type' => SMOPT_TYPE_STRING,
129 'size' => 40 ),
130 '$smtpPort' => array( 'name' => _("SMTP Server Port"),
131 'type' => SMOPT_TYPE_INTEGER ),
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'),
143 '$invert_time' => array( 'name' => _("Invert Time"),
144 'type' => SMOPT_TYPE_BOOLEAN ),
145 '$default_use_mdn' => array( 'name' => _("Use Confirmation Flags"),
146 'type' => SMOPT_TYPE_BOOLEAN ),
147 /* --------------------------------------------------------*/
148 'Group3' => array( 'name' => _("Folders Defaults"),
149 'type' => SMOPT_TYPE_TITLE ),
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"),
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")) ),
185 '$default_unseen_type' => array( 'name' => _("Default Unseen Type"),
186 'type' => SMOPT_TYPE_NUMLIST ,
187 'posvals' => array( SMPREF_UNSEEN_ONLY => _("Only Unseen"),
188 SMPREF_UNSEEN_TOTAL => _("Unseen and Total") ) ),
189 '$auto_create_special' => array( 'name' => _("Auto Create Special Folders"),
190 'type' => SMOPT_TYPE_BOOLEAN ),
191 '$default_use_javascript_addr_book' => array( 'name' => _("Default Javascript Adrressbook"),
192 'type' => SMOPT_TYPE_BOOLEAN ),
193 '$delete_folder' => array( 'name' => _("Auto delete folders"),
194 'type' => SMOPT_TYPE_BOOLEAN ),
195 /* --------------------------------------------------------*/
196 'Group4' => array( 'name' => _("General Options"),
197 'type' => SMOPT_TYPE_TITLE ),
198 '$default_charset' => array( 'name' => _("Default Charset"),
199 'type' => SMOPT_TYPE_STRLIST,
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',
205 'ns_4551_1' => 'ns_4551_1',
206 'koi8-r' => 'koi8-r',
207 'euc-KR' => 'euc-KR',
208 'windows-1251' => 'windows-1251',
209 'ISO-2022-JP' => 'ISO-2022-JP' ) ),
210 '$data_dir' => array( 'name' => _("Data Directory"),
211 'type' => SMOPT_TYPE_PATH,
212 'size' => 40 ),
213 '$attachment_dir' => array( 'name' => _("Temp Directory"),
214 'type' => SMOPT_TYPE_PATH,
215 'size' => 40 ),
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") ) ),
223 '$default_left_size' => array( 'name' => _("Default Left Size"),
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 ),
232 'default_use_mdn' => array( 'name' => _("Enable use of delivery receipts"),
233 'type' => SMOPT_TYPE_BOOLEAN ),
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 ),
238 /* --------------------------------------------------------*/
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 /* --------------------------------------------------------*/
245 'Group6' => array( 'name' => _("Database"),
246 'type' => SMOPT_TYPE_TITLE ),
247 '$addrbook_dsn' => array( 'name' => _("Address book DSN"),
248 'type' => SMOPT_TYPE_STRING,
249 'size' => 40 ),
250 '$addrbook_table' => array( 'name' => _("Address book table"),
251 'type' => SMOPT_TYPE_STRING,
252 'size' => 40,
253 'default' => 'address' ),
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' ),
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' ),
273 /* --------------------------------------------------------*/
274 'Group7' => array( 'name' => _("Themes"),
275 'type' => SMOPT_TYPE_TITLE ),
276 '$theme_css' => array( 'name' => _("Style Sheet URL (css)"),
277 'type' => SMOPT_TYPE_PATH,
278 'size' => 40 ),
279 /* --------------------------------------------------------*/
280 '$config_use_color' => array( 'name' => '',
281 'type' => SMOPT_TYPE_HIDDEN )
282 /* --------------------------------------------------------*/
283
284 );
285
286 ?>