9107ba60b159229d29c00a29979b50657a06d277
[squirrelmail.git] / config / conf.pl
1 #!/usr/bin/env perl
2 # conf.pl
3 #
4 # Copyright (c) 1999-2007 The SquirrelMail Project Team
5 # Licensed under the GNU GPL. For full terms see COPYING.
6 #
7 # A simple configure script to configure SquirrelMail
8 #
9 # $Id$
10 ############################################################
11 $conf_pl_version = "1.5.0";
12
13 ############################################################
14 # Check what directory we're supposed to be running in, and
15 # change there if necessary. File::Basename has been in
16 # Perl since at least 5.003_7, and nobody sane runs anything
17 # before that, but just in case.
18 ############################################################
19 my $dir;
20 if ( eval q{require "File/Basename.pm"} ) {
21 $dir = File::Basename::dirname($0);
22 chdir($dir);
23 }
24
25 ############################################################
26 # Some people try to run this as a CGI. That's wrong!
27 ############################################################
28 if ( defined( $ENV{'PATH_INFO'} )
29 || defined( $ENV{'QUERY_STRING'} )
30 || defined( $ENV{'REQUEST_METHOD'} ) ) {
31 print "Content-Type: text/html\n\n";
32 print "You must run this script from the command line.";
33 exit;
34 }
35
36 ############################################################
37 # If we got here, use Cwd to get the full directory path
38 # (the Basename stuff above will sometimes return '.' as
39 # the base directory, which is not helpful here).
40 ############################################################
41 use Cwd;
42 $dir = cwd();
43
44
45 ############################################################
46 # First, lets read in the data already in there...
47 ############################################################
48 if ( -e "config.php" ) {
49 # Make sure that file is readable
50 if (! -r "config.php") {
51 clear_screen();
52 print "WARNING:\n";
53 print "The file \"config/config.php\" was found, but you don't\n";
54 print "have rights to read it.\n";
55 print "\n";
56 print "Press enter to continue";
57 $ctu = <STDIN>;
58 exit;
59 }
60 open( FILE, "config.php" );
61 while ( $line = <FILE> ) {
62 $line =~ s/^\s+//;
63 $line =~ s/^\$//;
64 $var = $line;
65
66 $var =~ s/=/EQUALS/;
67 if ( $var =~ /^([a-z])/i ) {
68 @o = split ( /\s*EQUALS\s*/, $var );
69 if ( $o[0] eq "config_version" ) {
70 $o[1] =~ s/[\n\r]//g;
71 $o[1] =~ s/[\'\"];\s*$//;
72 $o[1] =~ s/;$//;
73 $o[1] =~ s/^[\'\"]//;
74
75 $config_version = $o[1];
76 close(FILE);
77 }
78 }
79 }
80 close(FILE);
81
82 if ( $config_version ne $conf_pl_version ) {
83 clear_screen();
84 print "WARNING:\n";
85 print " The file \"config/config.php\" was found, but it is for\n";
86 print " an older version of SquirrelMail. It is possible to still\n";
87 print " read the defaults from this file but be warned that many\n";
88 print " preferences change between versions. It is recommended that\n";
89 print " you start with a clean config.php for each upgrade that you\n";
90 print " do. To do this, just move config/config.php out of the way.\n";
91 print "\n";
92 print "Continue loading with the old config.php [y/N]? ";
93 $ctu = <STDIN>;
94
95 if ( ( $ctu !~ /^y\n/i ) || ( $ctu =~ /^\n/ ) ) {
96 exit;
97 }
98
99 print "\nDo you want me to stop warning you [y/N]? ";
100 $ctu = <STDIN>;
101 if ( $ctu =~ /^y\n/i ) {
102 $print_config_version = $conf_pl_version;
103 } else {
104 $print_config_version = $config_version;
105 }
106 } else {
107 $print_config_version = $config_version;
108 }
109
110 $config = 1;
111 open( FILE, "config.php" );
112 } elsif ( -e "config_default.php" ) {
113 open( FILE, "config_default.php" );
114 while ( $line = <FILE> ) {
115 $line =~ s/^\s+//;
116 $line =~ s/^\$//;
117 $var = $line;
118
119 $var =~ s/=/EQUALS/;
120 if ( $var =~ /^([a-z])/i ) {
121 @o = split ( /\s*EQUALS\s*/, $var );
122 if ( $o[0] eq "config_version" ) {
123 $o[1] =~ s/[\n\r]//g;
124 $o[1] =~ s/[\'\"];\s*$//;
125 $o[1] =~ s/;$//;
126 $o[1] =~ s/^[\'\"]//;
127
128 $config_version = $o[1];
129 close(FILE);
130 }
131 }
132 }
133 close(FILE);
134
135 if ( $config_version ne $conf_pl_version ) {
136 clear_screen();
137 print "WARNING:\n";
138 print " You are trying to use a 'config_default.php' from an older\n";
139 print " version of SquirrelMail. This is HIGHLY unrecommended. You\n";
140 print " should get the 'config_default.php' that matches the version\n";
141 print " of SquirrelMail that you are running. You can get this from\n";
142 print " the SquirrelMail web page by going to the following URL:\n";
143 print " http://squirrelmail.org.\n";
144 print "\n";
145 print "Continue loading with old config_default.php (a bad idea) [y/N]? ";
146 $ctu = <STDIN>;
147
148 if ( ( $ctu !~ /^y\n/i ) || ( $ctu =~ /^\n/ ) ) {
149 exit;
150 }
151
152 print "\nDo you want me to stop warning you [y/N]? ";
153 $ctu = <STDIN>;
154 if ( $ctu =~ /^y\n/i ) {
155 $print_config_version = $conf_pl_version;
156 } else {
157 $print_config_version = $config_version;
158 }
159 } else {
160 $print_config_version = $config_version;
161 }
162 $config = 2;
163 open( FILE, "config_default.php" );
164 } else {
165 print "No configuration file found. Please get config_default.php\n";
166 print "or config.php before running this again. This program needs\n";
167 print "a default config file to get default values.\n";
168 exit;
169 }
170
171 # Read and parse the current configuration file
172 # (either config.php or config_default.php).
173 while ( $line = <FILE> ) {
174 $line =~ s/^\s+//;
175 $line =~ s/^\$//;
176 $var = $line;
177
178 $var =~ s/=/EQUALS/;
179 if ( $var =~ /^([a-z])/i ) {
180 @options = split ( /\s*EQUALS\s*/, $var );
181 $options[1] =~ s/[\n\r]//g;
182 $options[1] =~ s/[\'\"];\s*$//;
183 $options[1] =~ s/;$//;
184 $options[1] =~ s/^[\'\"]//;
185 # de-escape escaped strings
186 $options[1] =~ s/\\'/'/g;
187 $options[1] =~ s/\\\\/\\/g;
188
189 if ( $options[0] =~ /^user_themes\[[0-9]+\]\[['"]PATH['"]\]/ ) {
190 $sub = $options[0];
191 $sub =~ s/\]\[['"]PATH['"]\]//;
192 $sub =~ s/.*\[//;
193 if ( -e "../css/" ) {
194 $options[1] =~ s/^\.\.\/config/\.\.\/css/;
195 }
196 $user_theme_path[$sub] = &change_to_rel_path($options[1]);
197 } elsif ( $options[0] =~ /^user_themes\[[0-9]+\]\[['"]NAME['"]\]/ ) {
198 $sub = $options[0];
199 $sub =~ s/\]\[['"]NAME['"]\]//;
200 $sub =~ s/.*\[//;
201 $user_theme_name[$sub] = $options[1];
202 } elsif ( $options[0] =~ /^icon_themes\[[0-9]+\]\[['"]PATH['"]\]/ ) {
203 $sub = $options[0];
204 $sub =~ s/\]\[['"]PATH['"]\]//;
205 $sub =~ s/.*\[//;
206 if ( -e "../images/" ) {
207 $options[1] =~ s/^\.\.\/config/\.\.\/images/;
208 }
209 $icon_theme_path[$sub] = &change_to_rel_path($options[1]);
210 } elsif ( $options[0] =~ /^icon_themes\[[0-9]+\]\[['"]NAME['"]\]/ ) {
211 $sub = $options[0];
212 $sub =~ s/\]\[['"]NAME['"]\]//;
213 $sub =~ s/.*\[//;
214 $icon_theme_name[$sub] = $options[1];
215 } elsif ( $options[0] =~ /^aTemplateSet\[[0-9]+\]\[['"]ID['"]\]/ ) {
216 $sub = $options[0];
217 $sub =~ s/\]\[['"]ID['"]\]//;
218 $sub =~ s/.*\[//;
219 if ( -e "../templates" ) {
220 $options[1] =~ s/^\.\.\/config/\.\.\/templates/;
221 }
222 $templateset_id[$sub] = $options[1];
223 ##### FIXME: This section BELOW here so old prefs files don't blow up when running conf.pl
224 ##### Remove after a month or two
225 } elsif ( $options[0] =~ /^aTemplateSet\[[0-9]+\]\[['"]PATH['"]\]/ ) {
226 $sub = $options[0];
227 $sub =~ s/\]\[['"]PATH['"]\]//;
228 $sub =~ s/.*\[//;
229 if ( -e "../templates" ) {
230 $options[1] =~ s/^\.\.\/config/\.\.\/templates/;
231 }
232 $templateset_id[$sub] = $options[1];
233 ##### FIXME: This section ABOVE here so old prefs files don't blow up when running conf.pl
234 ##### Remove after a month or two
235 } elsif ( $options[0] =~ /^aTemplateSet\[[0-9]+\]\[['"]NAME['"]\]/ ) {
236 $sub = $options[0];
237 $sub =~ s/\]\[['"]NAME['"]\]//;
238 $sub =~ s/.*\[//;
239 $templateset_name[$sub] = $options[1];
240 } elsif ( $options[0] =~ /^plugins\[[0-9]*\]/ ) {
241 $sub = $options[0];
242 $sub =~ s/\]//;
243 $sub =~ s/^plugins\[//;
244 if ($sub eq '') {
245 push @plugins, $options[1];
246 } else {
247 $plugins[$sub] = $options[1];
248 }
249 } elsif ($options[0] =~ /^fontsets\[\'[a-z]*\'\]/) {
250 # parse associative $fontsets array
251 $sub = $options[0];
252 $sub =~ s/\'\]//;
253 $sub =~ s/^fontsets\[\'//;
254 $fontsets{$sub} = $options[1];
255 } elsif ( $options[0] =~ /^theme\[[0-9]+\]\[['"]PATH|NAME['"]\]/ ) {
256 ##
257 ## $color themes are no longer supported. Please leave this
258 ## so conf.pl doesn't barf if it encounters a $theme.
259 ##
260 } elsif ( $options[0] =~ /^ldap_server\[[0-9]+\]/ ) {
261 $sub = $options[0];
262 $sub =~ s/\]//;
263 $sub =~ s/^ldap_server\[//;
264 $continue = 0;
265 while ( ( $tmp = <FILE> ) && ( $continue != 1 ) ) {
266 if ( $tmp =~ /\);\s*$/ ) {
267 $continue = 1;
268 }
269
270 if ( $tmp =~ /^\s*[\'\"]host[\'\"]/i ) {
271 $tmp =~ s/^\s*[\'\"]host[\'\"]\s*=>\s*[\'\"]//i;
272 $tmp =~ s/[\'\"],?\s*$//;
273 $tmp =~ s/[\'\"]\);\s*$//;
274 $host = $tmp;
275 } elsif ( $tmp =~ /^\s*[\'\"]base[\'\"]/i ) {
276 $tmp =~ s/^\s*[\'\"]base[\'\"]\s*=>\s*[\'\"]//i;
277 $tmp =~ s/[\'\"],?\s*$//;
278 $tmp =~ s/[\'\"]\);\s*$//;
279 $base = $tmp;
280 } elsif ( $tmp =~ /^\s*[\'\"]charset[\'\"]/i ) {
281 $tmp =~ s/^\s*[\'\"]charset[\'\"]\s*=>\s*[\'\"]//i;
282 $tmp =~ s/[\'\"],?\s*$//;
283 $tmp =~ s/[\'\"]\);\s*$//;
284 $charset = $tmp;
285 } elsif ( $tmp =~ /^\s*[\'\"]port[\'\"]/i ) {
286 $tmp =~ s/^\s*[\'\"]port[\'\"]\s*=>\s*[\'\"]?//i;
287 $tmp =~ s/[\'\"]?,?\s*$//;
288 $tmp =~ s/[\'\"]?\);\s*$//;
289 $port = $tmp;
290 } elsif ( $tmp =~ /^\s*[\'\"]maxrows[\'\"]/i ) {
291 $tmp =~ s/^\s*[\'\"]maxrows[\'\"]\s*=>\s*[\'\"]?//i;
292 $tmp =~ s/[\'\"]?,?\s*$//;
293 $tmp =~ s/[\'\"]?\);\s*$//;
294 $maxrows = $tmp;
295 } elsif ( $tmp =~ /^\s*[\'\"]filter[\'\"]/i ) {
296 $tmp =~ s/^\s*[\'\"]filter[\'\"]\s*=>\s*[\'\"]?//i;
297 $tmp =~ s/[\'\"]?,?\s*$//;
298 $tmp =~ s/[\'\"]?\);\s*$//;
299 $filter = $tmp;
300 } elsif ( $tmp =~ /^\s*[\'\"]name[\'\"]/i ) {
301 $tmp =~ s/^\s*[\'\"]name[\'\"]\s*=>\s*[\'\"]//i;
302 $tmp =~ s/[\'\"],?\s*$//;
303 $tmp =~ s/[\'\"]\);\s*$//;
304 $name = $tmp;
305 } elsif ( $tmp =~ /^\s*[\'\"]binddn[\'\"]/i ) {
306 $tmp =~ s/^\s*[\'\"]binddn[\'\"]\s*=>\s*[\'\"]//i;
307 $tmp =~ s/[\'\"],?\s*$//;
308 $tmp =~ s/[\'\"]\);\s*$//;
309 $binddn = $tmp;
310 } elsif ( $tmp =~ /^\s*[\'\"]bindpw[\'\"]/i ) {
311 $tmp =~ s/^\s*[\'\"]bindpw[\'\"]\s*=>\s*[\'\"]//i;
312 $tmp =~ s/[\'\"],?\s*$//;
313 $tmp =~ s/[\'\"]\);\s*$//;
314 $bindpw = $tmp;
315 } elsif ( $tmp =~ /^\s*[\'\"]protocol[\'\"]/i ) {
316 $tmp =~ s/^\s*[\'\"]protocol[\'\"]\s*=>\s*[\'\"]?//i;
317 $tmp =~ s/[\'\"]?,?\s*$//;
318 $tmp =~ s/[\'\"]?\);\s*$//;
319 $protocol = $tmp;
320 } elsif ( $tmp =~ /^\s*[\'\"]limit_scope[\'\"]/i ) {
321 $tmp =~ s/^\s*[\'\"]limit_scope[\'\"]\s*=>\s*[\'\"]?//i;
322 $tmp =~ s/[\'\"]?,?\s*$//;
323 $tmp =~ s/[\'\"]?\);\s*$//;
324 $limit_scope = $tmp;
325 } elsif ( $tmp =~ /^\s*[\'\"]listing[\'\"]/i ) {
326 $tmp =~ s/^\s*[\'\"]listing[\'\"]\s*=>\s*[\'\"]?//i;
327 $tmp =~ s/[\'\"]?,?\s*$//;
328 $tmp =~ s/[\'\"]?\);\s*$//;
329 $listing = $tmp;
330 } elsif ( $tmp =~ /^\s*[\'\"]writeable[\'\"]/i ) {
331 $tmp =~ s/^\s*[\'\"]writeable[\'\"]\s*=>\s*[\'\"]?//i;
332 $tmp =~ s/[\'\"]?,?\s*$//;
333 $tmp =~ s/[\'\"]?\);\s*$//;
334 $writeable = $tmp;
335 } elsif ( $tmp =~ /^\s*[\'\"]search_tree[\'\"]/i ) {
336 $tmp =~ s/^\s*[\'\"]search_tree[\'\"]\s*=>\s*[\'\"]?//i;
337 $tmp =~ s/[\'\"]?,?\s*$//;
338 $tmp =~ s/[\'\"]?\);\s*$//;
339 $search_tree = $tmp;
340 } elsif ( $tmp =~ /^\s*[\'\"]starttls[\'\"]/i ) {
341 $tmp =~ s/^\s*[\'\"]starttls[\'\"]\s*=>\s*[\'\"]?//i;
342 $tmp =~ s/[\'\"]?,?\s*$//;
343 $tmp =~ s/[\'\"]?\);\s*$//;
344 $starttls = $tmp;
345 }
346 }
347 $ldap_host[$sub] = $host;
348 $ldap_base[$sub] = $base;
349 $ldap_name[$sub] = $name;
350 $ldap_port[$sub] = $port;
351 $ldap_maxrows[$sub] = $maxrows;
352 $ldap_filter[$sub] = $filter;
353 $ldap_charset[$sub] = $charset;
354 $ldap_binddn[$sub] = $binddn;
355 $ldap_bindpw[$sub] = $bindpw;
356 $ldap_protocol[$sub] = $protocol;
357 $ldap_limit_scope[$sub] = $limit_scope;
358 $ldap_listing[$sub] = $listing;
359 $ldap_writeable[$sub] = $writeable;
360 $ldap_search_tree[$sub] = $search_tree;
361 $ldap_starttls[$sub] = $starttls;
362 } elsif ( $options[0] =~ /^(data_dir|attachment_dir|org_logo|signout_page|icon_theme_def)$/ ) {
363 ${ $options[0] } = &change_to_rel_path($options[1]);
364 } else {
365 ${ $options[0] } = $options[1];
366 }
367 }
368 }
369 close FILE;
370
371 # RPC template sets aren't included in user interface skin list,
372 # so add the one from the config file here
373 #
374 if ($rpc_templateset =~ /_rpc$/) {
375 $templateset_name[$#templateset_name + 1] = $rpc_templateset;
376 $templateset_id[$#templateset_id + 1] = $rpc_templateset;
377 }
378
379 # FIXME: unknown introduction date
380 $useSendmail = 'false' if ( lc($useSendmail) ne 'true' );
381 $sendmail_path = "/usr/sbin/sendmail" if ( !$sendmail_path );
382 $pop_before_smtp = 'false' if ( !$pop_before_smtp );
383 $pop_before_smtp_host = '' if ( !$pop_before_smtp_host );
384 $default_unseen_notify = 2 if ( !$default_unseen_notify );
385 $default_unseen_type = 1 if ( !$default_unseen_type );
386 $config_use_color = 0 if ( !$config_use_color );
387 $invert_time = 'false' if ( !$invert_time );
388 $force_username_lowercase = 'false' if ( !$force_username_lowercase );
389 $optional_delimiter = "detect" if ( !$optional_delimiter );
390 $auto_create_special = 'false' if ( !$auto_create_special );
391 $default_use_priority = 'true' if ( !$default_use_priority );
392 $default_use_mdn = 'true' if ( !$default_use_mdn );
393 $delete_folder = 'false' if ( !$delete_folder );
394 $noselect_fix_enable = 'false' if ( !$noselect_fix_enable );
395 $frame_top = "_top" if ( !$frame_top );
396 $provider_uri = '' if ( !$provider_uri );
397 $provider_name = '' if ( !$provider_name || $provider_name eq 'SquirrelMail');
398 $no_list_for_subscribe = 'false' if ( !$no_list_for_subscribe );
399 $allow_charset_search = 'true' if ( !$allow_charset_search );
400 $allow_advanced_search = 0 if ( !$allow_advanced_search) ;
401 $prefs_user_field = 'user' if ( !$prefs_user_field );
402 $prefs_key_field = 'prefkey' if ( !$prefs_key_field );
403 $prefs_val_field = 'prefval' if ( !$prefs_val_field );
404 $session_name = 'SQMSESSID' if ( !$session_name );
405 $skip_SM_header = 'false' if ( !$skip_SM_header );
406 $default_use_javascript_addr_book = 'false' if (! $default_use_javascript_addr_book);
407
408 # since 1.2.0
409 $hide_sm_attributions = 'false' if ( !$hide_sm_attributions );
410 # since 1.2.5
411 $edit_identity = 'true' if ( !$edit_identity );
412 $edit_name = 'true' if ( !$edit_name );
413
414 # since 1.4.0
415 $use_smtp_tls= 'false' if ( !$use_smtp_tls);
416 $smtp_auth_mech = 'none' if ( !$smtp_auth_mech );
417 $use_imap_tls = 'false' if ( !$use_imap_tls );
418 $imap_auth_mech = 'login' if ( !$imap_auth_mech );
419
420 # since 1.5.0
421 $show_alternative_names = 'false' if ( !$show_alternative_names );
422 # $available_languages option available only in 1.5.0. removed due to $languages
423 # implementation changes. options are provided by limit_languages plugin
424 # $available_languages = 'all' if ( !$available_languages );
425 $aggressive_decoding = 'false' if ( !$aggressive_decoding );
426 # available only in 1.5.0 and 1.5.1
427 # $advanced_tree = 'false' if ( !$advanced_tree );
428 $use_php_recode = 'false' if ( !$use_php_recode );
429 $use_php_iconv = 'false' if ( !$use_php_iconv );
430 $buffer_output = 'false' if ( !$buffer_output );
431
432 # since 1.5.1
433 $use_icons = 'false' if ( !$use_icons );
434 $use_iframe = 'false' if ( !$use_iframe );
435 $lossy_encoding = 'false' if ( !$lossy_encoding );
436 $allow_remote_configtest = 'false' if ( !$allow_remote_configtest );
437 $secured_config = 'true' if ( !$secured_config );
438 $sq_https_port = 443 if ( !$sq_https_port );
439 $sq_ignore_http_x_forwarded_headers = 'true' if ( !$sq_ignore_http_x_forwarded_headers );
440
441 $sm_debug_mode = 'SM_DEBUG_MODE_MODERATE' if ( !$sm_debug_mode );
442 #FIXME: When this is STABLE software, remove the line above and uncomment the one below:
443 #$sm_debug_mode = 'SM_DEBUG_MODE_OFF' if ( !$sm_debug_mode );
444 $sm_debug_mode = convert_debug_binary_integer_to_constants($sm_debug_mode);
445
446 $addrbook_global_table = 'global_abook' if ( !$addrbook_global_table );
447 $addrbook_global_writeable = 'false' if ( !$addrbook_global_writeable );
448 $addrbook_global_listing = 'false' if ( !$addrbook_global_listing );
449 $abook_global_file = '' if ( !$abook_global_file);
450 $abook_global_file_writeable = 'false' if ( !$abook_global_file_writeable);
451 $abook_global_file_listing = 'true' if ( !$abook_global_file_listing );
452 $encode_header_key = '' if ( !$encode_header_key );
453 $hide_auth_header = 'false' if ( !$hide_auth_header );
454 $time_zone_type = '0' if ( !$time_zone_type );
455 $prefs_user_size = 128 if ( !$prefs_user_size );
456 $prefs_key_size = 64 if ( !$prefs_key_size );
457 $prefs_val_size = 65536 if ( !$prefs_val_size );
458
459 # add qmail-inject test here for backwards compatibility
460 if ( !$sendmail_args && $sendmail_path =~ /qmail-inject/ ) {
461 $sendmail_args = '';
462 } elsif ( !$sendmail_args ) {
463 $sendmail_args = '-i -t';
464 }
465
466 $default_fontsize = '' if ( !$default_fontsize);
467 $default_fontset = '' if ( !$default_fontset);
468 if ( !%fontsets) {
469 %fontsets = ('serif', 'serif',
470 'sans', 'helvetica,arial,sans-serif',
471 'comicsans', 'comic sans ms,sans-serif',
472 'tahoma', 'tahoma,sans-serif',
473 'verasans', 'bitstream vera sans,verdana,sans-serif');
474 }
475
476 # $use_imap_tls and $use_smtp_tls are switched to integer since 1.5.1
477 $use_imap_tls = 0 if ( $use_imap_tls eq 'false');
478 $use_imap_tls = 1 if ( $use_imap_tls eq 'true');
479 $use_smtp_tls = 0 if ( $use_smtp_tls eq 'false');
480 $use_smtp_tls = 1 if ( $use_smtp_tls eq 'true');
481 # sorting options changed names and reversed values in 1.5.1
482 $disable_thread_sort = 'false' if ( !$disable_thread_sort );
483 $disable_server_sort = 'false' if ( !$disable_server_sort );
484
485 # since 1.5.2
486 $abook_file_line_length = 2048 if ( !$abook_file_line_length );
487 $config_location_base = '' if ( !$config_location_base );
488 $smtp_sitewide_user = '' if ( !$smtp_sitewide_user );
489 $smtp_sitewide_pass = '' if ( !$smtp_sitewide_pass );
490 $icon_theme_def = '' if ( !$icon_theme_def );
491 $disable_plugins = 'false' if ( !$disable_plugins );
492 $disable_plugins_user = '' if ( !$disable_plugins_user );
493 $only_secure_cookies = 'true' if ( !$only_secure_cookies );
494 $ask_user_info = 'true' if ( !$ask_user_info );
495
496 if ( $ARGV[0] eq '--install-plugin' ) {
497 print "Activating plugin " . $ARGV[1] . "\n";
498 if ( -d "../plugins/" . $ARGV[1]) {
499 push @plugins, $ARGV[1];
500 save_data();
501 exit(0);
502 } else {
503 print "No such plugin.\n";
504 exit(1);
505 }
506 } elsif ( $ARGV[0] eq '--remove-plugin' ) {
507 print "Removing plugin " . $ARGV[1] . "\n";
508 foreach $plugin (@plugins) {
509 if ( $plugin ne $ARGV[1] ) {
510 push @newplugins, $plugin;
511 }
512 }
513 @plugins = @newplugins;
514 save_data();
515 exit(0);
516 } elsif ( $ARGV[0] eq '--update-plugins' or $ARGV[0] eq '-u') {
517 build_plugin_hook_array();
518 exit(0);
519 } elsif ( $ARGV[0] eq '--help' or $ARGV[0] eq '-h') {
520 print "SquirrelMail Configuration Script\n";
521 print "Usage:\n";
522 print " * No arguments: initiates the configuration dialog\n";
523 print " * --install-plugin <plugin> : activates the specified plugin\n";
524 print " * --remove-plugin <plugin> : deactivates the specified plugin\n";
525 print " * --update-plugins , -u : rebuilds plugin_hooks.php according\n";
526 print " to plugins activated in config.php\n";
527 print " * --help , -h : Displays this help\n";
528 print "\n";
529 exit(0);
530 }
531
532
533
534 ####################################################################################
535
536 # used in multiple places, define once
537 $list_supported_imap_servers =
538 " bincimap = Binc IMAP server\n" .
539 " courier = Courier IMAP server\n" .
540 " cyrus = Cyrus IMAP server\n" .
541 " dovecot = Dovecot Secure IMAP server\n" .
542 " exchange = Microsoft Exchange IMAP server\n" .
543 " hmailserver = hMailServer\n" .
544 " macosx = Mac OS X Mailserver\n" .
545 " mercury32 = Mercury/32\n" .
546 " uw = University of Washington's IMAP server\n";
547
548 #####################################################################################
549 if ( $config_use_color == 1 ) {
550 $WHT = "\x1B[37;1m";
551 $NRM = "\x1B[0m";
552 } else {
553 $WHT = "";
554 $NRM = "";
555 $config_use_color = 2;
556 }
557
558 # lists can be printed in more than one column; default is just one
559 #
560 $columns = 1;
561
562 # try to get screen width dynamically if possible; default to 80
563 # (user can override with "w#" command)
564 #
565 eval { require "sys/ioctl.ph" };
566 if ($@
567 || !defined &TIOCGWINSZ
568 || !open(TTY, "+</dev/tty")
569 || !ioctl(TTY, &TIOCGWINSZ, $winsize='')) {
570 $screen_width = 80;
571 } else {
572 ($row, $col, $xpixel, $ypixel) = unpack('S4', $winsize);
573 $screen_width = $col;
574 }
575
576 while ( ( $command ne "q" ) && ( $command ne "Q" ) && ( $command ne ":q" ) ) {
577 clear_screen();
578 print $WHT. "SquirrelMail Configuration : " . $NRM;
579 if ( $config == 1 ) { print "Read: config.php"; }
580 elsif ( $config == 2 ) { print "Read: config_default.php"; }
581 print " ($print_config_version)\n";
582 print "---------------------------------------------------------\n";
583
584 if ( $menu == 0 ) {
585 print $WHT. "Main Menu --\n" . $NRM;
586 print "1. Organization Preferences\n";
587 print "2. Server Settings\n";
588 print "3. Folder Defaults\n";
589 print "4. General Options\n";
590 print "5. User Interface\n";
591 print "6. Address Books\n";
592 print "7. Message of the Day (MOTD)\n";
593 print "8. Plugins\n";
594 print "9. Database\n";
595 print "10. Language settings\n";
596 print "11. Tweaks\n";
597 print "\n";
598 print "D. Set pre-defined settings for specific IMAP servers\n";
599 print "\n";
600 } elsif ( $menu == 1 ) {
601 print $WHT. "Organization Preferences\n" . $NRM;
602 print "1. Organization Name : $WHT$org_name$NRM\n";
603 print "2. Organization Logo : $WHT$org_logo$NRM\n";
604 print "3. Org. Logo Width/Height : $WHT($org_logo_width/$org_logo_height)$NRM\n";
605 print "4. Organization Title : $WHT$org_title$NRM\n";
606 print "5. Signout Page : $WHT$signout_page$NRM\n";
607 print "6. Top Frame : $WHT$frame_top$NRM\n";
608 print "7. Provider link : $WHT$provider_uri$NRM\n";
609 print "8. Provider link text : $WHT$provider_name$NRM\n";
610
611 print "\n";
612 print "R Return to Main Menu\n";
613 } elsif ( $menu == 2 ) {
614 print $WHT. "Server Settings\n\n" . $NRM;
615 print $WHT . "General" . $NRM . "\n";
616 print "-------\n";
617 print "1. Domain : $WHT$domain$NRM\n";
618 print "2. Invert Time : $WHT$invert_time$NRM\n";
619 print "3. Sendmail or SMTP : $WHT";
620 if ( lc($useSendmail) eq 'true' ) {
621 print "Sendmail";
622 } else {
623 print "SMTP";
624 }
625 print "$NRM\n";
626 print "\n";
627
628 if ( $show_imap_settings ) {
629 print $WHT . "IMAP Settings". $NRM . "\n--------------\n";
630 print "4. IMAP Server : $WHT$imapServerAddress$NRM\n";
631 print "5. IMAP Port : $WHT$imapPort$NRM\n";
632 print "6. Authentication type : $WHT$imap_auth_mech$NRM\n";
633 print "7. Secure IMAP (TLS) : $WHT" . display_use_tls($use_imap_tls) . "$NRM\n";
634 print "8. Server software : $WHT$imap_server_type$NRM\n";
635 print "9. Delimiter : $WHT$optional_delimiter$NRM\n";
636 print "\n";
637 } elsif ( $show_smtp_settings ) {
638 if ( lc($useSendmail) eq 'true' ) {
639 print $WHT . "Sendmail" . $NRM . "\n--------\n";
640 print "4. Sendmail Path : $WHT$sendmail_path$NRM\n";
641 print "5. Sendmail arguments : $WHT$sendmail_args$NRM\n";
642 print "6. Header encryption key : $WHT$encode_header_key$NRM\n";
643 print "\n";
644 } else {
645 print $WHT . "SMTP Settings" . $NRM . "\n-------------\n";
646 print "4. SMTP Server : $WHT$smtpServerAddress$NRM\n";
647 print "5. SMTP Port : $WHT$smtpPort$NRM\n";
648 print "6. POP before SMTP : $WHT$pop_before_smtp$NRM\n";
649 print "7. SMTP Authentication : $WHT$smtp_auth_mech" . display_smtp_sitewide_userpass() ."$NRM\n";
650 print "8. Secure SMTP (TLS) : $WHT" . display_use_tls($use_smtp_tls) . "$NRM\n";
651 print "9. Header encryption key : $WHT$encode_header_key$NRM\n";
652 print "\n";
653 }
654 }
655
656 if ($show_imap_settings == 0) {
657 print "A. Update IMAP Settings : ";
658 print "$WHT$imapServerAddress$NRM:";
659 print "$WHT$imapPort$NRM ";
660 print "($WHT$imap_server_type$NRM)\n";
661 }
662 if ($show_smtp_settings == 0) {
663 if ( lc($useSendmail) eq 'true' ) {
664 print "B. Change Sendmail Config : $WHT$sendmail_path$NRM\n";
665 } else {
666 print "B. Update SMTP Settings : ";
667 print "$WHT$smtpServerAddress$NRM:";
668 print "$WHT$smtpPort$NRM\n";
669 }
670 }
671 if ( $show_smtp_settings || $show_imap_settings )
672 {
673 print "H. Hide " .
674 ($show_imap_settings ? "IMAP Server" :
675 (lc($useSendmail) eq 'true') ? "Sendmail" : "SMTP") . " Settings\n";
676 }
677
678 print "\n";
679 print "R Return to Main Menu\n";
680 } elsif ( $menu == 3 ) {
681 print $WHT. "Folder Defaults\n" . $NRM;
682 print "1. Default Folder Prefix : $WHT$default_folder_prefix$NRM\n";
683 print "2. Show Folder Prefix Option : $WHT$show_prefix_option$NRM\n";
684 print "3. Trash Folder : $WHT$trash_folder$NRM\n";
685 print "4. Sent Folder : $WHT$sent_folder$NRM\n";
686 print "5. Drafts Folder : $WHT$draft_folder$NRM\n";
687 print "6. By default, move to trash : $WHT$default_move_to_trash$NRM\n";
688 print "7. By default, save sent messages : $WHT$default_move_to_sent$NRM\n";
689 print "8. By default, save as draft : $WHT$default_save_as_draft$NRM\n";
690 print "9. List Special Folders First : $WHT$list_special_folders_first$NRM\n";
691 print "10. Show Special Folders Color : $WHT$use_special_folder_color$NRM\n";
692 print "11. Auto Expunge : $WHT$auto_expunge$NRM\n";
693 print "12. Default Sub. of INBOX : $WHT$default_sub_of_inbox$NRM\n";
694 print "13. Show 'Contain Sub.' Option : $WHT$show_contain_subfolders_option$NRM\n";
695 print "14. Default Unseen Notify : $WHT$default_unseen_notify$NRM\n";
696 print "15. Default Unseen Type : $WHT$default_unseen_type$NRM\n";
697 print "16. Auto Create Special Folders : $WHT$auto_create_special$NRM\n";
698 print "17. Folder Delete Bypasses Trash : $WHT$delete_folder$NRM\n";
699 print "18. Enable /NoSelect folder fix : $WHT$noselect_fix_enable$NRM\n";
700 print "\n";
701 print "R Return to Main Menu\n";
702 } elsif ( $menu == 4 ) {
703 print $WHT. "General Options\n" . $NRM;
704 print "1. Data Directory : $WHT$data_dir$NRM\n";
705 print "2. Attachment Directory : $WHT$attachment_dir$NRM\n";
706 print "3. Directory Hash Level : $WHT$dir_hash_level$NRM\n";
707 print "4. Default Left Size : $WHT$default_left_size$NRM\n";
708 print "5. Usernames in Lowercase : $WHT$force_username_lowercase$NRM\n";
709 print "6. Allow use of priority : $WHT$default_use_priority$NRM\n";
710 print "7. Hide SM attributions : $WHT$hide_sm_attributions$NRM\n";
711 print "8. Allow use of receipts : $WHT$default_use_mdn$NRM\n";
712 print "9. Allow editing of identity : $WHT$edit_identity$NRM\n";
713 print " Allow editing of name : $WHT$edit_name$NRM\n";
714 print " Remove username from header : $WHT$hide_auth_header$NRM\n";
715 print "10. Disable server thread sort : $WHT$disable_thread_sort$NRM\n";
716 print "11. Disable server-side sorting : $WHT$disable_server_sort$NRM\n";
717 print "12. Allow server charset search : $WHT$allow_charset_search$NRM\n";
718 print "13. Allow advanced search : $WHT$allow_advanced_search$NRM\n";
719 print "14. PHP session name : $WHT$session_name$NRM\n";
720 print "15. Time zone configuration : $WHT$time_zone_type$NRM\n";
721 print "16. Location base : $WHT$config_location_base$NRM\n";
722 print "17. Only secure cookies if poss. : $WHT$only_secure_cookies$NRM\n";
723 print "\n";
724 print "R Return to Main Menu\n";
725 } elsif ( $menu == 5 ) {
726 print $WHT. "User Interface\n" . $NRM;
727 print "1. Use Icons? : $WHT$use_icons$NRM\n";
728 # print "3. Default Icon Set : $WHT$icon_theme_def$NRM\n";
729 print "2. Default font size : $WHT$default_fontsize$NRM\n";
730 print "3. Manage template sets (skins)\n";
731 print "4. Manage user themes\n";
732 print "5. Manage font sets\n";
733 print "6. Manage icon themes\n";
734
735 print "\n";
736 print "R Return to Main Menu\n";
737 } elsif ( $menu == 6 ) {
738 print $WHT. "Address Books\n" . $NRM;
739 print "1. Change LDAP Servers\n";
740 for ( $count = 0 ; $count <= $#ldap_host ; $count++ ) {
741 print " > $ldap_host[$count]\n";
742 }
743 print "2. Use Javascript address book search : $WHT$default_use_javascript_addr_book$NRM\n";
744 print "3. Global address book file : $WHT$abook_global_file$NRM\n";
745 print "4. Allow writing into global file address book : $WHT$abook_global_file_writeable$NRM\n";
746 print "5. Allow listing of global file address book : $WHT$abook_global_file_listing$NRM\n";
747 print "6. Allowed address book line length : $WHT$abook_file_line_length$NRM\n";
748 print "\n";
749 print "R Return to Main Menu\n";
750 } elsif ( $menu == 7 ) {
751 print $WHT. "Message of the Day (MOTD)\n" . $NRM;
752 print "\n$motd\n";
753 print "\n";
754 print "1 Edit the MOTD\n";
755 print "\n";
756 print "R Return to Main Menu\n";
757 } elsif ( $menu == 8 ) {
758 if (lc($disable_plugins) eq 'true' && $disable_plugins_user ne '') {
759 print $WHT. "Plugins (WARNING: All plugins are currently disabled\n for the user \"$disable_plugins_user\"!)\n" . $NRM;
760 } elsif (lc($disable_plugins) eq 'true') {
761 print $WHT. "Plugins (WARNING: All plugins are currently disabled!)\n" . $NRM;
762 } else {
763 print $WHT. "Plugins\n" . $NRM;
764 }
765 print " Installed Plugins\n";
766 if ($columns > 1) {
767 $num = print_multi_col_list(1, $columns, $screen_width, 1, @plugins);
768 } else {
769 $num = 0;
770 for ( $count = 0 ; $count <= $#plugins ; $count++ ) {
771 $num = $count + 1;
772 $english_name = get_plugin_english_name($plugins[$count]);
773 if ( $english_name eq "" ) {
774 print " $WHT$num.$NRM $plugins[$count]" . get_plugin_version($plugins[$count]) . "\n";
775 } else {
776 print " $WHT$num.$NRM $english_name ($plugins[$count])" . get_plugin_version($plugins[$count]) . "\n";
777 }
778 }
779 }
780 print "\n Available Plugins:\n";
781 opendir( DIR, "../plugins" );
782 @files = sort(readdir(DIR));
783 $pos = 0;
784 @unused_plugins = ();
785 for ( $i = 0 ; $i <= $#files ; $i++ ) {
786 if ( -d "../plugins/" . $files[$i] && $files[$i] !~ /^\./ && $files[$i] ne ".svn" ) {
787 $match = 0;
788 for ( $k = 0 ; $k <= $#plugins ; $k++ ) {
789 if ( $plugins[$k] eq $files[$i] ) {
790 $match = 1;
791 }
792 }
793 if ( $match == 0 ) {
794 $unused_plugins[$pos] = $files[$i];
795 $pos++;
796 }
797 }
798 }
799
800 if ($columns > 1) {
801 $num = print_multi_col_list($num + 1, $columns, $screen_width, 1, @unused_plugins);
802 } else {
803 for ( $i = 0 ; $i <= $#unused_plugins ; $i++ ) {
804 $num = $num + 1;
805 $english_name = get_plugin_english_name($unused_plugins[$i]);
806 if ( $english_name eq "" ) {
807 print " $WHT$num.$NRM $unused_plugins[$i]" . get_plugin_version($unused_plugins[$i]) . "\n";
808 } else {
809 print " $WHT$num.$NRM $english_name ($unused_plugins[$i])" . get_plugin_version($unused_plugins[$i]) . "\n";
810 }
811 }
812 }
813 closedir DIR;
814
815 print "\n";
816 if (lc($disable_plugins) eq 'true' && $disable_plugins_user ne '') {
817 print "E Enable active plugins (all plugins currently\n disabled for the user \"$disable_plugins_user\")\n";
818 } elsif (lc($disable_plugins) eq 'true') {
819 print "E Enable active plugins (all plugins currently\n disabled)\n";
820 } else {
821 print "D Disable all plugins\n";
822 }
823 print "U Set the user for whom plugins can be disabled\n";
824 print "R Return to Main Menu\n";
825 print "C# List plugins in <#> number of columns\n";
826 print "W# Change screen width to <#> (currently $screen_width)\n";
827 } elsif ( $menu == 9 ) {
828 print $WHT. "Database\n" . $NRM;
829 print "1. DSN for Address Book : $WHT$addrbook_dsn$NRM\n";
830 print "2. Table for Address Book : $WHT$addrbook_table$NRM\n";
831 print "\n";
832 print "3. DSN for Preferences : $WHT$prefs_dsn$NRM\n";
833 print "4. Table for Preferences : $WHT$prefs_table$NRM\n";
834 print "5. Field for username : $WHT$prefs_user_field$NRM ($prefs_user_size)\n";
835 print "6. Field for prefs key : $WHT$prefs_key_field$NRM ($prefs_key_size)\n";
836 print "7. Field for prefs value : $WHT$prefs_val_field$NRM ($prefs_val_size)\n";
837 print "\n";
838 print "8. DSN for Global Address Book : $WHT$addrbook_global_dsn$NRM\n";
839 print "9. Table for Global Address Book : $WHT$addrbook_global_table$NRM\n";
840 print "10. Allow writing into Global Address Book : $WHT$addrbook_global_writeable$NRM\n";
841 print "11. Allow listing of Global Address Book : $WHT$addrbook_global_listing$NRM\n";
842 print "\n";
843 print "R Return to Main Menu\n";
844 } elsif ( $menu == 10 ) {
845 print $WHT. "Language settings\n" . $NRM;
846 print "1. Default Language : $WHT$squirrelmail_default_language$NRM\n";
847 print "2. Default Charset : $WHT$default_charset$NRM\n";
848 print "3. Show alternative language names : $WHT$show_alternative_names$NRM\n";
849 print "4. Enable aggressive decoding : $WHT$aggressive_decoding$NRM\n";
850 print "5. Enable lossy encoding : $WHT$lossy_encoding$NRM\n";
851 print "\n";
852 print "R Return to Main Menu\n";
853 } elsif ( $menu == 11 ) {
854 print $WHT. "Interface tweaks\n" . $NRM;
855 print "1. Display html mails in iframe : $WHT$use_iframe$NRM\n";
856 print "2. Ask user info on first login : $WHT$ask_user_info$NRM\n";
857 print "\n";
858 print $WHT. "PHP tweaks\n" . $NRM;
859 print "4. Use php recode functions : $WHT$use_php_recode$NRM\n";
860 print "5. Use php iconv functions : $WHT$use_php_iconv$NRM\n";
861 print "6. Buffer all output : $WHT$buffer_output$NRM\n";
862 print "\n";
863 print $WHT. "Configuration tweaks\n" . $NRM;
864 print "7. Allow remote configtest : $WHT$allow_remote_configtest$NRM\n";
865 print "8. Debug mode : $WHT$sm_debug_mode$NRM\n";
866 print "9. Secured configuration mode : $WHT$secured_config$NRM\n";
867 print "10. HTTPS port : $WHT$sq_https_port$NRM\n";
868 print "11. Ignore HTTP_X_FORWARDED headers: $WHT$sq_ignore_http_x_forwarded_headers$NRM\n";
869 print "\n";
870 print "R Return to Main Menu\n";
871 }
872 if ( $config_use_color == 1 ) {
873 print "C Turn color off\n";
874 } else {
875 print "C Turn color on\n";
876 }
877 print "S Save data\n";
878 print "Q Quit\n";
879
880 print "\n";
881 print "Command >> " . $WHT;
882 $command = <STDIN>;
883 $command =~ s/[\n\r]//g;
884 $command =~ tr/A-Z/a-z/;
885 print "$NRM\n";
886
887 # Read the commands they entered.
888 if ( $command eq "r" ) {
889 $menu = 0;
890 } elsif ( $command eq "s" ) {
891 save_data();
892 print "Press enter to continue...";
893 $tmp = <STDIN>;
894 $saved = 1;
895 } elsif ( ( $command eq "q" ) && ( $saved == 0 ) ) {
896 print "You have not saved your data.\n";
897 print "Save? [" . $WHT . "Y" . $NRM . "/n]: ";
898 $save = <STDIN>;
899 if ( ( $save =~ /^y/i ) || ( $save =~ /^\s*$/ ) ) {
900 save_data();
901 }
902 } elsif ( $command eq "c" ) {
903 if ( $config_use_color == 1 ) {
904 $config_use_color = 2;
905 $WHT = "";
906 $NRM = "";
907 } else {
908 $config_use_color = 1;
909 $WHT = "\x1B[37;1m";
910 $NRM = "\x1B[0m";
911 }
912 } elsif ( $command =~ /^w([0-9]+)/ ) {
913 $screen_width = $1;
914 } elsif ( $command eq "d" && $menu == 0 ) {
915 set_defaults();
916 } else {
917 $saved = 0;
918 if ( $menu == 0 ) {
919 if ( ( $command > 0 ) && ( $command < 12 ) ) {
920 $menu = $command;
921 }
922 } elsif ( $menu == 1 ) {
923 if ( $command == 1 ) { $org_name = command1(); }
924 elsif ( $command == 2 ) { $org_logo = command2(); }
925 elsif ( $command == 3 ) { ($org_logo_width,$org_logo_height) = command2a(); }
926 elsif ( $command == 4 ) { $org_title = command3(); }
927 elsif ( $command == 5 ) { $signout_page = command4(); }
928 elsif ( $command == 6 ) { $frame_top = command6(); }
929 elsif ( $command == 7 ) { $provider_uri = command7(); }
930 elsif ( $command == 8 ) { $provider_name = command8(); }
931
932 } elsif ( $menu == 2 ) {
933 if ( $command eq "a" ) { $show_imap_settings = 1; $show_smtp_settings = 0; }
934 elsif ( $command eq "b" ) { $show_imap_settings = 0; $show_smtp_settings = 1; }
935 elsif ( $command eq "h" ) { $show_imap_settings = 0; $show_smtp_settings = 0; }
936 elsif ( $command <= 3 ) {
937 if ( $command == 1 ) { $domain = command11(); }
938 elsif ( $command == 2 ) { $invert_time = command110(); }
939 elsif ( $command == 3 ) { $useSendmail = command14(); }
940 $show_imap_settings = 0; $show_smtp_settings = 0;
941 } elsif ( $show_imap_settings ) {
942 if ( $command == 4 ) { $imapServerAddress = command12(); }
943 elsif ( $command == 5 ) { $imapPort = command13(); }
944 elsif ( $command == 6 ) { $imap_auth_mech = command112a(); }
945 elsif ( $command == 7 ) { $use_imap_tls = command_use_tls("IMAP",$use_imap_tls); }
946 elsif ( $command == 8 ) { $imap_server_type = command19(); }
947 elsif ( $command == 9 ) { $optional_delimiter = command111(); }
948 } elsif ( $show_smtp_settings && lc($useSendmail) eq 'true' ) {
949 if ( $command == 4 ) { $sendmail_path = command15(); }
950 elsif ( $command == 5 ) { $sendmail_args = command_sendmail_args(); }
951 elsif ( $command == 6 ) { $encode_header_key = command114(); }
952 } elsif ( $show_smtp_settings ) {
953 if ( $command == 4 ) { $smtpServerAddress = command16(); }
954 elsif ( $command == 5 ) { $smtpPort = command17(); }
955 elsif ( $command == 6 ) { $pop_before_smtp = command18a(); }
956 elsif ( $command == 7 ) { $smtp_auth_mech = command112b(); }
957 elsif ( $command == 8 ) { $use_smtp_tls = command_use_tls("SMTP",$use_smtp_tls); }
958 elsif ( $command == 9 ) { $encode_header_key = command114(); }
959 }
960 } elsif ( $menu == 3 ) {
961 if ( $command == 1 ) { $default_folder_prefix = command21(); }
962 elsif ( $command == 2 ) { $show_prefix_option = command22(); }
963 elsif ( $command == 3 ) { $trash_folder = command23a(); }
964 elsif ( $command == 4 ) { $sent_folder = command23b(); }
965 elsif ( $command == 5 ) { $draft_folder = command23c(); }
966 elsif ( $command == 6 ) { $default_move_to_trash = command24a(); }
967 elsif ( $command == 7 ) { $default_move_to_sent = command24b(); }
968 elsif ( $command == 8 ) { $default_save_as_draft = command24c(); }
969 elsif ( $command == 9 ) { $list_special_folders_first = command27(); }
970 elsif ( $command == 10 ) { $use_special_folder_color = command28(); }
971 elsif ( $command == 11 ) { $auto_expunge = command29(); }
972 elsif ( $command == 12 ) { $default_sub_of_inbox = command210(); }
973 elsif ( $command == 13 ) { $show_contain_subfolders_option = command211(); }
974 elsif ( $command == 14 ) { $default_unseen_notify = command212(); }
975 elsif ( $command == 15 ) { $default_unseen_type = command213(); }
976 elsif ( $command == 16 ) { $auto_create_special = command214(); }
977 elsif ( $command == 17 ) { $delete_folder = command215(); }
978 elsif ( $command == 18 ) { $noselect_fix_enable = command216(); }
979 } elsif ( $menu == 4 ) {
980 if ( $command == 1 ) { $data_dir = command33a(); }
981 elsif ( $command == 2 ) { $attachment_dir = command33b(); }
982 elsif ( $command == 3 ) { $dir_hash_level = command33c(); }
983 elsif ( $command == 4 ) { $default_left_size = command35(); }
984 elsif ( $command == 5 ) { $force_username_lowercase = command36(); }
985 elsif ( $command == 6 ) { $default_use_priority = command37(); }
986 elsif ( $command == 7 ) { $hide_sm_attributions = command38(); }
987 elsif ( $command == 8 ) { $default_use_mdn = command39(); }
988 elsif ( $command == 9 ) { $edit_identity = command310(); }
989 elsif ( $command == 10 ) { $disable_thread_sort = command312(); }
990 elsif ( $command == 11 ) { $disable_server_sort = command313(); }
991 elsif ( $command == 12 ) { $allow_charset_search = command314(); }
992 elsif ( $command == 13 ) { $allow_advanced_search = command316(); }
993 elsif ( $command == 14 ) { $session_name = command317(); }
994 elsif ( $command == 15 ) { $time_zone_type = command318(); }
995 elsif ( $command == 16 ) { $config_location_base = command_config_location_base(); }
996 elsif ( $command == 17 ) { $only_secure_cookies = command319(); }
997 } elsif ( $menu == 5 ) {
998 if ( $command == 1 ) { $use_icons = commandB3(); }
999 # elsif ( $command == 3 ) { $icon_theme_def = command53(); }
1000 elsif ( $command == 2 ) { $default_fontsize = command_default_fontsize(); }
1001 elsif ( $command == 3 ) { $templateset_default = command_templates(); }
1002 elsif ( $command == 4 ) { command_userThemes(); }
1003 elsif ( $command == 5 ) { command_fontsets(); }
1004 elsif ( $command == 6 ) { command_iconSets(); }
1005 } elsif ( $menu == 6 ) {
1006 if ( $command == 1 ) { command61(); }
1007 elsif ( $command == 2 ) { command62(); }
1008 elsif ( $command == 3 ) { $abook_global_file=command63(); }
1009 elsif ( $command == 4 ) { command64(); }
1010 elsif ( $command == 5 ) { command65(); }
1011 elsif ( $command == 6 ) { command_abook_file_line_length(); }
1012 } elsif ( $menu == 7 ) {
1013 if ( $command == 1 ) { $motd = command71(); }
1014 } elsif ( $menu == 8 ) {
1015 if ( $command =~ /^[0-9]+/ ) { @plugins = command81(); }
1016 elsif ( $command eq "u" ) { $disable_plugins_user = command82(); }
1017 elsif ( $command eq "d" ) { $disable_plugins = 'true'; }
1018 elsif ( $command eq "e" ) { $disable_plugins = 'false'; }
1019 elsif ( $command =~ /^c([0-9]+)/ ) { $columns = $1; }
1020 } elsif ( $menu == 9 ) {
1021 if ( $command == 1 ) { $addrbook_dsn = command91(); }
1022 elsif ( $command == 2 ) { $addrbook_table = command92(); }
1023 elsif ( $command == 3 ) { $prefs_dsn = command93(); }
1024 elsif ( $command == 4 ) { $prefs_table = command94(); }
1025 elsif ( $command == 5 ) { $prefs_user_field = command95(); }
1026 elsif ( $command == 6 ) { $prefs_key_field = command96(); }
1027 elsif ( $command == 7 ) { $prefs_val_field = command97(); }
1028 elsif ( $command == 8 ) { $addrbook_global_dsn = command98(); }
1029 elsif ( $command == 9 ) { $addrbook_global_table = command99(); }
1030 elsif ( $command == 10 ) { $addrbook_global_writeable = command910(); }
1031 elsif ( $command == 11 ) { $addrbook_global_listing = command911(); }
1032 } elsif ( $menu == 10 ) {
1033 if ( $command == 1 ) { $squirrelmail_default_language = commandA1(); }
1034 elsif ( $command == 2 ) { $default_charset = commandA2(); }
1035 elsif ( $command == 3 ) { $show_alternative_names = commandA3(); }
1036 elsif ( $command == 4 ) { $aggressive_decoding = commandA4(); }
1037 elsif ( $command == 5 ) { $lossy_encoding = commandA5(); }
1038 } elsif ( $menu == 11 ) {
1039 if ( $command == 1 ) { $use_iframe = commandB2(); }
1040 elsif ( $command == 2 ) { $ask_user_info = command_ask_user_info(); }
1041 elsif ( $command == 4 ) { $use_php_recode = commandB4(); }
1042 elsif ( $command == 5 ) { $use_php_iconv = commandB5(); }
1043 elsif ( $command == 6 ) { $buffer_output = commandB6(); }
1044 elsif ( $command == 7 ) { $allow_remote_configtest = commandB7(); }
1045 elsif ( $command == 8 ) { $sm_debug_mode = commandB8(); }
1046 elsif ( $command == 9 ) { $secured_config = commandB9(); }
1047 elsif ( $command == 10 ) { $sq_https_port = commandB10(); }
1048 elsif ( $command == 11 ) { $sq_ignore_http_x_forwarded_headers = commandB11(); }
1049 }
1050 }
1051 }
1052
1053 # we exit here
1054 print "\nExiting conf.pl.\n".
1055 "You might want to test your configuration by browsing to\n".
1056 "http://your-squirrelmail-location/src/configtest.php\n".
1057 "Happy SquirrelMailing!\n\n";
1058
1059
1060 ####################################################################################
1061
1062 # org_name
1063 sub command1 {
1064 print "We have tried to make the name SquirrelMail as transparent as\n";
1065 print "possible. If you set up an organization name, most places where\n";
1066 print "SquirrelMail would take credit will be credited to your organization.\n";
1067 print "\n";
1068 print "If your Organization Name includes a '\$', please precede it with a \\. \n";
1069 print "Other '\$' will be considered the beginning of a variable that\n";
1070 print "must be defined before the \$org_name is printed.\n";
1071 print "\n";
1072 print "[$WHT$org_name$NRM]: $WHT";
1073 $new_org_name = <STDIN>;
1074 if ( $new_org_name eq "\n" ) {
1075 $new_org_name = $org_name;
1076 } else {
1077 $new_org_name =~ s/[\r\n]//g;
1078 $new_org_name =~ s/\"/&quot;/g;
1079 }
1080 return $new_org_name;
1081 }
1082
1083 # org_logo
1084 sub command2 {
1085 print "Your organization's logo is an image that will be displayed at\n";
1086 print "different times throughout SquirrelMail. ";
1087 print "\n";
1088 print "Please be aware of the following: \n";
1089 print " - Relative URLs are relative to the config dir\n";
1090 print " to use the default logo, use ../images/sm_logo.png\n";
1091 print " - To specify a logo defined outside the SquirrelMail source tree\n";
1092 print " use the absolute URL the webserver would use to include the file\n";
1093 print " e.g. http://example.com/images/mylogo.gif or /images/mylogo.jpg\n";
1094 print "\n";
1095 print "[$WHT$org_logo$NRM]: $WHT";
1096 $new_org_logo = <STDIN>;
1097 if ( $new_org_logo eq "\n" ) {
1098 $new_org_logo = $org_logo;
1099 } else {
1100 $new_org_logo =~ s/[\r\n]//g;
1101 }
1102 return $new_org_logo;
1103 }
1104
1105 # org_logo_width
1106 sub command2a {
1107 print "Your organization's logo is an image that will be displayed at\n";
1108 print "different times throughout SquirrelMail. Width\n";
1109 print "and Height of your logo image. Use '0' to disable.\n";
1110 print "\n";
1111 print "Width: [$WHT$org_logo_width$NRM]: $WHT";
1112 $new_org_logo_width = <STDIN>;
1113 $new_org_logo_width =~ tr/0-9//cd; # only want digits!
1114 if ( $new_org_logo_width eq '' ) {
1115 $new_org_logo_width = $org_logo_width;
1116 }
1117 if ( $new_org_logo_width > 0 ) {
1118 print "Height: [$WHT$org_logo_height$NRM]: $WHT";
1119 $new_org_logo_height = <STDIN>;
1120 $new_org_logo_height =~ tr/0-9//cd; # only want digits!
1121 if( $new_org_logo_height eq '' ) {
1122 $new_org_logo_height = $org_logo_height;
1123 }
1124 } else {
1125 $new_org_logo_height = 0;
1126 }
1127 return ($new_org_logo_width, $new_org_logo_height);
1128 }
1129
1130 # org_title
1131 sub command3 {
1132 print "A title is what is displayed at the top of the browser window in\n";
1133 print "the titlebar. Usually this will end up looking something like:\n";
1134 print "\"Netscape: $org_title\"\n";
1135 print "\n";
1136 print "If your Organization Title includes a '\$', please precede it with a \\. \n";
1137 print "Other '\$' will be considered the beginning of a variable that\n";
1138 print "must be defined before the \$org_title is printed.\n";
1139 print "\n";
1140 print "[$WHT$org_title$NRM]: $WHT";
1141 $new_org_title = <STDIN>;
1142 if ( $new_org_title eq "\n" ) {
1143 $new_org_title = $org_title;
1144 } else {
1145 $new_org_title =~ s/[\r\n]//g;
1146 $new_org_title =~ s/\"/\'/g;
1147 }
1148 return $new_org_title;
1149 }
1150
1151 # signout_page
1152 sub command4 {
1153 print "When users click the Sign Out button they will be logged out and\n";
1154 print "then sent to signout_page. If signout_page is left empty,\n";
1155 print "(hit space and then return) they will be taken, as normal,\n";
1156 print "to the default and rather sparse SquirrelMail signout page.\n";
1157 print "\n";
1158 print "[$WHT$signout_page$NRM]: $WHT";
1159 $new_signout_page = <STDIN>;
1160 if ( $new_signout_page eq "\n" ) {
1161 $new_signout_page = $signout_page;
1162 } else {
1163 $new_signout_page =~ s/[\r\n]//g;
1164 $new_signout_page =~ s/^\s+$//g;
1165 }
1166 return $new_signout_page;
1167 }
1168
1169 # Default top frame
1170 sub command6 {
1171 print "SquirrelMail defaults to using the whole of the browser window.\n";
1172 print "This allows you to keep it within a specified frame. The default\n";
1173 print "is '_top'\n";
1174 print "\n";
1175 print "[$WHT$frame_top$NRM]: $WHT";
1176 $new_frame_top = <STDIN>;
1177 if ( $new_frame_top eq "\n" ) {
1178 $new_frame_top = '_top';
1179 } else {
1180 $new_frame_top =~ s/[\r\n]//g;
1181 $new_frame_top =~ s/^\s+$//g;
1182 }
1183 return $new_frame_top;
1184 }
1185
1186 # Default link to provider
1187 sub command7 {
1188 print "Here you can set the link on the top-right of the message list.\n";
1189 print "If empty, it will not be displayed.\n";
1190 print "\n";
1191 print "[$WHT$provider_uri$NRM]: $WHT";
1192 $new_provider_uri = <STDIN>;
1193 if ( $new_provider_uri eq "\n" ) {
1194 $new_provider_uri = '';
1195 } else {
1196 $new_provider_uri =~ s/[\r\n]//g;
1197 $new_provider_uri =~ s/^\s+$//g;
1198 }
1199 return $new_provider_uri;
1200 }
1201
1202 sub command8 {
1203 print "Here you can set the name of the link on the top-right of the message list.\n";
1204 print "The default is empty (do not display anything).'\n";
1205 print "\n";
1206 print "[$WHT$provider_name$NRM]: $WHT";
1207 $new_provider_name = <STDIN>;
1208 if ( $new_provider_name eq "\n" ) {
1209 $new_provider_name = '';
1210 } else {
1211 $new_provider_name =~ s/[\r\n]//g;
1212 $new_provider_name =~ s/^\s+$//g;
1213 $new_provider_name =~ s/\'/\\'/g;
1214 }
1215 return $new_provider_name;
1216 }
1217
1218 ####################################################################################
1219
1220 # domain
1221 sub command11 {
1222 print "The domain name is the suffix at the end of all email addresses. If\n";
1223 print "for example, your email address is jdoe\@example.com, then your domain\n";
1224 print "would be example.com.\n";
1225 print "\n";
1226 print "[$WHT$domain$NRM]: $WHT";
1227 $new_domain = <STDIN>;
1228 if ( $new_domain eq "\n" ) {
1229 $new_domain = $domain;
1230 } else {
1231 $new_domain =~ s/\s//g;
1232 }
1233 return $new_domain;
1234 }
1235
1236 # imapServerAddress
1237 sub command12 {
1238 print "This is the hostname where your IMAP server can be contacted.\n";
1239 print "[$WHT$imapServerAddress$NRM]: $WHT";
1240 $new_imapServerAddress = <STDIN>;
1241 if ( $new_imapServerAddress eq "\n" ) {
1242 $new_imapServerAddress = $imapServerAddress;
1243 } else {
1244 $new_imapServerAddress =~ s/[\r\n]//g;
1245 }
1246 return $new_imapServerAddress;
1247 }
1248
1249 # imapPort
1250 sub command13 {
1251 print "This is the port that your IMAP server is on. Usually this is 143.\n";
1252 print "[$WHT$imapPort$NRM]: $WHT";
1253 $new_imapPort = <STDIN>;
1254 if ( $new_imapPort eq "\n" ) {
1255 $new_imapPort = $imapPort;
1256 } else {
1257 $new_imapPort =~ s/[\r\n]//g;
1258 }
1259 return $new_imapPort;
1260 }
1261
1262 # useSendmail
1263 sub command14 {
1264 print "You now need to choose the method that you will use for sending\n";
1265 print "messages in SquirrelMail. You can either connect to an SMTP server\n";
1266 print "or use sendmail directly.\n";
1267 if ( lc($useSendmail) eq 'true' ) {
1268 $default_value = "1";
1269 } else {
1270 $default_value = "2";
1271 }
1272 print "\n";
1273 print " 1. Sendmail\n";
1274 print " 2. SMTP\n";
1275 print "Your choice [1/2] [$WHT$default_value$NRM]: $WHT";
1276 $use_sendmail = <STDIN>;
1277 if ( ( $use_sendmail =~ /^1\n/i )
1278 || ( ( $use_sendmail =~ /^\n/ ) && ( $default_value eq "1" ) ) ) {
1279 $useSendmail = 'true';
1280 } else {
1281 $useSendmail = 'false';
1282 }
1283 return $useSendmail;
1284 }
1285
1286 # sendmail_path
1287 sub command15 {
1288 print "Specify where the sendmail executable is located. Usually /usr/sbin/sendmail\n";
1289 print "[$WHT$sendmail_path$NRM]: $WHT";
1290 $new_sendmail_path = <STDIN>;
1291 if ( $new_sendmail_path eq "\n" ) {
1292 $new_sendmail_path = $sendmail_path;
1293 } else {
1294 $new_sendmail_path =~ s/[\r\n]//g;
1295 }
1296 return $new_sendmail_path;
1297 }
1298
1299 # Extra sendmail arguments
1300 sub command_sendmail_args {
1301 print "Specify additional sendmail program arguments.\n";
1302 print "\n";
1303 print "Make sure that arguments are supported by your sendmail program. -f argument \n";
1304 print "is added automatically by SquirrelMail scripts. Variable defaults to standard\n";
1305 print "/usr/sbin/sendmail arguments. If you use qmail-inject, nbsmtp or any other \n";
1306 print "sendmail wrapper, which does not support -i and -t arguments, set variable to\n";
1307 print "empty string or use arguments suitable for your mailer.\n";
1308 print "\n";
1309 print "[$WHT$sendmail_args$NRM]: $WHT";
1310 $new_sendmail_args = <STDIN>;
1311 if ( $new_sendmail_args eq "\n" ) {
1312 $new_sendmail_args = $sendmail_args;
1313 } else {
1314 # strip linefeeds and crs.
1315 $new_sendmail_args =~ s/[\r\n]//g;
1316 }
1317 return trim($new_sendmail_args);
1318 }
1319
1320 # smtpServerAddress
1321 sub command16 {
1322 print "This is the hostname of your SMTP server.\n";
1323 print "[$WHT$smtpServerAddress$NRM]: $WHT";
1324 $new_smtpServerAddress = <STDIN>;
1325 if ( $new_smtpServerAddress eq "\n" ) {
1326 $new_smtpServerAddress = $smtpServerAddress;
1327 } else {
1328 $new_smtpServerAddress =~ s/[\r\n]//g;
1329 }
1330 return $new_smtpServerAddress;
1331 }
1332
1333 # smtpPort
1334 sub command17 {
1335 print "This is the port to connect to for SMTP. Usually 25.\n";
1336 print "[$WHT$smtpPort$NRM]: $WHT";
1337 $new_smtpPort = <STDIN>;
1338 if ( $new_smtpPort eq "\n" ) {
1339 $new_smtpPort = $smtpPort;
1340 } else {
1341 $new_smtpPort =~ s/[\r\n]//g;
1342 }
1343 return $new_smtpPort;
1344 }
1345
1346 # pop before SMTP
1347 sub command18a {
1348 print "Do you wish to use POP3 before SMTP? Your server must\n";
1349 print "support this in order for SquirrelMail to work with it.\n";
1350
1351 $YesNo = 'n';
1352 $YesNo = 'y' if ( lc($pop_before_smtp) eq 'true' );
1353
1354 print "Use POP before SMTP (y/n) [$WHT$YesNo$NRM]: $WHT";
1355
1356 $new_pop_before_smtp = <STDIN>;
1357 $new_pop_before_smtp =~ tr/yn//cd;
1358 if ( $new_pop_before_smtp eq "y" ) {
1359 $new_pop_before_smtp = "true";
1360 } elsif ( $new_pop_before_smtp eq "n" ) {
1361 $new_pop_before_smtp = "false";
1362 } else {
1363 $new_pop_before_smtp = $pop_before_smtp;
1364 }
1365
1366 # if using POP before SMTP, allow setting of custom POP server address
1367 if ($new_pop_before_smtp eq "true") {
1368 print "$NRM\nIf the address of the POP server is not the same as\n";
1369 print "your SMTP server, you may specify it here. Leave blank (to\n";
1370 print "clear this, enter only spaces) to use the same address as\n";
1371 print "your SMTP server.\n";
1372 print "POP before SMTP server address [$WHT$pop_before_smtp_host$NRM]: $WHT";
1373
1374 $new_pop_before_smtp_host = <STDIN>;
1375 if ( $new_pop_before_smtp_host eq "\n" ) {
1376 $new_pop_before_smtp_host = $pop_before_smtp_host;
1377 } elsif ($new_pop_before_smtp_host =~ /^\s+$/) {
1378 $new_pop_before_smtp_host = '';
1379 } else {
1380 $new_pop_before_smtp_host =~ s/[\r|\n]//g;
1381 }
1382 $pop_before_smtp_host = $new_pop_before_smtp_host;
1383 }
1384
1385 return $new_pop_before_smtp;
1386 }
1387
1388 # imap_server_type
1389 sub command19 {
1390 print "Each IMAP server has its own quirks. As much as we tried to stick\n";
1391 print "to standards, it doesn't help much if the IMAP server doesn't follow\n";
1392 print "the same principles. We have made some work-arounds for some of\n";
1393 print "these servers. If you would like to use them, please select your\n";
1394 print "IMAP server. If you do not wish to use these work-arounds, you can\n";
1395 print "set this to \"other\", and none will be used.\n";
1396 print $list_supported_imap_servers;
1397 print "\n";
1398 print " other = Not one of the above servers\n";
1399 print "\n";
1400 print "[$WHT$imap_server_type$NRM]: $WHT";
1401 $new_imap_server_type = <STDIN>;
1402
1403 if ( $new_imap_server_type eq "\n" ) {
1404 $new_imap_server_type = $imap_server_type;
1405 } else {
1406 $new_imap_server_type =~ s/[\r\n]//g;
1407 }
1408 return $new_imap_server_type;
1409 }
1410
1411 # invert_time
1412 sub command110 {
1413 print "Sometimes the date of messages sent is messed up (off by a few hours\n";
1414 print "on some machines). Typically this happens if the system doesn't support\n";
1415 print "tm_gmtoff. It will happen only if your time zone is \"negative\".\n";
1416 print "This most often occurs on Solaris 7 machines in the United States.\n";
1417 print "By default, this is off. It should be kept off unless problems surface\n";
1418 print "about the time that messages are sent.\n";
1419 print " no = Do NOT fix time -- almost always correct\n";
1420 print " yes = Fix the time for this system\n";
1421
1422 $YesNo = 'n';
1423 $YesNo = 'y' if ( lc($invert_time) eq 'true' );
1424
1425 print "Fix the time for this system (y/n) [$WHT$YesNo$NRM]: $WHT";
1426
1427 $new_invert_time = <STDIN>;
1428 $new_invert_time =~ tr/yn//cd;
1429 return 'true' if ( $new_invert_time eq "y" );
1430 return 'false' if ( $new_invert_time eq "n" );
1431 return $invert_time;
1432 }
1433
1434 sub command111 {
1435 print "This is the delimiter that your IMAP server uses to distinguish between\n";
1436 print "folders. For example, Cyrus uses '.' as the delimiter and a complete\n";
1437 print "folder would look like 'INBOX.Friends.Bob', while UW uses '/' and would\n";
1438 print "look like 'INBOX/Friends/Bob'. Normally this should be left at 'detect'\n";
1439 print "but if you are sure you know what delimiter your server uses, you can\n";
1440 print "specify it here.\n";
1441 print "\nTo have it autodetect the delimiter, set it to 'detect'.\n\n";
1442 print "[$WHT$optional_delimiter$NRM]: $WHT";
1443 $new_optional_delimiter = <STDIN>;
1444
1445 if ( $new_optional_delimiter eq "\n" ) {
1446 $new_optional_delimiter = $optional_delimiter;
1447 } else {
1448 $new_optional_delimiter =~ s/[\r\n]//g;
1449 }
1450 return $new_optional_delimiter;
1451 }
1452 # IMAP authentication type
1453 # Possible values: login, plain, cram-md5, digest-md5
1454 # Now offers to detect supported mechs, assuming server & port are set correctly
1455
1456 sub command112a {
1457 if ($use_imap_tls ne "0") {
1458 # 1. Script does not handle TLS.
1459 # 2. Server does not have to declare all supported authentication mechs when
1460 # STARTTLS is used. Supported mechs are declared only after STARTTLS.
1461 print "Auto-detection of login methods is unavailable when using TLS or STARTTLS.\n";
1462 } else {
1463 print "If you have already set the hostname and port number, I can try to\n";
1464 print "detect the mechanisms your IMAP server supports.\n";
1465 print "I will try to detect CRAM-MD5 and DIGEST-MD5 support. I can't test\n";
1466 print "for \"login\" or \"plain\" without knowing a username and password.\n";
1467 print "Auto-detecting is optional - you can safely say \"n\" here.\n";
1468 print "\nTry to detect supported mechanisms? [y/N]: ";
1469 $inval=<STDIN>;
1470 chomp($inval);
1471 if ($inval =~ /^y\b/i) {
1472 # Yes, let's try to detect.
1473 print "Trying to detect IMAP capabilities...\n";
1474 my $host = $imapServerAddress . ':'. $imapPort;
1475 print "CRAM-MD5:\t";
1476 my $tmp = detect_auth_support('IMAP',$host,'CRAM-MD5');
1477 if (defined($tmp)) {
1478 if ($tmp eq 'YES') {
1479 print "$WHT SUPPORTED$NRM\n";
1480 } else {
1481 print "$WHT NOT SUPPORTED$NRM\n";
1482 }
1483 } else {
1484 print $WHT . " ERROR DETECTING$NRM\n";
1485 }
1486
1487 print "DIGEST-MD5:\t";
1488 $tmp = detect_auth_support('IMAP',$host,'DIGEST-MD5');
1489 if (defined($tmp)) {
1490 if ($tmp eq 'YES') {
1491 print "$WHT SUPPORTED$NRM\n";
1492 } else {
1493 print "$WHT NOT SUPPORTED$NRM\n";
1494 }
1495 } else {
1496 print $WHT . " ERROR DETECTING$NRM\n";
1497 }
1498
1499 }
1500 }
1501 print "\nWhat authentication mechanism do you want to use for IMAP connections?\n\n";
1502 print $WHT . "login" . $NRM . " - Plaintext. If you can do better, you probably should.\n";
1503 print $WHT . "plain" . $NRM . " - SASL PLAIN. If you need this, you already know it.\n";
1504 print $WHT . "cram-md5" . $NRM . " - Slightly better than plaintext methods.\n";
1505 print $WHT . "digest-md5" . $NRM . " - Privacy protection - better than cram-md5.\n";
1506 print "\n*** YOUR IMAP SERVER MUST SUPPORT THE MECHANISM YOU CHOOSE HERE ***\n";
1507 print "If you don't understand or are unsure, you probably want \"login\"\n\n";
1508 print "login, plain, cram-md5, or digest-md5 [$WHT$imap_auth_mech$NRM]: $WHT";
1509 $inval=<STDIN>;
1510 chomp($inval);
1511 if ( ($inval =~ /^cram-md5\b/i) || ($inval =~ /^digest-md5\b/i) || ($inval =~ /^login\b/i) || ($inval =~ /^plain\b/i)) {
1512 return lc($inval);
1513 } else {
1514 # user entered garbage or default value so nothing needs to be set
1515 return $imap_auth_mech;
1516 }
1517 }
1518
1519
1520 # SMTP authentication type
1521 # Possible choices: none, plain, cram-md5, digest-md5
1522 sub command112b {
1523 if ($use_smtp_tls ne "0") {
1524 print "Auto-detection of login methods is unavailable when using TLS or STARTTLS.\n";
1525 } elsif (eval ("use IO::Socket; 1")) {
1526 # try loading IO::Socket module
1527 print "If you have already set the hostname and port number, I can try to\n";
1528 print "automatically detect some of the mechanisms your SMTP server supports.\n";
1529 print "Auto-detection is *optional* - you can safely say \"n\" here.\n";
1530 print "\nTry to detect auth mechanisms? [y/N]: ";
1531 $inval=<STDIN>;
1532 chomp($inval);
1533 if ($inval =~ /^y\b/i) {
1534 # Yes, let's try to detect.
1535 print "Trying to detect supported methods (SMTP)...\n";
1536
1537 # Special case!
1538 # Check none by trying to relay to junk@microsoft.com
1539 $host = $smtpServerAddress . ':' . $smtpPort;
1540 my $sock = IO::Socket::INET->new($host);
1541 print "Testing none:\t\t$WHT";
1542 if (!defined($sock)) {
1543 print " ERROR TESTING\n";
1544 close $sock;
1545 } else {
1546 $got = <$sock>; # Discard greeting
1547 print $sock "HELO $domain\r\n";
1548 $got = <$sock>; # Discard
1549 print $sock "MAIL FROM:<tester\@squirrelmail.org>\r\n";
1550 $got = <$sock>; # Discard
1551 print $sock "RCPT TO:<junk\@microsoft.com\r\n";
1552 $got = <$sock>; # This is the important line
1553 if ($got =~ /^250\b/) { # SMTP will relay without auth
1554 print "SUPPORTED$NRM\n";
1555 } else {
1556 print "NOT SUPPORTED$NRM\n";
1557 }
1558 print $sock "RSET\r\n";
1559 print $sock "QUIT\r\n";
1560 close $sock;
1561 }
1562 # Try login (SquirrelMail default)
1563 print "Testing login:\t\t";
1564 $tmp=detect_auth_support('SMTP',$host,'LOGIN');
1565 if (defined($tmp)) {
1566 if ($tmp eq 'YES') {
1567 print $WHT . "SUPPORTED$NRM\n";
1568 } else {
1569 print $WHT . "NOT SUPPORTED$NRM\n";
1570 }
1571 } else {
1572 print $WHT . "ERROR DETECTING$NRM\n";
1573 }
1574
1575 # Try CRAM-MD5
1576 print "Testing CRAM-MD5:\t";
1577 $tmp=detect_auth_support('SMTP',$host,'CRAM-MD5');
1578 if (defined($tmp)) {
1579 if ($tmp eq 'YES') {
1580 print $WHT . "SUPPORTED$NRM\n";
1581 } else {
1582 print $WHT . "NOT SUPPORTED$NRM\n";
1583 }
1584 } else {
1585 print $WHT . "ERROR DETECTING$NRM\n";
1586 }
1587
1588
1589 print "Testing DIGEST-MD5:\t";
1590 $tmp=detect_auth_support('SMTP',$host,'DIGEST-MD5');
1591 if (defined($tmp)) {
1592 if ($tmp eq 'YES') {
1593 print $WHT . "SUPPORTED$NRM\n";
1594 } else {
1595 print $WHT . "NOT SUPPORTED$NRM\n";
1596 }
1597 } else {
1598 print $WHT . "ERROR DETECTING$NRM\n";
1599 }
1600 }
1601 }
1602 print "\nWhat authentication mechanism do you want to use for SMTP connections?\n";
1603 print $WHT . "none" . $NRM . " - Your SMTP server does not require authorization.\n";
1604 print $WHT . "login" . $NRM . " - Plaintext. If you can do better, you probably should.\n";
1605 print $WHT . "plain" . $NRM . " - SASL PLAIN. You already know it if you need this.\n";
1606 print $WHT . "cram-md5" . $NRM . " - Slightly better than plaintext.\n";
1607 print $WHT . "digest-md5" . $NRM . " - Privacy protection - better than cram-md5.\n";
1608 print $WHT . "\n*** YOUR SMTP SERVER MUST SUPPORT THE MECHANISM YOU CHOOSE HERE ***\n" . $NRM;
1609 print "If you don't understand or are unsure, you probably want \"none\"\n\n";
1610 print "none, login, cram-md5, or digest-md5 [$WHT$smtp_auth_mech$NRM]: $WHT";
1611 $inval=<STDIN>;
1612 chomp($inval);
1613 if ($inval =~ /^none\b/i) {
1614 # remove sitewide smtp authentication information
1615 $smtp_sitewide_user = '';
1616 $smtp_sitewide_pass = '';
1617 # SMTP doesn't necessarily require logins
1618 return "none";
1619 } elsif ( ($inval =~ /^cram-md5\b/i) || ($inval =~ /^digest-md5\b/i) ||
1620 ($inval =~ /^login\b/i) || ($inval =~/^plain\b/i)) {
1621 command_smtp_sitewide_userpass($inval);
1622 return lc($inval);
1623 } elsif (trim($inval) eq '') {
1624 # user selected default value
1625 command_smtp_sitewide_userpass($smtp_auth_mech);
1626 return $smtp_auth_mech;
1627 } else {
1628 # user entered garbage
1629 return $smtp_auth_mech;
1630 }
1631 }
1632
1633 sub command_smtp_sitewide_userpass($) {
1634 # get first function argument
1635 my $auth_mech = shift(@_);
1636 my $default, $tmp;
1637 $auth_mech = lc(trim($auth_mech));
1638 if ($auth_mech eq 'none') {
1639 return;
1640 }
1641 print "SMTP authentication uses IMAP username and password by default.\n";
1642 print "\n";
1643 print "Would you like to use other login and password for all SquirrelMail \n";
1644 print "SMTP connections?";
1645 if ($smtp_sitewide_user ne '') {
1646 $default = 'y';
1647 print " [Y/n]:";
1648 } else {
1649 $default = 'n';
1650 print " [y/N]:";
1651 }
1652 $tmp=<STDIN>;
1653 $tmp = trim($tmp);
1654
1655 if ($tmp eq '') {
1656 $tmp = $default;
1657 } else {
1658 $tmp = lc($tmp);
1659 }
1660
1661 if ($tmp eq 'n') {
1662 $smtp_sitewide_user = '';
1663 $smtp_sitewide_pass = '';
1664 } elsif ($tmp eq 'y') {
1665 print "Enter username [$smtp_sitewide_user]:";
1666 my $new_user = <STDIN>;
1667 $new_user = trim($new_user);
1668 if ($new_user ne '') {
1669 $smtp_sitewide_user = $new_user;
1670 }
1671 if ($smtp_sitewide_user ne '') {
1672 print "If you don't enter any password, current sitewide password will be used.\n";
1673 print "If you enter space, password will be set to empty string.\n";
1674 print "Enter password:";
1675 my $new_pass = <STDIN>;
1676 if ($new_pass ne "\n") {
1677 $smtp_sitewide_pass = trim($new_pass);
1678 }
1679 } else {
1680 print "Invalid input. You must set username used for SMTP authentication.\n";
1681 print "Click enter to continue\n";
1682 $tmp = <STDIN>;
1683 }
1684 } else {
1685 print "Invalid input\n";
1686 print "Click enter to continue\n";
1687 $tmp = <STDIN>;
1688 }
1689 }
1690
1691 # Sub adds information about SMTP authentication type to menu
1692 sub display_smtp_sitewide_userpass() {
1693 my $ret = '';
1694 if ($smtp_auth_mech ne 'none') {
1695 if ($smtp_sitewide_user ne '') {
1696 $ret = ' (with custom username and password)';
1697 } else {
1698 $ret = ' (with IMAP username and password)';
1699 }
1700 }
1701 return $ret;
1702 }
1703
1704 # TLS
1705 # This sub is reused for IMAP and SMTP
1706 # Args: service name, default value
1707 sub command_use_tls {
1708 my($default_val,$service,$inval);
1709 $service=$_[0];
1710 $default_val=$_[1];
1711 print "TLS (Transport Layer Security) encrypts the traffic between server and client.\n";
1712 print "STARTTLS extensions allow to start encryption on existing plain text connection.\n";
1713 print "These options add specific PHP and IMAP server configuration requirements.\n";
1714 print "See SquirrelMail documentation about connection security.\n";
1715 print "\n";
1716 print "If your " . $service . " server is localhost, you can safely disable this.\n";
1717 print "If it is remote, you may wish to seriously consider enabling this.\n";
1718 $valid_input=0;
1719 while ($valid_input eq 0) {
1720 print "\nSelect connection security model:\n";
1721 print " 0 - Use plain text connection\n";
1722 print " 1 - Use TLS connection\n";
1723 print " 2 - Use STARTTLS extension\n";
1724 print "Select [$default_val]: ";
1725 $inval=<STDIN>;
1726 $inval=trim($inval);
1727 if ($inval =~ /^[012]$/ || $inval eq '') {
1728 $valid_input = 1;
1729 }
1730 }
1731 if ($inval ne '') {$default_val = $inval};
1732 return $default_val;
1733 }
1734
1735 # This sub is used to display human readable text for
1736 # $use_imap_tls and $use_smtp_tls values in conf.pl menu
1737 sub display_use_tls($) {
1738 my $val = shift(@_);
1739 my $ret = 'disabled';
1740 if ($val eq '2') {
1741 $ret = 'STARTTLS';
1742 } elsif ($val eq '1') {
1743 $ret = 'TLS';
1744 }
1745 return $ret;
1746 }
1747
1748 # $encode_header_key
1749 sub command114 {
1750 print "Encryption key allows to hide SquirrelMail Received: headers\n";
1751 print "in outbound messages. Interface uses encryption key to encode\n";
1752 print "username, remote address and proxied address, then stores encoded\n";
1753 print "information in X-Squirrel-* headers.\n";
1754 print "\n";
1755 print "Warning: used encryption function is not bulletproof. When used\n";
1756 print "with static encryption keys, it provides only minimal security\n";
1757 print "measures and information can be decoded quickly.\n";
1758 print "\n";
1759 print "Encoded information can be decoded with decrypt_headers.php script\n";
1760 print "from SquirrelMail contrib/ directory.\n";
1761 print "\n";
1762 print "Enter encryption key: ";
1763 $new_encode_header_key = <STDIN>;
1764 if ( $new_encode_header_key eq "\n" ) {
1765 $new_encode_header_key = $encode_header_key;
1766 } else {
1767 $new_encode_header_key =~ s/[\r\n]//g;
1768 }
1769 return $new_encode_header_key;
1770 }
1771
1772 # MOTD
1773 sub command71 {
1774 print "\nYou can now create the welcome message that is displayed\n";
1775 print "every time a user logs on. You can use HTML or just plain\n";
1776 print
1777 "text. If you do not wish to have one, just make it blank.\n\n(Type @ on a blank line to exit)\n";
1778
1779 $new_motd = "";
1780 do {
1781 print "] ";
1782 $line = <STDIN>;
1783 $line =~ s/[\r\n]//g;
1784 if ( $line ne "@" ) {
1785 $line =~ s/ /\&nbsp;\&nbsp;/g;
1786 $line =~ s/\t/\&nbsp;\&nbsp;\&nbsp;\&nbsp;/g;
1787 $line =~ s/$/ /;
1788 $line =~ s/\"/\\\"/g;
1789
1790 $new_motd = $new_motd . $line;
1791 }
1792 } while ( $line ne "@" );
1793 return $new_motd;
1794 }
1795
1796 ################# PLUGINS ###################
1797
1798 sub command81 {
1799 $command =~ s/[\s\n\r]*//g;
1800 if ( $command > 0 ) {
1801 $command = $command - 1;
1802 if ( $command <= $#plugins ) {
1803 @newplugins = ();
1804 $ct = 0;
1805 while ( $ct <= $#plugins ) {
1806 if ( $ct != $command ) {
1807 @newplugins = ( @newplugins, $plugins[$ct] );
1808 }
1809 $ct++;
1810 }
1811 @plugins = @newplugins;
1812 } elsif ( $command <= $#plugins + $#unused_plugins + 1 ) {
1813 $num = $command - $#plugins - 1;
1814 @newplugins = @plugins;
1815 $ct = 0;
1816 while ( $ct <= $#unused_plugins ) {
1817 if ( $ct == $num ) {
1818 @newplugins = ( @newplugins, $unused_plugins[$ct] );
1819 }
1820 $ct++;
1821 }
1822 @plugins = @newplugins;
1823 }
1824 }
1825 return @plugins;
1826 }
1827
1828 # disable_plugins_user
1829 sub command82 {
1830 print "When all active plugins are disabled, they can be disabled only\n";
1831 print "for the one user named here. If left blank, plugins will be\n";
1832 print "disabled for ALL users. This setting has no effect if plugins\n";
1833 print "are not disabled.\n";
1834 print "\n";
1835 print "This must be the exact IMAP login name for the desired user.\n";
1836 print "\n";
1837 print "[$WHT$disable_plugins_user$NRM]: $WHT";
1838 $new_disable_plugins_user = <STDIN>;
1839 if ( $new_disable_plugins_user eq "\n" ) {
1840 $new_disable_plugins_user = $disable_plugins_user;
1841 } else {
1842 $new_disable_plugins_user =~ s/[\r\n]//g;
1843 }
1844 return $new_disable_plugins_user;
1845 }
1846
1847 ################# FOLDERS ###################
1848
1849 # default_folder_prefix
1850 sub command21 {
1851 print "Some IMAP servers (UW, for example) store mail and folders in\n";
1852 print "your user space in a separate subdirectory. This is where you\n";
1853 print "specify what that directory is.\n";
1854 print "\n";
1855 print "EXAMPLE: mail/";
1856 print "\n";
1857 print "NOTE: If you use Cyrus, or some server that would not use this\n";
1858 print " option, you must set this to 'none'.\n";
1859 print "\n";
1860 print "[$WHT$default_folder_prefix$NRM]: $WHT";
1861 $new_default_folder_prefix = <STDIN>;
1862
1863 if ( $new_default_folder_prefix eq "\n" ) {
1864 $new_default_folder_prefix = $default_folder_prefix;
1865 } else {
1866 $new_default_folder_prefix =~ s/[\r\n]//g;
1867 }
1868 if ( ( $new_default_folder_prefix =~ /^\s*$/ ) || ( $new_default_folder_prefix =~ m/^none$/i ) ) {
1869 $new_default_folder_prefix = "";
1870 } else {
1871 # add the trailing delimiter only if we know what the server is.
1872 if (($imap_server_type eq 'cyrus' and
1873 $optional_delimiter eq 'detect') or
1874 ($imap_server_type eq 'courier' and
1875 $optional_delimiter eq 'detect')) {
1876 $new_default_folder_prefix =~ s/\.*$/\./;
1877 } elsif ($imap_server_type eq 'uw' and
1878 $optional_delimiter eq 'detect') {
1879 $new_default_folder_prefix =~ s/\/*$/\//;
1880 }
1881 }
1882 return $new_default_folder_prefix;
1883 }
1884
1885 # Show Folder Prefix
1886 sub command22 {
1887 print "It is possible to set up the default folder prefix as a user\n";
1888 print "specific option, where each user can specify what their mail\n";
1889 print "folder is. If you set this to false, they will never see the\n";
1890 print "option, but if it is true, this option will appear in the\n";
1891 print "'options' section.\n";
1892 print "\n";
1893 print "NOTE: You set the default folder prefix in option '1' of this\n";
1894 print " section. That will be the default if the user doesn't\n";
1895 print " specify anything different.\n";
1896 print "\n";
1897
1898 if ( lc($show_prefix_option) eq 'true' ) {
1899 $default_value = "y";
1900 } else {
1901 $default_value = "n";
1902 }
1903 print "\n";
1904 print "Show option (y/n) [$WHT$default_value$NRM]: $WHT";
1905 $new_show = <STDIN>;
1906 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1907 $show_prefix_option = 'true';
1908 } else {
1909 $show_prefix_option = 'false';
1910 }
1911 return $show_prefix_option;
1912 }
1913
1914 # Trash Folder
1915 sub command23a {
1916 print "You can now specify where the default trash folder is located.\n";
1917 print "On servers where you do not want this, you can set it to anything\n";
1918 print "and set option 6 to false.\n";
1919 print "\n";
1920 print "This is relative to where the rest of your email is kept. You do\n";
1921 print "not need to worry about their mail directory. If this folder\n";
1922 print "would be ~/mail/trash on the filesystem, you only need to specify\n";
1923 print "that this is 'trash', and be sure to put 'mail/' in option 1.\n";
1924 print "\n";
1925
1926 print "[$WHT$trash_folder$NRM]: $WHT";
1927 $new_trash_folder = <STDIN>;
1928 if ( $new_trash_folder eq "\n" ) {
1929 $new_trash_folder = $trash_folder;
1930 } else {
1931 if (check_imap_folder($new_trash_folder)) {
1932 $new_trash_folder =~ s/[\r\n]//g;
1933 } else {
1934 $new_trash_folder = $trash_folder;
1935 }
1936 }
1937 return $new_trash_folder;
1938 }
1939
1940 # Sent Folder
1941 sub command23b {
1942 print "This is where messages that are sent will be stored. SquirrelMail\n";
1943 print "by default puts a copy of all outgoing messages in this folder.\n";
1944 print "\n";
1945 print "This is relative to where the rest of your email is kept. You do\n";
1946 print "not need to worry about their mail directory. If this folder\n";
1947 print "would be ~/mail/sent on the filesystem, you only need to specify\n";
1948 print "that this is 'sent', and be sure to put 'mail/' in option 1.\n";
1949 print "\n";
1950
1951 print "[$WHT$sent_folder$NRM]: $WHT";
1952 $new_sent_folder = <STDIN>;
1953 if ( $new_sent_folder eq "\n" ) {
1954 $new_sent_folder = $sent_folder;
1955 } else {
1956 if (check_imap_folder($new_sent_folder)) {
1957 $new_sent_folder =~ s/[\r\n]//g;
1958 } else {
1959 $new_sent_folder = $sent_folder;
1960 }
1961 }
1962 return $new_sent_folder;
1963 }
1964
1965 # Draft Folder
1966 sub command23c {
1967 print "You can now specify where the default draft folder is located.\n";
1968 print "On servers where you do not want this, you can set it to anything\n";
1969 print "and set option 9 to false.\n";
1970 print "\n";
1971 print "This is relative to where the rest of your email is kept. You do\n";
1972 print "not need to worry about their mail directory. If this folder\n";
1973 print "would be ~/mail/drafts on the filesystem, you only need to specify\n";
1974 print "that this is 'drafts', and be sure to put 'mail/' in option 1.\n";
1975 print "\n";
1976
1977 print "[$WHT$draft_folder$NRM]: $WHT";
1978 $new_draft_folder = <STDIN>;
1979 if ( $new_draft_folder eq "\n" ) {
1980 $new_draft_folder = $draft_folder;
1981 } else {
1982 if (check_imap_folder($new_draft_folder)) {
1983 $new_draft_folder =~ s/[\r\n]//g;
1984 } else {
1985 $new_draft_folder = $draft_folder;
1986 }
1987 }
1988 return $new_draft_folder;
1989 }
1990
1991 # default move to trash
1992 sub command24a {
1993 print "By default, should messages get moved to the trash folder? You\n";
1994 print "can specify the default trash folder in option 3. If this is set\n";
1995 print "to false, messages will get deleted immediately without moving\n";
1996 print "to the trash folder.\n";
1997 print "\n";
1998 print "Trash folder is currently: $trash_folder\n";
1999 print "\n";
2000
2001 if ( lc($default_move_to_trash) eq 'true' ) {
2002 $default_value = "y";
2003 } else {
2004 $default_value = "n";
2005 }
2006 print "By default, move to trash (y/n) [$WHT$default_value$NRM]: $WHT";
2007 $new_show = <STDIN>;
2008 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2009 $default_move_to_trash = 'true';
2010 } else {
2011 $default_move_to_trash = 'false';
2012 }
2013 return $default_move_to_trash;
2014 }
2015
2016 # default move to sent (save sent messages)
2017 sub command24b {
2018 print "By default, should copies of outgoing messages get saved in the\n";
2019 print "sent folder? You can specify the default sent folder in option 4.\n";
2020 print "If this is set to false, messages will get sent and no copy will\n";
2021 print "be made.\n";
2022 print "\n";
2023 print "Sent folder is currently: $sent_folder\n";
2024 print "\n";
2025
2026 if ( lc($default_move_to_sent) eq 'true' ) {
2027 $default_value = "y";
2028 } else {
2029 $default_value = "n";
2030 }
2031 print "By default, save sent messages (y/n) [$WHT$default_value$NRM]: $WHT";
2032 $new_show = <STDIN>;
2033 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2034 $default_move_to_sent = 'true';
2035 } else {
2036 $default_move_to_sent = 'false';
2037 }
2038 return $default_move_to_sent;
2039 }
2040
2041 # default save as draft
2042 sub command24c {
2043 print "By default, should the save to draft option be shown? You can\n";
2044 print "specify the default drafts folder in option 5. If this is set\n";
2045 print "to false, users will not be shown the save to draft option.\n";
2046 print "\n";
2047 print "Drafts folder is currently: $draft_folder\n";
2048 print "\n";
2049
2050 if ( lc($default_save_as_draft) eq 'true' ) {
2051 $default_value = "y";
2052 } else {
2053 $default_value = "n";
2054 }
2055 print "By default, save as draft (y/n) [$WHT$default_value$NRM]: $WHT";
2056 $new_show = <STDIN>;
2057 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2058 $default_save_as_draft = 'true';
2059 } else {
2060 $default_save_as_draft = 'false';
2061 }
2062 return $default_save_as_draft;
2063 }
2064
2065 # List special folders first
2066 sub command27 {
2067 print "SquirrelMail has what we call 'special folders' that are not\n";
2068 print "manipulated and viewed like normal folders. Some examples of\n";
2069 print "these folders would be INBOX, Trash, Sent, etc. This option\n";
2070 print "Simply asks if you want these folders listed first in the folder\n";
2071 print "listing.\n";
2072 print "\n";
2073
2074 if ( lc($list_special_folders_first) eq 'true' ) {
2075 $default_value = "y";
2076 } else {
2077 $default_value = "n";
2078 }
2079 print "\n";
2080 print "List first (y/n) [$WHT$default_value$NRM]: $WHT";
2081 $new_show = <STDIN>;
2082 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2083 $list_special_folders_first = 'true';
2084 } else {
2085 $list_special_folders_first = 'false';
2086 }
2087 return $list_special_folders_first;
2088 }
2089
2090 # Show special folders color
2091 sub command28 {
2092 print "SquirrelMail has what we call 'special folders' that are not\n";
2093 print "manipulated and viewed like normal folders. Some examples of\n";
2094 print "these folders would be INBOX, Trash, Sent, etc. This option\n";
2095 print "wants to know if we should display special folders in a\n";
2096 print "color than the other folders.\n";
2097 print "\n";
2098
2099 if ( lc($use_special_folder_color) eq 'true' ) {
2100 $default_value = "y";
2101 } else {
2102 $default_value = "n";
2103 }
2104 print "\n";
2105 print "Show color (y/n) [$WHT$default_value$NRM]: $WHT";
2106 $new_show = <STDIN>;
2107 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2108 $use_special_folder_color = 'true';
2109 } else {
2110 $use_special_folder_color = 'false';
2111 }
2112 return $use_special_folder_color;
2113 }
2114
2115 # Auto expunge
2116 sub command29 {
2117 print "The way that IMAP handles deleting messages is as follows. You\n";
2118 print "mark the message as deleted, and then to 'really' delete it, you\n";
2119 print "expunge it. This option asks if you want to just have messages\n";
2120 print "marked as deleted, or if you want SquirrelMail to expunge the \n";
2121 print "messages too.\n";
2122 print "\n";
2123
2124 if ( lc($auto_expunge) eq 'true' ) {
2125 $default_value = "y";
2126 } else {
2127 $default_value = "n";
2128 }
2129 print "Auto expunge (y/n) [$WHT$default_value$NRM]: $WHT";
2130 $new_show = <STDIN>;
2131 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2132 $auto_expunge = 'true';
2133 } else {
2134 $auto_expunge = 'false';
2135 }
2136 return $auto_expunge;
2137 }
2138
2139 # Default sub of inbox
2140 sub command210 {
2141 print "Some IMAP servers (Cyrus) have all folders as subfolders of INBOX.\n";
2142 print "This can cause some confusion in folder creation for users when\n";
2143 print "they try to create folders and don't put it as a subfolder of INBOX\n";
2144 print "and get permission errors. This option asks if you want folders\n";
2145 print "to be subfolders of INBOX by default.\n";
2146 print "\n";
2147
2148 if ( lc($default_sub_of_inbox) eq 'true' ) {
2149 $default_value = "y";
2150 } else {
2151 $default_value = "n";
2152 }
2153 print "Default sub of INBOX (y/n) [$WHT$default_value$NRM]: $WHT";
2154 $new_show = <STDIN>;
2155 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2156 $default_sub_of_inbox = 'true';
2157 } else {
2158 $default_sub_of_inbox = 'false';
2159 }
2160 return $default_sub_of_inbox;
2161 }
2162
2163 # Show contain subfolder option
2164 sub command211 {
2165 print "Some IMAP servers (UW) make it so that there are two types of\n";
2166 print "folders. Those that contain messages, and those that contain\n";
2167 print "subfolders. If this is the case for your server, set this to\n";
2168 print "true, and it will ask the user whether the folder they are\n";
2169 print "creating contains subfolders or messages.\n";
2170 print "\n";
2171
2172 if ( lc($show_contain_subfolders_option) eq 'true' ) {
2173 $default_value = "y";
2174 } else {
2175 $default_value = "n";
2176 }
2177 print "Show option (y/n) [$WHT$default_value$NRM]: $WHT";
2178 $new_show = <STDIN>;
2179 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2180 $show_contain_subfolders_option = 'true';
2181 } else {
2182 $show_contain_subfolders_option = 'false';
2183 }
2184 return $show_contain_subfolders_option;
2185 }
2186
2187 # Default Unseen Notify
2188 sub command212 {
2189 print "This option specifies where the users will receive notification\n";
2190 print "about unseen messages by default. This is of course an option that\n";
2191 print "can be changed on a user level.\n";
2192 print " 1 = No notification\n";
2193 print " 2 = Only on the INBOX\n";
2194 print " 3 = On all folders\n";
2195 print "\n";
2196
2197 print "Which one should be default (1,2,3)? [$WHT$default_unseen_notify$NRM]: $WHT";
2198 $new_show = <STDIN>;
2199 if ( $new_show =~ /^[123]\n/i ) {
2200 $default_unseen_notify = $new_show;
2201 }
2202 $default_unseen_notify =~ s/[\r\n]//g;
2203 return $default_unseen_notify;
2204 }
2205
2206 # Default Unseen Type
2207 sub command213 {
2208 print "Here you can define the default way that unseen messages will be displayed\n";
2209 print "to the user in the folder listing on the left side.\n";
2210 print " 1 = Only unseen messages (4)\n";
2211 print " 2 = Unseen and Total messages (4/27)\n";
2212 print "\n";
2213
2214 print "Which one should be default (1,2)? [$WHT$default_unseen_type$NRM]: $WHT";
2215 $new_show = <STDIN>;
2216 if ( $new_show =~ /^[12]\n/i ) {
2217 $default_unseen_type = $new_show;
2218 }
2219 $default_unseen_type =~ s/[\r\n]//g;
2220 return $default_unseen_type;
2221 }
2222
2223 # Auto create special folders
2224 sub command214 {
2225 print "Would you like the Sent, Trash, and Drafts folders to be created\n";
2226 print "automatically print for you when a user logs in? If the user\n";
2227 print "accidentally deletes their special folders, this option will\n";
2228 print "automatically create it again for them.\n";
2229 print "\n";
2230
2231 if ( lc($auto_create_special) eq 'true' ) {
2232 $default_value = "y";
2233 } else {
2234 $default_value = "n";
2235 }
2236 print "Auto create special folders? (y/n) [$WHT$default_value$NRM]: $WHT";
2237 $new_show = <STDIN>;
2238 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2239 $auto_create_special = 'true';
2240 } else {
2241 $auto_create_special = 'false';
2242 }
2243 return $auto_create_special;
2244 }
2245
2246 # Automatically delete folders
2247 sub command215 {
2248 if ( $imap_server_type eq "uw" ) {
2249 print "UW IMAP servers will not allow folders containing mail to also contain folders.\n";
2250 print "Deleting folders will bypass the trash folder and be immediately deleted\n\n";
2251 print "If this is not the correct value for your server,\n";
2252 print "please use option D on the Main Menu to configure your server correctly.\n\n";
2253 print "Press enter to continue...\n";
2254 $new_delete = <STDIN>;
2255 $delete_folder = 'true';
2256 } else {
2257 if ( $imap_server_type eq "courier" ) {
2258 print "Courier (or Courier-IMAP) IMAP servers may not support ";
2259 print "subfolders of Trash. \n";
2260 print "Specifically, if Courier is set to always move messages to Trash, \n";
2261 print "Trash will be treated by Courier as a special folder that does not \n";
2262 print "allow subfolders. \n\n";
2263 print "Please verify your Courier configuration, and test folder deletion \n";
2264 print "when changing this setting.\n\n";
2265 }
2266
2267 print "Are subfolders of the Trash supported by your IMAP server?\n";
2268 print "If so, should deleted folders be sent to Trash?\n";
2269 print "If not, say no (deleted folders should not be sent to Trash)\n\n";
2270 # reversal of logic.
2271 # question was: Should folders be automatically deleted instead of sent to trash..
2272 # we've changed the question to make it more clear,
2273 # and are here handling that to avoid changing the answers..
2274 if ( lc($delete_folder) eq 'true' ) {
2275 $default_value = "n";
2276 } else {
2277 $default_value = "y";
2278 }
2279 print "Send deleted folders to Trash? (y/n) [$WHT$default_value$NRM]: $WHT";
2280 $new_delete = <STDIN>;
2281 if ( ( $new_delete =~ /^y\n/i ) || ( ( $new_delete =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2282 $delete_folder = 'false';
2283 } else {
2284 $delete_folder = 'true';
2285 }
2286 }
2287 return $delete_folder;
2288 }
2289
2290 #noselect fix
2291 sub command216 {
2292 print "Some IMAP servers allow subfolders to exist even if the parent\n";
2293 print "folders do not. This fixes some problems with the folder list\n";
2294 print "when this is the case, causing the /NoSelect folders to be displayed\n";
2295 print "\n";
2296
2297 if ( lc($noselect_fix_enable) eq 'true' ) {
2298 $default_value = "y";
2299 } else {
2300 $default_value = "n";
2301 }
2302 print "enable noselect fix? (y/n) [$WHT$noselect_fix_enable$NRM]: $WHT";
2303 $noselect_fix_enable = <STDIN>;
2304 if ( ( $noselect_fix_enable =~ /^y\n/i ) || ( ( $noselect_fix_enable =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2305 $noselect_fix_enable = 'true';
2306 } else {
2307 $noselect_fix_enable = 'false';
2308 }
2309 return $noselect_fix_enable;
2310 }
2311 ############# GENERAL OPTIONS #####################
2312
2313 # Data directory
2314 sub command33a {
2315 print "Specify the location for your data directory.\n";
2316 print "You need to create this directory yourself.\n";
2317 print "The path name can be absolute or relative (to the config directory).\n";
2318 print "Here are two examples:\n";
2319 print " Absolute: /var/local/squirrelmail/data/\n";
2320 print " Relative: ../data/\n";
2321 print "Relative paths to directories outside of the SquirrelMail distribution\n";
2322 print "will be converted to their absolute path equivalents in config.php.\n\n";
2323 print "Note: There are potential security risks with having a writeable directory\n";
2324 print "under the web server's root directory (ex: /home/httpd/html).\n";
2325 print "For this reason, it is recommended to put the data directory\n";
2326 print "in an alternate location of your choice. \n";
2327 print "\n";
2328
2329 print "[$WHT$data_dir$NRM]: $WHT";
2330 $new_data_dir = <STDIN>;
2331 if ( $new_data_dir eq "\n" ) {
2332 $new_data_dir = $data_dir;
2333 } else {
2334 $new_data_dir =~ s/[\r\n]//g;
2335 }
2336 if ( $new_data_dir =~ /^\s*$/ ) {
2337 $new_data_dir = "";
2338 } else {
2339 $new_data_dir =~ s/\/*$//g;
2340 $new_data_dir =~ s/$/\//g;
2341 }
2342 return $new_data_dir;
2343 }
2344
2345 # Attachment directory
2346 sub command33b {
2347 print "Path to directory used for storing attachments while a mail is\n";
2348 print "being composed. The path name can be absolute or relative (to the\n";
2349 print "config directory). Here are two examples:\n";
2350 print " Absolute: /var/local/squirrelmail/attach/\n";
2351 print " Relative: ../attach/\n";
2352 print "Relative paths to directories outside of the SquirrelMail distribution\n";
2353 print "will be converted to their absolute path equivalents in config.php.\n\n";
2354 print "Note: There are a few security considerations regarding this\n";
2355 print "directory:\n";
2356 print " 1. It should have the permission 733 (rwx-wx-wx) to make it\n";
2357 print " impossible for a random person with access to the webserver\n";
2358 print " to list files in this directory. Confidential data might\n";
2359 print " be laying around in there.\n";
2360 print " Depending on your user:group assignments, 730 (rwx-wx---)\n";
2361 print " may be possible, and more secure (e.g. root:apache)\n";
2362 print " 2. Since the webserver is not able to list the files in the\n";
2363 print " content is also impossible for the webserver to delete files\n";
2364 print " lying around there for too long.\n";
2365 print " 3. It should probably be another directory than the data\n";
2366 print " directory specified in option 3.\n";
2367 print "\n";
2368
2369 print "[$WHT$attachment_dir$NRM]: $WHT";
2370 $new_attachment_dir = <STDIN>;
2371 if ( $new_attachment_dir eq "\n" ) {
2372 $new_attachment_dir = $attachment_dir;
2373 } else {
2374 $new_attachment_dir =~ s/[\r\n]//g;
2375 }
2376 if ( $new_attachment_dir =~ /^\s*$/ ) {
2377 $new_attachment_dir = "";
2378 } else {
2379 $new_attachment_dir =~ s/\/*$//g;
2380 $new_attachment_dir =~ s/$/\//g;
2381 }
2382 return $new_attachment_dir;
2383 }
2384
2385 sub command33c {
2386 print "The directory hash level setting allows you to configure the level\n";
2387 print "of hashing that SquirrelMail employs in your data and attachment\n";
2388 print "directories. This value must be an integer ranging from 0 to 4.\n";
2389 print "When this value is set to 0, SquirrelMail will simply store all\n";
2390 print "files as normal in the data and attachment directories. However,\n";
2391 print "when set to a value from 1 to 4, a simple hashing scheme will be\n";
2392 print "used to organize the files in this directory. In short, the crc32\n";
2393 print "value for a username will be computed. Then, up to the first 4\n";
2394 print "digits of the hash, as set by this configuration value, will be\n";
2395 print "used to directory hash the files for that user in the data and\n";
2396 print "attachment directory. This allows for better performance on\n";
2397 print "servers with larger numbers of users.\n";
2398 print "\n";
2399
2400 print "[$WHT$dir_hash_level$NRM]: $WHT";
2401 $new_dir_hash_level = <STDIN>;
2402 if ( $new_dir_hash_level eq "\n" ) {
2403 $new_dir_hash_level = $dir_hash_level;
2404 } else {
2405 $new_dir_hash_level =~ s/[\r\n]//g;
2406 }
2407 if ( ( int($new_dir_hash_level) < 0 )
2408 || ( int($new_dir_hash_level) > 4 )
2409 || !( int($new_dir_hash_level) eq $new_dir_hash_level ) ) {
2410 print "Invalid Directory Hash Level.\n";
2411 print "Value must be an integer ranging from 0 to 4\n";
2412 print "Hit enter to continue.\n";
2413 $enter_key = <STDIN>;
2414
2415 $new_dir_hash_level = $dir_hash_level;
2416 }
2417
2418 return $new_dir_hash_level;
2419 }
2420
2421 sub command35 {
2422 print "This is the default size (in pixels) of the left folder list.\n";
2423 print "Default is 200, but you can set it to whatever you wish. This\n";
2424 print "is a user preference, so this will only show up as their default.\n";
2425 print "\n";
2426 print "[$WHT$default_left_size$NRM]: $WHT";
2427 $new_default_left_size = <STDIN>;
2428 if ( $new_default_left_size eq "\n" ) {
2429 $new_default_left_size = $default_left_size;
2430 } else {
2431 $new_default_left_size =~ s/[\r\n]//g;
2432 }
2433 return $new_default_left_size;
2434 }
2435
2436 sub command36 {
2437 print "Some IMAP servers only have lowercase letters in the usernames\n";
2438 print "but they still allow people with uppercase to log in. This\n";
2439 print "causes a problem with the user's preference files. This option\n";
2440 print "transparently changes all usernames to lowercase.";
2441 print "\n";
2442
2443 if ( lc($force_username_lowercase) eq 'true' ) {
2444 $default_value = "y";
2445 } else {
2446 $default_value = "n";
2447 }
2448 print "Convert usernames to lowercase (y/n) [$WHT$default_value$NRM]: $WHT";
2449 $new_show = <STDIN>;
2450 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2451 return 'true';
2452 }
2453 return 'false';
2454 }
2455
2456 sub command37 {
2457 print "";
2458 print "\n";
2459
2460 if ( lc($default_use_priority) eq 'true' ) {
2461 $default_value = "y";
2462 } else {
2463 $default_value = "n";
2464 }
2465
2466 print "Allow users to specify priority of outgoing mail (y/n) [$WHT$default_value$NRM]: $WHT";
2467 $new_show = <STDIN>;
2468 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2469 return 'true';
2470 }
2471 return 'false';
2472 }
2473
2474 sub command38 {
2475 print "";
2476 print "\n";
2477
2478 if ( lc($hide_sm_attributions) eq 'true' ) {
2479 $default_value = "y";
2480 } else {
2481 $default_value = "n";
2482 }
2483
2484 print "Hide SM attributions (y/n) [$WHT$default_value$NRM]: $WHT";
2485 $new_show = <STDIN>;
2486 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2487 return 'true';
2488 }
2489 return 'false';
2490 }
2491
2492 sub command39 {
2493 print "";
2494 print "\n";
2495
2496 if ( lc($default_use_mdn) eq 'true' ) {
2497 $default_value = "y";
2498 } else {
2499 $default_value = "n";
2500 }
2501
2502 print "Enable support for read/delivery receipt support (y/n) [$WHT$default_value$NRM]: $WHT";
2503 $new_show = <STDIN>;
2504 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2505 return 'true';
2506 }
2507 return 'false';
2508 }
2509
2510
2511 sub command310 {
2512 print " In loosely managed environments, you may want to allow users
2513 to edit their full name and email address. In strictly managed
2514 environments, you may want to force users to use the name
2515 and email address assigned to them.
2516
2517 'y' - allow a user to edit their full name and email address,
2518 'n' - users must use the assigned values.
2519
2520 ";
2521
2522 if ( lc($edit_identity) eq 'true' ) {
2523 $default_value = "y";
2524 } else {
2525 $default_value = "n";
2526 }
2527 print "Allow editing of user's identity? (y/n) [$WHT$default_value$NRM]: $WHT";
2528 $new_edit = <STDIN>;
2529 if ( ( $new_edit =~ /^y\n/i ) || ( ( $new_edit =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2530 $edit_identity = 'true';
2531 $edit_name = 'true';
2532 $hide_auth_header = command311b();
2533 } else {
2534 $edit_identity = 'false';
2535 $edit_name = command311();
2536 $hide_auth_header = command311b();
2537 }
2538 return $edit_identity;
2539 }
2540
2541 sub command311 {
2542 print " Given that users are not allowed to modify their
2543 email address, can they edit their full name?
2544
2545 ";
2546
2547 if ( lc($edit_name) eq 'true' ) {
2548 $default_value = "y";
2549 } else {
2550 $default_value = "n";
2551 }
2552 print "Allow the user to edit their full name? (y/n) [$WHT$default_value$NRM]: $WHT";
2553 $new_edit = <STDIN>;
2554 if ( ( $new_edit =~ /^y\n/i ) || ( ( $new_edit =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2555 $edit_name = 'true';
2556 } else {
2557 $edit_name = 'false';
2558 }
2559 return $edit_name;
2560 }
2561
2562 sub command311b {
2563 print " SquirrelMail adds username information to every sent email
2564 in order to prevent possible sender forging when users are allowed
2565 to change their email and/or full name.
2566
2567 You can remove user information from this header (y), if you think that
2568 it violates privacy or security.
2569
2570 Note: If users are allowed to change their email addresses,
2571 this setting will make it difficult to determine who sent what where.
2572 Use at your own risk.
2573
2574 ";
2575
2576 if ( lc($hide_auth_header) eq "true" ) {
2577 $default_value = "y";
2578 } else {
2579 $default_value = "n";
2580 }
2581 print "Remove username from email headers? (y/n) [$WHT$default_value$NRM]: $WHT";
2582 $new_header = <STDIN>;
2583 if ( ( $new_header =~ /^y\n/i ) || ( ( $new_header =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2584 $hide_auth_header = "true";
2585 } else {
2586 $hide_auth_header = "false";
2587 }
2588 return $hide_auth_header;
2589 }
2590
2591 sub command312 {
2592 print "This option allows you to disable server side thread sorting if your server \n";
2593 print "declares THREAD support, but you don't want to provide threading options \n";
2594 print "to end users or THREAD extension is broken or extension does not work with \n";
2595 print "options used by SquirrelMail. Option is not used, if THREAD extension is \n";
2596 print "not declared in IMAP CAPABILITY.\n";
2597 print "\n";
2598
2599 if ( lc($disable_thread_sort) eq 'true' ) {
2600 $default_value = "y";
2601 } else {
2602 $default_value = "n";
2603 }
2604 print "Disable server side thread sorting? (y/n) [$WHT$default_value$NRM]: $WHT";
2605 $disable_thread_sort = <STDIN>;
2606 if ( ( $disable_thread_sort =~ /^y\n/i ) || ( ( $disable_thread_sort =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2607 $disable_thread_sort = 'true';
2608 } else {
2609 $disable_thread_sort = 'false';
2610 }
2611 return $disable_thread_sort;
2612 }
2613
2614 sub command313 {
2615 print "This option allows you to disable server side sorting if your server declares \n";
2616 print "SORT support, but SORT extension is broken or does not work with options \n";
2617 print "used by SquirrelMail. Option is not used, if SORT extension is not declared \n";
2618 print "in IMAP CAPABILITY.\n";
2619 print "\n";
2620 print "It is strongly recommended to keep server side sorting enabled, if your ";
2621 print "IMAP server supports it.";
2622 print "\n";
2623
2624 if ( lc($disable_server_sort) eq 'true' ) {
2625 $default_value = "y";
2626 } else {
2627 $default_value = "n";
2628 }
2629 print "Disable server-side sorting? (y/n) [$WHT$default_value$NRM]: $WHT";
2630 $disable_server_sort = <STDIN>;
2631 if ( ( $disable_server_sort =~ /^y\n/i ) || ( ( $disable_server_sort =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2632 $disable_server_sort = 'true';
2633 } else {
2634 $disable_server_sort = 'false';
2635 }
2636 return $disable_server_sort;
2637 }
2638
2639 sub command314 {
2640 print "This option allows you to choose if SM uses charset search\n";
2641 print "Your IMAP server must support the SEARCH CHARSET command for this to work\n";
2642 print "\n";
2643
2644 if ( lc($allow_charset_search) eq 'true' ) {
2645 $default_value = "y";
2646 } else {
2647 $default_value = "n";
2648 }
2649 print "Allow charset searching? (y/n) [$WHT$default_value$NRM]: $WHT";
2650 $allow_charset_search = <STDIN>;
2651 if ( ( $allow_charset_search =~ /^y\n/i ) || ( ( $allow_charset_search =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2652 $allow_charset_search = 'true';
2653 } else {
2654 $allow_charset_search = 'false';
2655 }
2656 return $allow_charset_search;
2657 }
2658
2659 # command315 (UID support) obsoleted.
2660
2661 # advanced search option
2662 sub command316 {
2663 print "This option allows you to control the use of advanced search form.\n";
2664 print " 0 = enable basic search only\n";
2665 print " 1 = enable advanced search only\n";
2666 print " 2 = enable both\n";
2667 print "\n";
2668
2669 print "Allowed search (0,1,2)? [$WHT$allow_advanced_search$NRM]: $WHT";
2670 $new_allow_advanced_search = <STDIN>;
2671 if ( $new_allow_advanced_search =~ /^[012]\n/i ) {
2672 $allow_advanced_search = $new_allow_advanced_search;
2673 }
2674 $allow_advanced_search =~ s/[\r\n]//g;
2675 return $allow_advanced_search;
2676 }
2677
2678
2679 sub command317 {
2680 print "This option allows you to change the name of the PHP session used\n";
2681 print "by SquirrelMail. Unless you know what you are doing, you probably\n";
2682 print "don't need or want to change this from the default of SQMSESSID.\n";
2683 print "[$WHT$session_name$NRM]: $WHT";
2684 $new_session_name = <STDIN>;
2685 chomp($new_session_name);
2686 if ( $new_session_name eq "" ) {
2687 $new_session_name = $session_name;
2688 }
2689 return $new_session_name;
2690 }
2691
2692 # time zone config (since 1.5.1)
2693 sub command318 {
2694 print "This option allows you to control the use of time zones.\n";
2695 print " 0 = (default) standard, GNU C time zone names\n";
2696 print " 1 = strict, generic time zone codes with offsets\n";
2697 print " 2 = custom, GNU C time zones loaded from config/timezones.php\n";
2698 print " 3 = custom strict, generic time zone codes with offsets loaded \n";
2699 print " from config/timezones.php\n";
2700 print "See SquirrelMail documentation about format of config/timezones.php file.\n";
2701 print "\n";
2702
2703 print "Desired time zone configuration (0,1,2,3)? [$WHT$time_zone_type$NRM]: $WHT";
2704 $new_time_zone_type = <STDIN>;
2705 if ( $new_time_zone_type =~ /^[0123]\n/i ) {
2706 $time_zone_type = $new_time_zone_type;
2707 } else {
2708 print "\nInvalid configuration value.\n";
2709 print "\nPress enter to continue...";
2710 $tmp = <STDIN>;
2711 }
2712 $time_zone_type =~ s/[\r\n]//g;
2713 return $time_zone_type;
2714 }
2715
2716 # set the location base for redirects (since 1.5.2)
2717 sub command_config_location_base {
2718 print "Here you can set the base part of the SquirrelMail URL.\n";
2719 print "It is normally autodetected but if that fails, use this\n";
2720 print "option to override.\n";
2721 print "It should contain only the protocol and hostname/port parts\n";
2722 print "of the URL; the full path will be appended automatically.\n\n";
2723 print "Examples:\nhttp://webmail.example.org\nhttp://webmail.example.com:8080\nhttps://webmail.example.com:6691\n\n";
2724 print "Do not add any path elements.\n";
2725
2726 print "URL base? [" .$WHT."autodetect$NRM]: $WHT";
2727 $new_config_location_base = <STDIN>;
2728 chomp($new_config_location_base);
2729 $config_location_base = $new_config_location_base;
2730
2731 return $config_location_base;
2732 }
2733
2734 # only_secure_cookies (since 1.5.2)
2735 sub command319 {
2736 print "This option allows you to specify that if a user session is initiated\n";
2737 print "under a secure (HTTPS, SSL-encrypted) connection, the cookies given to\n";
2738 print "the browser will ONLY be transmitted via a secure connection henceforth.\n\n";
2739 print "Generally this is a Good Thing, and should NOT be disabled. However,\n";
2740 print "if you intend to use the Secure Login or Show SSL Link plugins to\n";
2741 print "encrypt the user login, but not the rest of the SquirrelMail session,\n";
2742 print "this can be turned off. Think twice before doing so.\n";
2743 print "\n";
2744
2745 if ( lc($only_secure_cookies) eq 'true' ) {
2746 $default_value = "y";
2747 } else {
2748 $default_value = "n";
2749 }
2750 print "Transmit cookies only on secure connection when available? (y/n) [$WHT$default_value$NRM]: $WHT";
2751 $only_secure_cookies = <STDIN>;
2752 if ( ( $only_secure_cookies =~ /^y\n/i ) || ( ( $only_secure_cookies =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2753 $only_secure_cookies = 'true';
2754 } else {
2755 $only_secure_cookies = 'false';
2756 }
2757 return $only_secure_cookies;
2758 }
2759
2760
2761 sub command_userThemes {
2762 print "\nDefine the user themes that you wish to use. If you have added\n";
2763 print "a theme of your own, just follow the instructions (?) about\n";
2764 print "how to add them. You can also change the default theme.\n\n";
2765
2766 print "Available user themes:\n";
2767 $count = 0;
2768 while ( $count <= $#user_theme_name ) {
2769 if ( $count == $user_theme_default ) {
2770 print " *";
2771 } else {
2772 print " ";
2773 }
2774 if ( $count < 10 ) {
2775 print " ";
2776 }
2777 $name = $user_theme_name[$count];
2778 $num_spaces = 35 - length($name);
2779 for ( $i = 0 ; $i < $num_spaces ; $i++ ) {
2780 $name = $name . " ";
2781 }
2782
2783 print " $count. $name";
2784 print "($user_theme_path[$count])\n";
2785
2786 $count++;
2787 }
2788
2789 print "\n";
2790 print ".------------------------------------.\n";
2791 print "| t (detect user themes) |\n";
2792 print "| + (add user theme) |\n";
2793 print "| - N (remove user theme) |\n";
2794 print "| m N (mark default user theme) |\n";
2795 print "| l (list user themes) |\n";
2796 print "| d (done) |\n";
2797 print "`------------------------------------'\n";
2798
2799 print "\n[user_themes] command (?=help) > ";
2800 $input = <STDIN>;
2801 $input =~ s/[\r\n]//g;
2802 while ( $input ne "d" ) {
2803 if ( $input =~ /^\s*l\s*/i ) {
2804 $count = 0;
2805 while ( $count <= $#user_theme_name ) {
2806 if ( $count == $user_theme_default ) {
2807 print " *";
2808 } else {
2809 print " ";
2810 }
2811 if ( $count < 10 ) {
2812 print " ";
2813 }
2814 $name = $user_theme_name[$count];
2815 $num_spaces = 35 - length($name);
2816 for ( $i = 0 ; $i < $num_spaces ; $i++ ) {
2817 $name = $name . " ";
2818 }
2819
2820 print " $count. $name";
2821 print "($user_theme_path[$count])\n";
2822
2823 $count++;
2824 }
2825 } elsif ( $input =~ /^\s*m\s*[0-9]+/i ) {
2826 $old_def = $user_theme_default;
2827 $user_theme_default = $input;
2828 $user_theme_default =~ s/^\s*m\s*//;
2829 if ( ( $user_theme_default > $#user_theme_name ) || ( $user_theme_default < 0 ) ) {
2830 print "Cannot set default theme to $user_theme_default. That theme does not exist.\n";
2831 $user_theme_default = $old_def;
2832 }
2833 } elsif ( $input =~ /^\s*\+/ ) {
2834 print "What is the name of this theme? ";
2835 $name = <STDIN>;
2836 $name =~ s/[\r\n]//g;
2837 $user_theme_name[ $#user_theme_name + 1 ] = $name;
2838 print "Be sure to put ../css/ before the filename.\n";
2839 print "What file is this stored in (ex: ../css/my_theme/): ";
2840 $name = <STDIN>;
2841 $name =~ s/[\r\n]//g;
2842 $user_theme_path[ $#user_theme_path + 1 ] = $name;
2843 } elsif ( $input =~ /^\s*-\s*[0-9]?/ ) {
2844 if ( $input =~ /[0-9]+\s*$/ ) {
2845 $rem_num = $input;
2846 $rem_num =~ s/^\s*-\s*//g;
2847 $rem_num =~ s/\s*$//;
2848 } else {
2849 $rem_num = $#user_theme_name;
2850 }
2851 if ( $rem_num == $user_theme_default ) {
2852 print "You cannot remove the default theme!\n";
2853 } else {
2854 $count = 0;
2855 @new_theme_name = ();
2856 @new_theme_path = ();
2857 while ( $count <= $#user_theme_name ) {
2858 if ( $count != $rem_num ) {
2859 @new_theme_name = ( @new_theme_name, $user_theme_name[$count] );
2860 @new_theme_path = ( @new_theme_path, $user_theme_path[$count] );
2861 }
2862 $count++;
2863 }
2864 @user_theme_name = @new_theme_name;
2865 @user_theme_path = @new_theme_path;
2866 if ( $user_theme_default > $rem_num ) {
2867 $user_theme_default--;
2868 }
2869 }
2870 } elsif ( $input =~ /^\s*t\s*/i ) {
2871 print "\nStarting detection...\n\n";
2872
2873 opendir( DIR, "../css" );
2874 @files = sort(readdir(DIR));
2875 $cnt = 0;
2876 while ( $cnt <= $#files ) {
2877 $filename = "../css/" . $files[$cnt] .'/';
2878 if ( $files[$cnt] !~ /^\./ && $filename ne "../css/rtl.css" && -e $filename . "default.css" ) {
2879 $found = 0;
2880 for ( $x = 0 ; $x <= $#user_theme_path ; $x++ ) {
2881 if ( $user_theme_path[$x] eq $filename ) {
2882 $found = 1;
2883 }
2884 }
2885 if ( $found != 1 ) {
2886 print "** Found user theme: $filename\n";
2887 $def = $files[$cnt];
2888 $def =~ s/_/ /g;
2889 $def = lc($def);
2890 #$def =~ s/(^\w+)/ucfirst $1/eg;
2891 #$def =~ s/(\s+)(\w+)/$1 . ucfirst $2/eg;
2892 $def =~ s/(^\w+)|(\s+)(\w+)/ucfirst $1 . $2 . ucfirst $3/eg;
2893 print " What is its name? [$def]: ";
2894 $nm = <STDIN>;
2895 $nm =~ s/^\s+|\s+$|[\n\r]//g;
2896 if ( $nm eq '' ) { $nm = $def; }
2897 $user_theme_name[ $#user_theme_name + 1 ] = $nm;
2898 $user_theme_path[ $#user_theme_path + 1 ] = $filename;
2899 }
2900 }
2901 $cnt++;
2902 }
2903 print "\n";
2904 for ( $cnt = 0 ; $cnt <= $#user_theme_path ; $cnt++ ) {
2905 $filename = $user_theme_path[$cnt];
2906 if ( $filename != 'none' && !( -e $filename ."/default.css" ) ) {
2907 print " Removing $filename (file not found)\n";
2908 $offset = 0;
2909 @new_user_theme_name = ();
2910 @new_user_theme_path = ();
2911 for ( $x = 0 ; $x < $#user_theme_path ; $x++ ) {
2912 if ( $user_theme_path[$x] eq $filename ) {
2913 $offset = 1;
2914 }
2915 if ( $offset == 1 ) {
2916 $new_user_theme_name[$x] = $user_theme_name[ $x + 1 ];
2917 $new_user_theme_path[$x] = $user_theme_path[ $x + 1 ];
2918 } else {
2919 $new_user_theme_name[$x] = $user_theme_name[$x];
2920 $new_user_theme_path[$x] = $user_theme_path[$x];
2921 }
2922 }
2923 @user_theme_name = @new_user_theme_name;
2924 @user_theme_path = @new_user_theme_path;
2925 }
2926 }
2927 print "\nDetection complete!\n\n";
2928
2929 closedir DIR;
2930 } elsif ( $input =~ /^\s*\?\s*/ ) {
2931 print ".------------------------------------.\n";
2932 print "| t (detect user themes) |\n";
2933 print "| + (add user theme) |\n";
2934 print "| - N (remove user theme) |\n";
2935 print "| m N (mark default user theme) |\n";
2936 print "| l (list user themes) |\n";
2937 print "| d (done) |\n";
2938 print "`------------------------------------'\n";
2939 }
2940 print "[user_themes] command (?=help) > ";
2941 $input = <STDIN>;
2942 $input =~ s/[\r\n]//g;
2943 }
2944 }
2945
2946 sub command_iconSets {
2947 print "\nDefine the icon themes that you wish to use. If you have added\n";
2948 print "a theme of your own, just follow the instructions (?) about\n";
2949 print "how to add them. You can also change the default and fallback\n";
2950 print "themes. The default theme will be used when no icon theme is\n";
2951 print "set by the user. The fallback theme will be used if an icon\n";
2952 print "cannot be found in the currently selected icon theme.\n\n";
2953
2954 print "Available icon themes:\n\n";
2955
2956 $count = 0;
2957 while ( $count <= $#icon_theme_name ) {
2958 if ( $count == $icon_theme_def ) {
2959 print " d";
2960 } else {
2961 print " ";
2962 }
2963 if ( $count eq $icon_theme_fallback ) {
2964 print "f ";
2965 } else {
2966 print " ";
2967 }
2968 if ( $count < 10 ) {
2969 print " ";
2970 }
2971 $name = $icon_theme_name[$count];
2972 $num_spaces = 35 - length($name);
2973 for ( $i = 0 ; $i < $num_spaces ; $i++ ) {
2974 $name = $name . " ";
2975 }
2976
2977 print " $count. $name";
2978 print "($icon_theme_path[$count])\n";
2979
2980 $count++;
2981 }
2982
2983 print "\n d = Default icon theme\n";
2984 print " f = Fallback icon theme\n";
2985 print "\n";
2986 print ".------------------------------------.\n";
2987 print "| t (detect icon themes) |\n";
2988 print "| + (add icon theme) |\n";
2989 print "| - N (remove icon theme) |\n";
2990 print "| m N (mark default icon theme) |\n";
2991 print "| f N (set fallback icon set) |\n";
2992 print "| l (list icon themes) |\n";
2993 print "| d (done) |\n";
2994 print "`------------------------------------'\n";
2995
2996 print "\n[icon_themes] command (?=help) > ";
2997 $input = <STDIN>;
2998 $input =~ s/[\r\n]//g;
2999 while ( $input ne "d" ) {
3000 if ( $input =~ /^\s*l\s*/i ) {
3001 $count = 0;
3002 print "\n";
3003 while ( $count <= $#icon_theme_name ) {
3004 if ( $count == $icon_theme_def ) {
3005 print " d";
3006 } else {
3007 print " ";
3008 }
3009 if ( $count eq $icon_theme_fallback ) {
3010 print "f ";
3011 } else {
3012 print " ";
3013 }
3014 $name = $icon_theme_name[$count];
3015 $num_spaces = 35 - length($name);
3016 for ( $i = 0 ; $i < $num_spaces ; $i++ ) {
3017 $name = $name . " ";
3018 }
3019
3020 print " $count. $name";
3021 print "($icon_theme_path[$count])\n";
3022
3023 $count++;
3024 }
3025 print "\n d = Default icon theme\n";
3026 print " f = Fallback icon theme\n\n";
3027 } elsif ( $input =~ /^\s*m\s*[0-9]+/i ) {
3028 $old_def = $icon_theme_def;
3029 $icon_theme_def = $input;
3030 $icon_theme_def =~ s/^\s*m\s*//;
3031 if ( ( $icon_theme_default > $#icon_theme_name ) || ( $icon_theme_default < 0 ) ) {
3032 print "Cannot set default icon theme to $icon_theme_default. That theme does not exist.\n";
3033 $icon_theme_def = $old_def;
3034 }
3035 } elsif ( $input =~ /^\s*f\s*[0-9]+/i ) {
3036 $old_fb = $icon_theme_fallback;
3037 $icon_theme_fallback = $input;
3038 $icon_theme_fallback =~ s/^\s*f\s*//;
3039 if ( ( $icon_theme_fallback > $#icon_theme_name ) || ( $icon_theme_fallback < 0 ) ) {
3040 print "Cannot set fallback icon theme to $icon_theme_fallback. That theme does not exist.\n";
3041 $icon_theme_fallback = $old_fb;
3042 }
3043 } elsif ( $input =~ /^\s*\+/ ) {
3044 print "What is the name of this icon theme? ";
3045 $name = <STDIN>;
3046 $name =~ s/[\r\n]//g;
3047 $icon_theme_name[ $#icon_theme_name + 1 ] = $name;
3048 print "Be sure to put ../images/themes/ before the filename.\n";
3049 print "What directory is this icon theme stored in (ex: ../images/themes/my_theme/)? ";
3050 $name = <STDIN>;
3051 $name =~ s/[\r\n]//g;
3052 $icon_theme_path[ $#icon_theme_path + 1 ] = $name;
3053 } elsif ( $input =~ /^\s*-\s*[0-9]?/ ) {
3054 if ( $input =~ /[0-9]+\s*$/ ) {
3055 $rem_num = $input;
3056 $rem_num =~ s/^\s*-\s*//g;
3057 $rem_num =~ s/\s*$//;
3058 } else {
3059 $rem_num = $#icon_theme_name;
3060 }
3061 if ( $rem_num == $icon_theme_def ) {
3062 print "You cannot remove the default icon theme!\n";
3063 } elsif ( $rem_num == $icon_theme_fallback ) {
3064 print "You cannot remove the fallback icon theme!\n";
3065 } else {
3066 $count = 0;
3067 @new_theme_name = ();
3068 @new_theme_path = ();
3069 while ( $count <= $#icon_theme_name ) {
3070 if ( $count != $rem_num ) {
3071 @new_theme_name = ( @new_theme_name, $icon_theme_name[$count] );
3072 @new_theme_path = ( @new_theme_path, $icon_theme_path[$count] );
3073 }
3074 $count++;
3075 }
3076 @icon_theme_name = @new_theme_name;
3077 @icon_theme_path = @new_theme_path;
3078 if ( $icon_theme_def > $rem_num ) {
3079 $icon_theme_def--;
3080 }
3081 }
3082 } elsif ( $input =~ /^\s*t\s*/i ) {
3083 print "\nStarting detection...\n\n";
3084
3085 opendir( DIR, "../images/themes/" );
3086 @files = sort(readdir(DIR));
3087 $cnt = 0;
3088 while ( $cnt <= $#files ) {
3089 $filename = "../images/themes/" . $files[$cnt] .'/';
3090 if ( -d "../images/themes/" . $files[$cnt] && $files[$cnt] !~ /^\./ && $files[$cnt] ne ".svn" ) {
3091 $found = 0;
3092 for ( $x = 0 ; $x <= $#icon_theme_path ; $x++ ) {
3093 if ( $icon_theme_path[$x] eq $filename ) {
3094 $found = 1;
3095 }
3096 }
3097 if ( $found != 1 ) {
3098 print "** Found icon theme: $filename\n";
3099 $def = $files[$cnt];
3100 $def =~ s/_/ /g;
3101 $def = lc($def);
3102 #$def =~ s/(^\w+)/ucfirst $1/eg;
3103 #$def =~ s/(\s+)(\w+)/$1 . ucfirst $2/eg;
3104 $def =~ s/(^\w+)|(\s+)(\w+)/ucfirst $1 . $2 . ucfirst $3/eg;
3105 print " What is its name? [$def]: ";
3106 $nm = <STDIN>;
3107 $nm =~ s/^\s+|\s+$|[\n\r]//g;
3108 if ( $nm eq '' ) { $nm = $def; }
3109 $icon_theme_name[ $#icon_theme_name + 1 ] = $nm;
3110 $icon_theme_path[ $#icon_theme_path + 1 ] = $filename;
3111 }
3112 }
3113 $cnt++;
3114 }
3115 print "\n";
3116 for ( $cnt = 0 ; $cnt <= $#icon_theme_path ; $cnt++ ) {
3117 $filename = $icon_theme_path[$cnt];
3118 if ( $filename ne "none" && $filename ne "template" && ! -d $filename ) {
3119 print " Removing $filename (file not found)\n";
3120 $offset = 0;
3121 @new_icon_theme_name = ();
3122 @new_icon_theme_path = ();
3123 for ( $x = 0 ; $x < $#icon_theme_path ; $x++ ) {
3124 if ( $icon_theme_path[$x] eq $filename ) {
3125 $offset = 1;
3126 }
3127 if ( $offset == 1 ) {
3128 $new_icon_theme_name[$x] = $icon_theme_name[ $x + 1 ];
3129 $new_icon_theme_path[$x] = $icon_theme_path[ $x + 1 ];
3130 } else {
3131 $new_icon_theme_name[$x] = $icon_theme_name[$x];
3132 $new_icon_theme_path[$x] = $icon_theme_path[$x];
3133 }
3134 }
3135 @icon_theme_name = @new_icon_theme_name;
3136 @icon_theme_path = @new_icon_theme_path;
3137 }
3138 }
3139 print "\nDetection complete!\n\n";
3140
3141 closedir DIR;
3142 } elsif ( $input =~ /^\s*\?\s*/ ) {
3143 print ".------------------------------------.\n";
3144 print "| t (detect icon themes) |\n";
3145 print "| + (add icon theme) |\n";
3146 print "| - N (remove icon theme) |\n";
3147 print "| m N (mark default icon theme) |\n";
3148 print "| f N (set fallback icon set) |\n";
3149 print "| l (list icon themes) |\n";
3150 print "| d (done) |\n";
3151 print "`------------------------------------'\n";
3152 }
3153 print "[icon_themes] command (?=help) > ";
3154 $input = <STDIN>;
3155 $input =~ s/[\r\n]//g;
3156 }
3157 }
3158
3159 sub command_templates {
3160 print "\nDefine the template sets (skins) that you wish to use. If you have added\n";
3161 print "a template set of your own, just follow the instructions (?) about\n";
3162 print "how to add them. You can also change the default template.\n";
3163
3164 print "\n Available Templates:\n";
3165
3166 $count = 0;
3167 while ( $count <= $#templateset_name ) {
3168 if ( $templateset_id[$count] eq $templateset_default ) {
3169 print " d";
3170 } else {
3171 print " ";
3172 }
3173 if ( $templateset_id[$count] eq $templateset_fallback ) {
3174 print "f";
3175 } else {
3176 print " ";
3177 }
3178 if ( $templateset_id[$count] eq $rpc_templateset ) {
3179 print "r ";
3180 } else {
3181 print " ";
3182 }
3183 if ( $count < 10 ) {
3184 print " ";
3185 }
3186 if ( $count < 100 ) {
3187 print " ";
3188 }
3189 $name = $templateset_name[$count];
3190
3191 # present RPC template sets differently
3192 #
3193 if ( $templateset_id[$count] =~ /_rpc$/ ) {
3194 $name = $name . " (not shown in user interface; used for RPC interface only)";
3195 } else {
3196
3197 $num_spaces = 35 - length($name);
3198 for ( $i = 0 ; $i < $num_spaces ; $i++ ) {
3199 $name = $name . " ";
3200 }
3201 $name = $name . "($templateset_id[$count])";
3202
3203 }
3204
3205 print " $count. $name\n";
3206
3207 $count++;
3208 }
3209 print "\n d = default template set\n"
3210 . " f = fallback template set\n"
3211 . " r = RPC template set\n\n";
3212
3213 $menu_text = ".-------------------------------------.\n"
3214 . "| t (detect template set) |\n"
3215 . "| + (add template set) |\n"
3216 . "| - N (remove template set) |\n"
3217 . "| m N (mark default template set) |\n"
3218 . "| f N (set fallback template set) |\n"
3219 . "| r N (set RPC template set) |\n"
3220 . "| l (list template sets/skins) |\n"
3221 . "| d (done) |\n"
3222 . "|-------------------------------------|\n"
3223 . "| where N is a template set number |\n"
3224 . "`-------------------------------------'\n";
3225 print "\n";
3226 print $menu_text;
3227 print "\n[template set] command (?=help) > ";
3228
3229 $input = <STDIN>;
3230 $input =~ s/[\r\n]//g;
3231 while ( $input ne "d" ) {
3232
3233 # list template sets
3234 #
3235 if ( $input =~ /^\s*l\s*/i ) {
3236 $count = 0;
3237 while ( $count <= $#templateset_name ) {
3238 if ( $templateset_id[$count] eq $templateset_default ) {
3239 print " d";
3240 } else {
3241 print " ";
3242 }
3243 if ( $templateset_id[$count] eq $templateset_fallback ) {
3244 print "f";
3245 } else {
3246 print " ";
3247 }
3248 if ( $templateset_id[$count] eq $rpc_templateset ) {
3249 print "r ";
3250 } else {
3251 print " ";
3252 }
3253 if ( $count < 10 ) {
3254 print " ";
3255 }
3256 if ( $count < 100 ) {
3257 print " ";
3258 }
3259 $name = $templateset_name[$count];
3260
3261 # present RPC template sets differently
3262 #
3263 if ( $templateset_id[$count] =~ /_rpc$/ ) {
3264 $name = $name . " (not shown in user interface; used for RPC interface only)";
3265 } else {
3266
3267 $num_spaces = 35 - length($name);
3268 for ( $i = 0 ; $i < $num_spaces ; $i++ ) {
3269 $name = $name . " ";
3270 }
3271 $name = $name . "($templateset_id[$count])";
3272
3273 }
3274
3275 print " $count. $name\n";
3276
3277 $count++;
3278 }
3279 print "\n d = default template set\n"
3280 . " f = fallback template set\n"
3281 . " r = RPC template set\n\n";
3282
3283 # mark default template set
3284 #
3285 } elsif ( $input =~ /^\s*m\s*[0-9]+/i ) {
3286 $old_def = $templateset_default;
3287 $input =~ s/^\s*m\s*//;
3288 $templateset_default = $templateset_id[$input];
3289 if ( $templateset_default =~ /^\s*$/ ) {
3290 print "Cannot set default template set to $input. That template set does not exist.\n";
3291 $templateset_default = $old_def;
3292 }
3293 if ( $templateset_default =~ /_rpc$/ ) {
3294 print "Cannot set default template set to $input. That template set is intended for the RPC interface only.\n";
3295 $templateset_default = $old_def;
3296 }
3297
3298 # set fallback template set
3299 #
3300 } elsif ( $input =~ /^\s*f\s*[0-9]+/i ) {
3301 $old_def = $templateset_fallback;
3302 $input =~ s/^\s*f\s*//;
3303 $templateset_fallback = $templateset_id[$input];
3304 if ( $templateset_fallback =~ /^\s*$/ ) {
3305 print "Cannot set fallback template set to $input. That template set does not exist.\n";
3306 $templateset_fallback = $old_def;
3307 }
3308 if ( $templateset_fallback =~ /_rpc$/ ) {
3309 print "Cannot set fallback template set to $input. That template set is intended for the RPC interface only.\n";
3310 $templateset_fallback = $old_def;
3311 }
3312
3313 # set RPC template set
3314 #
3315 } elsif ( $input =~ /^\s*r\s*[0-9]+/i ) {
3316 $old_def = $rpc_templateset;
3317 $input =~ s/^\s*r\s*//;
3318 $rpc_templateset = $templateset_id[$input];
3319 if ( $rpc_templateset =~ /^\s*$/ ) {
3320 print "Cannot set RPC template set to $input. That template set does not exist.\n";
3321 $rpc_templateset = $old_def;
3322 }
3323 if ( $rpc_templateset !~ /_rpc$/ ) {
3324 print "Cannot set fallback template set to $input. That template set is not intended for the RPC interface.\n";
3325 $rpc_templateset = $old_def;
3326 }
3327
3328 # add template set
3329 #
3330 } elsif ( $input =~ /^\s*\+/ ) {
3331 print "\nWhat is the name of this template (as shown to your users): ";
3332 $name = <STDIN>;
3333 $name =~ s/[\r\n]//g;
3334 $templateset_name[ $#templateset_name + 1 ] = $name;
3335 print "\n\nThe directory name should not contain any path information\n"
3336 . "or slashes, and should be the name of the directory that the\n"
3337 . "template set is found in within the SquirrelMail templates\n"
3338 . "directory.\n\n";
3339 print "What directory is this stored in (ex: default_advanced): ";
3340 $name = <STDIN>;
3341 $name =~ s/[\r\n]//g;
3342 $templateset_id[ $#templateset_id + 1 ] = $name;
3343
3344 # detect template sets
3345 #
3346 } elsif ( $input =~ /^\s*t\s*/i ) {
3347 print "\nStarting detection...\n\n";
3348 opendir( DIR, "../templates" );
3349 @files = sort(readdir(DIR));
3350 $cnt = 0;
3351 while ( $cnt <= $#files ) {
3352 if ( -d "../templates/" . $files[$cnt] && $files[$cnt] !~ /^\./ && $files[$cnt] ne ".svn" ) {
3353 $filename = $files[$cnt];
3354 $found = 0;
3355 for ( $x = 0 ; $x <= $#templateset_id ; $x++ ) {
3356 if ( $templateset_id[$x] eq $filename ) {
3357 $found = 1;
3358 last;
3359 }
3360 }
3361 if ( $found != 1) {
3362 print "** Found template set: $filename\n";
3363 $def = $files[$cnt];
3364
3365 # no user-friendly names needed for RPC template sets
3366 #
3367 if ( $def =~ /_rpc$/ ) {
3368 $nm = $def;
3369 } else {
3370 $def = lc($def);
3371 $def =~ s/_/ /g;
3372 #$def =~ s/(^\w+)/ucfirst $1/eg;
3373 #$def =~ s/(\s+)(\w+)/$1 . ucfirst $2/eg;
3374 $def =~ s/(^\w+)|(\s+)(\w+)/ucfirst $1 . $2 . ucfirst $3/eg;
3375 print " What is it's name (as shown to your users)? [$def]: ";
3376 $nm = <STDIN>;
3377 $nm =~ s/^\s+|\s+$|[\n\r]//g;
3378 if ( $nm eq '' ) { $nm = $def; }
3379 }
3380 $templateset_id[ $#templateset_id + 1 ] = $filename;
3381 $templateset_name[ $#templateset_name + 1 ] = $nm;
3382 }
3383 }
3384 $cnt++;
3385 }
3386 print "\n";
3387 for ( $cnt= 0 ; $cnt <= $#templateset_id ; ) {
3388 $filename = $templateset_id[$cnt];
3389 if ( !(-d change_to_rel_path('SM_PATH . \'templates/' . $filename)) ) {
3390 print " Removing \"$filename\" (template set directory not found)\n";
3391 if ( $templateset_default eq $filename ) { $templateset_default = 'default'; }
3392 if ( $templateset_fallback eq $filename ) { $templateset_fallback = 'default'; }
3393 if ( $rpc_templateset eq $filename ) { $rpc_templateset = 'default_rpc'; }
3394 $offset = 0;
3395 @new_templateset_name = ();
3396 @new_templateset_id = ();
3397 for ( $x = 0 ; $x < $#templateset_id ; $x++ ) {
3398 if ( $templateset_id[$x] eq $filename ) {
3399 $offset = 1;
3400 }
3401 if ( $offset == 1 ) {
3402 $new_templateset_name[$x] = $templateset_name[ $x + 1 ];
3403 $new_templateset_id[$x] = $templateset_id[ $x + 1 ];
3404 } else {
3405 $new_templateset_name[$x] = $templateset_name[$x];
3406 $new_templateset_id[$x] = $templateset_id[$x];
3407 }
3408 }
3409 @templateset_name = @new_templateset_name;
3410 @templateset_id = @new_templateset_id;
3411 } else { $cnt++; }
3412 }
3413 print "\nDetection complete!\n\n";
3414
3415 closedir DIR;
3416
3417 # remove template set
3418 #
3419 # undocumented functionality of removing last template set isn't that great
3420 #} elsif ( $input =~ /^\s*-\s*[0-9]?/ ) {
3421 } elsif ( $input =~ /^\s*-\s*[0-9]+/ ) {
3422 if ( $input =~ /[0-9]+\s*$/ ) {
3423 $rem_num = $input;
3424 $rem_num =~ s/^\s*-\s*//g;
3425 $rem_num =~ s/\s*$//;
3426 } else {
3427 $rem_num = $#templateset_name;
3428 }
3429 if ( $templateset_id[$rem_num] eq $templateset_default ) {
3430 print "You cannot remove the default template set!\n";
3431 } elsif ( $templateset_id[$rem_num] eq $templateset_fallback ) {
3432 print "You cannot remove the fallback template set!\n";
3433 } elsif ( $templateset_id[$rem_num] eq $rpc_templateset ) {
3434 print "You cannot remove the RPC template set!\n";
3435 } else {
3436 $count = 0;
3437 @new_templateset_name = ();
3438 @new_templateset_id = ();
3439 while ( $count <= $#templateset_name ) {
3440 if ( $count != $rem_num ) {
3441 @new_templateset_name = ( @new_templateset_name, $templateset_name[$count] );
3442 @new_templateset_id = ( @new_templateset_id, $templateset_id[$count] );
3443 }
3444 $count++;
3445 }
3446 @templateset_name = @new_templateset_name;
3447 @templateset_id = @new_templateset_id;
3448 }
3449
3450 # help
3451 #
3452 } elsif ( $input =~ /^\s*\?\s*/ ) {
3453 print $menu_text;
3454
3455 # command not understood
3456 #
3457 } else {
3458 print "Command not understood\n";
3459 }
3460
3461 print "[template set] command (?=help) > ";
3462 $input = <STDIN>;
3463 $input =~ s/[\r\n]//g;
3464 }
3465 return $templateset_default;
3466 }
3467
3468
3469 # sets default font size option
3470 sub command_default_fontsize {
3471 print "Enter default font size [$WHT$$default_fontsize$NRM]: $WHT";
3472 $new_size = <STDIN>;
3473 if ( $new_size eq "\n" ) {
3474 $new_size = $size;
3475 } else {
3476 $new_size =~ s/[\r\n]//g;
3477 }
3478 return $new_size;
3479 }
3480
3481 # controls available fontsets
3482 sub command_fontsets {
3483 # Greeting
3484 print "You can control fontsets available to end users here.\n";
3485 # set initial $input value
3486 $input = 'l';
3487 while ( $input ne "x" ) {
3488 if ( $input =~ /^\s*a\s*/i ) {
3489 # add new fontset
3490 print "\nFontset name: ";
3491 $name = <STDIN>;
3492 if (! $fontsets{trim($name)}) {
3493 print "Fontset string: ";
3494 $value = <STDIN>;
3495 $fontsets{trim($name)} = trim($value);
3496 } else {
3497 print "\nERROR: Such fontset already exists.\n";
3498 }
3499 } elsif ( $input =~ /^\s*e\s*/i ) {
3500 # edit existing fontset
3501 print "\nFontset name: ";
3502 $name = <STDIN>;
3503 if (! $fontsets{trim($name)}) {
3504 print "\nERROR: No such fontset.\n";
3505 } else {
3506 print "Fontset string [$fontsets{trim($name)}]: ";
3507 $value = <STDIN>;
3508 $fontsets{trim($name)} = trim($value);
3509 }
3510 } elsif ( $input =~ /^\s*d\s*/ ) {
3511 # delete existing fontset
3512 print "\nFontset name: ";
3513 $name = <STDIN>;
3514 if (! $fontsets{trim($name)}) {
3515 print "\nERROR: No such fontset.\n";
3516 } else {
3517 delete $fontsets{trim($name)};
3518 }
3519 } elsif ( $input =~ /^\s*l\s*/ ) {
3520 # list fontsets
3521 print "\nConfigured fontsets:\n";
3522 while (($fontset_name, $fontset_string) = each(%fontsets)) {
3523 print " $fontset_name = $fontset_string\n";
3524 }
3525 print "Default fontset: $default_fontset\n";
3526 } elsif ( $input =~ /^\s*m\s*/ ) {
3527 # set default fontset
3528 print "\nSet default fontset [$default_fontset]: ";
3529 $name = <STDIN>;
3530 if (trim($name) ne '' and ! $fontsets{trim($name)}) {
3531 print "\nERROR: No such fontset.\n";
3532 } else {
3533 $default_fontset = trim($name);
3534 }
3535 } else {
3536 # print available commands on any other input
3537 print "\nAvailable commands:\n";
3538 print " a - Adds new fontset.\n";
3539 print " d - Deletes existing fontset.\n";
3540 print " e - Edits existing fontset.\n";
3541 print " h or ? - Shows this help screen.\n";
3542 print " l - Lists available fontsets.\n";
3543 print " m - Sets default fontset.\n";
3544 print " x - Exits fontset editor mode.\n";
3545 }
3546 print "\nCommand [fontsets] (a,d,e,h,?=help,l,m,x)> ";
3547 $input = <STDIN>;
3548 $input =~ s/[\r\n]//g;
3549 }
3550 }
3551
3552 sub command61 {
3553 print "You can now define different LDAP servers.\n";
3554 print "Please ensure proper permissions for config.php when including\n";
3555 print "sensitive passwords.\n\n";
3556 print "[ldap] command (?=help) > ";
3557 $input = <STDIN>;
3558 $input =~ s/[\r\n]//g;
3559 while ( $input ne "d" ) {
3560 if ( $input =~ /^\s*l\s*/i ) {
3561 $count = 0;
3562 while ( $count <= $#ldap_host ) {
3563 print "$count. $ldap_host[$count]\n";
3564 print " base: $ldap_base[$count]\n";
3565 if ( $ldap_charset[$count] ) {
3566 print " charset: $ldap_charset[$count]\n";
3567 }
3568 if ( $ldap_port[$count] ) {
3569 print " port: $ldap_port[$count]\n";
3570 }
3571 if ( $ldap_name[$count] ) {
3572 print " name: $ldap_name[$count]\n";
3573 }
3574 if ( $ldap_maxrows[$count] ) {
3575 print " maxrows: $ldap_maxrows[$count]\n";
3576 }
3577 if ( $ldap_filter[$count] ) {
3578 print " filter: $ldap_filter[$count]\n";
3579 }
3580 if ( $ldap_binddn[$count] ) {
3581 print " binddn: $ldap_binddn[$count]\n";
3582 if ( $ldap_bindpw[$count] ) {
3583 print " bindpw: $ldap_bindpw[$count]\n";
3584 }
3585 }
3586 if ( $ldap_protocol[$count] ) {
3587 print " protocol: $ldap_protocol[$count]\n";
3588 }
3589 if ( $ldap_limit_scope[$count] ) {
3590 print " limit_scope: $ldap_limit_scope[$count]\n";
3591 }
3592 if ( $ldap_listing[$count] ) {
3593 print " listing: $ldap_listing[$count]\n";
3594 }
3595 if ( $ldap_writeable[$count] ) {
3596 print " writeable: $ldap_writeable[$count]\n";
3597 }
3598 if ( $ldap_search_tree[$count] ) {
3599 print " search_tree: $ldap_search_tree[$count]\n";
3600 }
3601 if ( $ldap_starttls[$count] ) {
3602 print " starttls: $ldap_starttls[$count]\n";
3603 }
3604
3605 print "\n";
3606 $count++;
3607 }
3608 } elsif ( $input =~ /^\s*\+/ ) {
3609 $sub = $#ldap_host + 1;
3610
3611 print "First, we need to have the hostname or the IP address where\n";
3612 print "this LDAP server resides. Example: ldap.bigfoot.com\n";
3613 print "\n";
3614 print "You can use any URI compatible with your LDAP library. Please\n";
3615 print "note that StartTLS option is not compatible with ldaps and\n";
3616 print "ldapi URIs.\n";
3617 print "hostname: ";
3618 $name = <STDIN>;
3619 $name =~ s/[\r\n]//g;
3620 $ldap_host[$sub] = $name;
3621
3622 print "\n";
3623
3624 print "Next, we need the server root (base dn). For this, an empty\n";
3625 print "string is allowed.\n";
3626 print "Example: ou=member_directory,o=netcenter.com\n";
3627 print "base: ";
3628 $name = <STDIN>;
3629 $name =~ s/[\r\n]//g;
3630 $ldap_base[$sub] = $name;
3631
3632 print "\n";
3633
3634 print "This is the TCP/IP port number for the LDAP server. Default\n";
3635 print "port is 389. This is optional. Press ENTER for default.\n";
3636 print "port: ";
3637 $name = <STDIN>;
3638 $name =~ s/[\r\n]//g;
3639 $ldap_port[$sub] = $name;
3640
3641 print "\n";
3642
3643 print "This is the charset for the server. Default is utf-8. This\n";
3644 print "is also optional. Press ENTER for default.\n";
3645 print "charset: ";
3646 $name = <STDIN>;
3647 $name =~ s/[\r\n]//g;
3648 $ldap_charset[$sub] = $name;
3649
3650 print "\n";
3651
3652 print "This is the name for the server, used to tag the results of\n";
3653 print "the search. Default it \"LDAP: hostname\". Press ENTER for default\n";
3654 print "name: ";
3655 $name = <STDIN>;
3656 $name =~ s/[\r\n]//g;
3657 $ldap_name[$sub] = $name;
3658
3659 print "\n";
3660
3661 print "You can specify the maximum number of rows in the search result.\n";
3662 print "Default value is equal to 250 rows. Press ENTER for default.\n";
3663 print "maxrows: ";
3664 $name = <STDIN>;
3665 $name =~ s/[\r\n]//g;
3666 $ldap_maxrows[$sub] = $name;
3667
3668
3669 print "\n";
3670
3671 print "If your LDAP server does not like anonymous logins, you can specify bind DN.\n";
3672 print "Default is none, anonymous bind. Press ENTER for default.\n";
3673 print "binddn: ";
3674 $name = <STDIN>;
3675 $name =~ s/[\r\n]//g;
3676 $ldap_binddn[$sub] = $name;
3677
3678 print "\n";
3679
3680 if ( $ldap_binddn[$sub] ne '' ) {
3681
3682 print "Now, please specify password for that DN.\n";
3683 print "bindpw: ";
3684 $name = <STDIN>;
3685 $name =~ s/[\r\n]//g;
3686 $ldap_bindpw[$sub] = $name;
3687
3688 print "\n";
3689 }
3690
3691 print "You can specify bind protocol version here.\n";
3692 print "Default protocol version depends on your php ldap settings.\n";
3693 print "Press ENTER for default.\n";
3694 print "protocol: ";
3695 $name = <STDIN>;
3696 $name =~ s/[\r\n]//g;
3697 $ldap_protocol[$sub] = $name;
3698
3699 print "\n";
3700
3701 print "This configuration section allows to set some rarely used\n";
3702 print "options and options specific to some LDAP implementations.\n";
3703 print "\n";
3704 print "Do you want to set advanced LDAP directory settings? (y/N):";
3705 $ldap_advanced_settings = <STDIN>;
3706 if ( $ldap_advanced_settings =~ /^y\n/i ) {
3707 $ldap_advanced_settings = 'true';
3708 } else {
3709 $ldap_advanced_settings = 'false';
3710 }
3711
3712 if ($ldap_advanced_settings eq 'true') {
3713 print "\n";
3714
3715 print "You can control LDAP directory listing here. This option can\n";
3716 print "be useful if you run small LDAP server and want to provide listing\n";
3717 print "of all addresses stored in LDAP to users of webmail interface.\n";
3718 print "Number of displayed entries is limited by maxrows setting.\n";
3719 print "\n";
3720 print "Don't enable this option for public LDAP directories.\n";
3721 print "\n";
3722 print "Allow listing of LDAP directory? (y/N):";
3723 $name = <STDIN>;
3724 if ( $name =~ /^y\n/i ) {
3725 $name = 'true';
3726 } else {
3727 $name = 'false';
3728 }
3729 $ldap_listing[$sub] = $name;
3730
3731 print "\n";
3732
3733 print "You can control write access to LDAP address book here. This option can\n";
3734 print "be useful if you run small LDAP server and want to provide writable\n";
3735 print "shared address book stored in LDAP to users of webmail interface.\n";
3736 print "\n";
3737 print "Don't enable this option for public LDAP directories.\n";
3738 print "\n";
3739 print "Allow writing to LDAP directory? (y/N):";
3740 $name = <STDIN>;
3741 if ( $name =~ /^y\n/i ) {
3742 $name = 'true';
3743 } else {
3744 $name = 'false';
3745 }
3746 $ldap_writeable[$sub] = $name;
3747
3748 print "\n";
3749
3750 print "You can specify an additional search filter.\n";
3751 print "This could be something like \"(objectclass=posixAccount)\".\n";
3752 print "No filtering is performed by default. Press ENTER for default.\n";
3753 print "filter: ";
3754 $name = <STDIN>;
3755 $name =~ s/[\r|\n]//g;
3756 $ldap_filter[$sub] = $name;
3757
3758 print "\n";
3759
3760 print "You can control search scope here.\n";
3761 print "This option is specific to Microsoft ADS implementation.\n";
3762 print "It requires use of v3 or newer LDAP protocol.\n";
3763 print "Don't enable it, if you use other LDAP server.\n";
3764 print "\n";
3765 print "Limit ldap scope? (y/N):";
3766 $name = <STDIN>;
3767 if ( $name =~ /^y\n/i ) {
3768 $name = 'true';
3769 } else {
3770 $name = 'false';
3771 }
3772 $ldap_limit_scope[$sub] = $name;
3773
3774 print "\n";
3775
3776 print "You can control ldap search type here.\n";
3777 print "Addresses can be searched in entire LDAP subtree (default)\n";
3778 print "or only first level entries are returned.\n";
3779 print "\n";
3780 print "Search entire LDAP subtree? (Y/n):";
3781 $name = <STDIN>;
3782 if ( $name =~ /^n\n/i ) {
3783 $name = 'false';
3784 } else {
3785 $name = 'true';
3786 }
3787 $ldap_search_tree[$sub] = $name;
3788
3789 print "\n";
3790
3791 print "You can control use of StartTLS on LDAP connection here.\n";
3792 print "This option requires use of v3 or newer LDAP protocol and php 4.2+.\n";
3793 print "\n";
3794 print "Use StartTLS? (y/N):";
3795 $name = <STDIN>;
3796 if ( $name =~ /^y\n/i ) {
3797 $name = 'true';
3798 } else {
3799 $name = 'false';
3800 }
3801 $ldap_starttls[$sub] = $name;
3802 }
3803 print "\n";
3804
3805 } elsif ( $input =~ /^\s*-\s*[0-9]?/ ) {
3806 if ( $input =~ /[0-9]+\s*$/ ) {
3807 $rem_num = $input;
3808 $rem_num =~ s/^\s*-\s*//g;
3809 $rem_num =~ s/\s*$//;
3810 } else {
3811 $rem_num = $#ldap_host;
3812 }
3813 $count = 0;
3814 @new_ldap_host = ();
3815 @new_ldap_base = ();
3816 @new_ldap_port = ();
3817 @new_ldap_name = ();
3818 @new_ldap_charset = ();
3819 @new_ldap_maxrows = ();
3820 @new_ldap_filter = ();
3821 @new_ldap_bindpw = ();
3822 @new_ldap_binddn = ();
3823 @new_ldap_protocol = ();
3824 @new_ldap_limit_scope = ();
3825 @new_ldap_listing = ();
3826 @new_ldap_writeable = ();
3827 @new_ldap_search_tree = ();
3828 @new_ldap_starttls = ();
3829
3830 while ( $count <= $#ldap_host ) {
3831 if ( $count != $rem_num ) {
3832 @new_ldap_host = ( @new_ldap_host, $ldap_host[$count] );
3833 @new_ldap_base = ( @new_ldap_base, $ldap_base[$count] );
3834 @new_ldap_port = ( @new_ldap_port, $ldap_port[$count] );
3835 @new_ldap_name = ( @new_ldap_name, $ldap_name[$count] );
3836 @new_ldap_charset = ( @new_ldap_charset, $ldap_charset[$count] );
3837 @new_ldap_maxrows = ( @new_ldap_maxrows, $ldap_maxrows[$count] );
3838 @new_ldap_filter = ( @new_ldap_filter, $ldap_filter[$count] );
3839 @new_ldap_binddn = ( @new_ldap_binddn, $ldap_binddn[$count] );
3840 @new_ldap_bindpw = ( @new_ldap_bindpw, $ldap_bindpw[$count] );
3841 @new_ldap_protocol = ( @new_ldap_protocol, $ldap_protocol[$count] );
3842 @new_ldap_limit_scope = ( @new_ldap_limit_scope, $ldap_limit_scope[$count] );
3843 @new_ldap_listing = ( @new_ldap_listing, $ldap_listing[$count] );
3844 @new_ldap_writeable = ( @new_ldap_writeable, $ldap_writeable[$count] );
3845 @new_ldap_search_tree = ( @new_ldap_search_tree, $ldap_search_tree[$count] );
3846 @new_ldap_starttls = ( @new_ldap_starttls, $ldap_starttls[$count] );
3847 }
3848 $count++;
3849 }
3850 @ldap_host = @new_ldap_host;
3851 @ldap_base = @new_ldap_base;
3852 @ldap_port = @new_ldap_port;
3853 @ldap_name = @new_ldap_name;
3854 @ldap_charset = @new_ldap_charset;
3855 @ldap_maxrows = @new_ldap_maxrows;
3856 @ldap_filter = @new_ldap_filter;
3857 @ldap_binddn = @new_ldap_binddn;
3858 @ldap_bindpw = @new_ldap_bindpw;
3859 @ldap_protocol = @new_ldap_protocol;
3860 @ldap_limit_scope = @new_ldap_limit_scope;
3861 @ldap_listing = @new_ldap_listing;
3862 @ldap_writeable = @new_ldap_writeable;
3863 @ldap_search_tree = @new_ldap_search_tree;
3864 @ldap_starttls = @new_ldap_starttls;
3865
3866 } elsif ( $input =~ /^\s*\?\s*/ ) {
3867 print ".-------------------------.\n";
3868 print "| + (add host) |\n";
3869 print "| - N (remove host) |\n";
3870 print "| l (list hosts) |\n";
3871 print "| d (done) |\n";
3872 print "`-------------------------'\n";
3873 }
3874 print "[ldap] command (?=help) > ";
3875 $input = <STDIN>;
3876 $input =~ s/[\r\n]//g;
3877 }
3878 }
3879
3880 sub command62 {
3881 print "Some of our developers have come up with very good javascript interface\n";
3882 print "for searching through address books, however, our original goals said\n";
3883 print "that we would be 100% HTML. In order to make it possible to use their\n";
3884 print "interface, and yet stick with our goals, we have also written a plain\n";
3885 print "HTML version of the search. Here, you can choose which version to use.\n";
3886 print "\n";
3887 print "This is just the default value. It is also a user option that each\n";
3888 print "user can configure individually\n";
3889 print "\n";
3890
3891 if ( lc($default_use_javascript_addr_book) eq 'true' ) {
3892 $default_value = "y";
3893 } else {
3894 $default_use_javascript_addr_book = 'false';
3895 $default_value = "n";
3896 }
3897 print "Use javascript version by default (y/n) [$WHT$default_value$NRM]: $WHT";
3898 $new_show = <STDIN>;
3899 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
3900 $default_use_javascript_addr_book = 'true';
3901 } else {
3902 $default_use_javascript_addr_book = 'false';
3903 }
3904 return $default_use_javascript_addr_book;
3905 }
3906
3907 # global filebased address book
3908 sub command63 {
3909 print "If you want to use global file address book, then you\n";
3910 print "must set this option to a valid value. If option does\n";
3911 print "not have path elements, system assumes that file is\n";
3912 print "stored in data directory. If relative path is set, it is\n";
3913 print "relative to main SquirrelMail directory. If value is empty,\n";
3914 print "address book is not enabled.\n";
3915 print "\n";
3916
3917 print "[$WHT$abook_global_file$NRM]: $WHT";
3918 $new_abook_global_file = <STDIN>;
3919 if ( $new_abook_global_file eq "\n" ) {
3920 $new_abook_global_file = $abook_global_file;
3921 } else {
3922 $new_abook_global_file =~ s/[\r\n]//g;
3923 }
3924 return $new_abook_global_file;
3925 }
3926
3927 # writing into global filebased abook control
3928 sub command64 {
3929 print "This setting controls writing into global file address\n";
3930 print "book options. Address book file must be writeable by\n";
3931 print "webserver's user, if you want to enable this option.\n";
3932 print "\n";
3933
3934 if ( lc($abook_global_file_writeable) eq 'true' ) {
3935 $default_value = "y";
3936 } else {
3937 $abook_global_file_writeable = 'false';
3938 $default_value = "n";
3939 }
3940 print "Allow writing into global file address book (y/n) [$WHT$default_value$NRM]: $WHT";
3941 $new_show = <STDIN>;
3942 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
3943 $abook_global_file_writeable = 'true';
3944 } else {
3945 $abook_global_file_writeable = 'false';
3946 }
3947 return $abook_global_file_writeable;
3948 }
3949
3950 # listing of global filebased abook control
3951 sub command65 {
3952 print "This setting controls listing of global file address\n";
3953 print "book in addresses page.\n";
3954 print "\n";
3955
3956 if ( lc($abook_global_file_listing) eq 'true' ) {
3957 $default_value = "y";
3958 } else {
3959 $abook_global_file_listing = 'false';
3960 $default_value = "n";
3961 }
3962 print "Allow listing of global file address book (y/n) [$WHT$default_value$NRM]: $WHT";
3963 $new_show = <STDIN>;
3964 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
3965 $abook_global_file_listing = 'true';
3966 } else {
3967 $abook_global_file_listing = 'false';
3968 }
3969 return $abook_global_file_listing;
3970 }
3971
3972 # controls $abook_file_line_length setting
3973 sub command_abook_file_line_length {
3974 print "This setting controls space allocated to file based address book records.\n";
3975 print "End users will be unable to save address book entry, if total entry size \n";
3976 print "(quoted address book fields + 4 delimiters + linefeed) exceeds allowed \n";
3977 print "address book length size.\n";
3978 print "\n";
3979 print "Same setting is applied to personal and global file based address books.\n";
3980 print "\n";
3981 print "It is strongly recommended to keep default setting value. Change it only\n";
3982 print "if you really want to store address book entries that are bigger than two\n";
3983 print "kilobytes (2048).\n";
3984 print "\n";
3985
3986 print "Enter allowed address book line length [$abook_file_line_length]: ";
3987 my $tmp = <STDIN>;
3988 $tmp = trim($tmp);
3989 # value is not modified, if user hits Enter or enters space
3990 if ($tmp ne '') {
3991 # make sure that input is numeric
3992 if ($tmp =~ /^\d+$/) {
3993 $abook_file_line_length = $tmp;
3994 } else {
3995 print "If you want to change this setting, you must enter number.\n";
3996 print "If you want to keep original setting - enter space.\n\n";
3997 print "Press Enter to continue...";
3998 $tmp = <STDIN>;
3999 }
4000 }
4001 }
4002
4003 sub command91 {
4004 print "If you want to store your users address book details in a database then\n";
4005 print "you need to set this DSN to a valid value. The format for this is:\n";
4006 print "mysql://user:pass\@hostname/dbname\n";
4007 print "Where mysql can be one of the databases PHP supports, the most common\n";
4008 print "of these are mysql, msql and pgsql.\n";
4009 print "Please ensure proper permissions for config.php when including\n";
4010 print "sensitive passwords.\n\n";
4011 print "If the DSN is left empty (hit space and then return) the database\n";
4012 print "related code for address books will not be used.\n";
4013 print "\n";
4014
4015 if ( $addrbook_dsn eq "" ) {
4016 $default_value = "Disabled";
4017 } else {
4018 $default_value = $addrbook_dsn;
4019 }
4020 print "[$WHT$addrbook_dsn$NRM]: $WHT";
4021 $new_dsn = <STDIN>;
4022 if ( $new_dsn eq "\n" ) {
4023 $new_dsn = "";
4024 } else {
4025 $new_dsn =~ s/[\r\n]//g;
4026 $new_dsn =~ s/^\s+$//g;
4027 }
4028 return $new_dsn;
4029 }
4030
4031 sub command92 {
4032 print "This is the name of the table you want to store the address book\n";
4033 print "data in, it defaults to 'address'\n";
4034 print "\n";
4035 print "[$WHT$addrbook_table$NRM]: $WHT";
4036 $new_table = <STDIN>;
4037 if ( $new_table eq "\n" ) {
4038 $new_table = $addrbook_table;
4039 } else {
4040 $new_table =~ s/[\r\n]//g;
4041 }
4042 return $new_table;
4043 }
4044
4045 sub command93 {
4046 print "If you want to store your users preferences in a database then\n";
4047 print "you need to set this DSN to a valid value. The format for this is:\n";
4048 print "mysql://user:pass\@hostname/dbname\n";
4049 print "Where mysql can be one of the databases PHP supports, the most common\n";
4050 print "of these are mysql, msql and pgsql.\n";
4051 print "Please ensure proper permissions for config.php when including\n";
4052 print "sensitive passwords.\n\n";
4053 print "If the DSN is left empty (hit space and then return) the database\n";
4054 print "related code for address books will not be used.\n";
4055 print "\n";
4056
4057 if ( $prefs_dsn eq "" ) {
4058 $default_value = "Disabled";
4059 } else {
4060 $default_value = $prefs_dsn;
4061 }
4062 print "[$WHT$prefs_dsn$NRM]: $WHT";
4063 $new_dsn = <STDIN>;
4064 if ( $new_dsn eq "\n" ) {
4065 $new_dsn = "";
4066 } else {
4067 $new_dsn =~ s/[\r\n]//g;
4068 $new_dsn =~ s/^\s+$//g;
4069 }
4070 return $new_dsn;
4071 }
4072
4073 sub command94 {
4074 print "This is the name of the table you want to store the preferences\n";
4075 print "data in, it defaults to 'userprefs'\n";
4076 print "\n";
4077 print "[$WHT$prefs_table$NRM]: $WHT";
4078 $new_table = <STDIN>;
4079 if ( $new_table eq "\n" ) {
4080 $new_table = $prefs_table;
4081 } else {
4082 $new_table =~ s/[\r\n]//g;
4083 }
4084 return $new_table;
4085 }
4086
4087 sub command95 {
4088 print "This is the name of the field in which you want to store the\n";
4089 print "username of the person the prefs are for. It default to 'user'\n";
4090 print "which clashes with a reserved keyword in PostgreSQL so this\n";
4091 print "will need to be changed for that database at least\n";
4092 print "\n";
4093 print "[$WHT$prefs_user_field$NRM]: $WHT";
4094 $new_field = <STDIN>;
4095 if ( $new_field eq "\n" ) {
4096 $new_field = $prefs_user_field;
4097 } else {
4098 $new_field =~ s/[\r\n]//g;
4099 }
4100 $prefs_user_size = db_pref_size($prefs_user_size);
4101 return $new_field;
4102 }
4103
4104 sub command96 {
4105 print "This is the name of the field in which you want to store the\n";
4106 print "preferences keyword. It defaults to 'prefkey'\n";
4107 print "\n";
4108 print "[$WHT$prefs_key_field$NRM]: $WHT";
4109 $new_field = <STDIN>;
4110 if ( $new_field eq "\n" ) {
4111 $new_field = $prefs_key_field;
4112 } else {
4113 $new_field =~ s/[\r\n]//g;
4114 }
4115 $prefs_key_size = db_pref_size($prefs_key_size);
4116 return $new_field;
4117 }
4118
4119 sub command97 {
4120 print "This is the name of the field in which you want to store the\n";
4121 print "preferences value. It defaults to 'prefval'\n";
4122 print "\n";
4123 print "[$WHT$prefs_val_field$NRM]: $WHT";
4124 $new_field = <STDIN>;
4125 if ( $new_field eq "\n" ) {
4126 $new_field = $prefs_val_field;
4127 } else {
4128 $new_field =~ s/[\r\n]//g;
4129 }
4130 $prefs_val_size = db_pref_size($prefs_val_size);
4131 return $new_field;
4132 }
4133
4134 # routine is used to set database field limits
4135 # it needs one argument
4136 sub db_pref_size() {
4137 my ($size) = $_[0];
4138 print "\nDatabase fields have size limits.\n";
4139 print "\n";
4140 print "What limit is set for this field? [$WHT$size$NRM]: $WHT";
4141 $new_size = <STDIN>;
4142 if ( $new_size eq "\n" ) {
4143 $new_size = $size;
4144 } else {
4145 $new_size =~ s/[\r\n]//g;
4146 }
4147 return $new_size;
4148 }
4149
4150 sub command98 {
4151 print "If you want to store your global address book in a database then\n";
4152 print "you need to set this DSN to a valid value. The format for this is:\n";
4153 print "mysql://user:pass\@hostname/dbname\n";
4154 print "Where mysql can be one of the databases PHP supports, the most common\n";
4155 print "of these are mysql, msql and pgsql.\n";
4156 print "Please ensure proper permissions for config.php when including\n";
4157 print "sensitive passwords.\n\n";
4158 print "If the DSN is left empty (hit space and then return) the database\n";
4159 print "related code for global SQL address book will not be used.\n";
4160 print "\n";
4161
4162 if ( $addrbook_global_dsn eq "" ) {
4163 $default_value = "Disabled";
4164 } else {
4165 $default_value = $addrbook_global_dsn;
4166 }
4167 print "[$WHT$addrbook_global_dsn$NRM]: $WHT";
4168 $new_dsn = <STDIN>;
4169 if ( $new_dsn eq "\n" ) {
4170 $new_dsn = "";
4171 } else {
4172 $new_dsn =~ s/[\r\n]//g;
4173 $new_dsn =~ s/^\s+$//g;
4174 }
4175 return $new_dsn;
4176 }
4177
4178 sub command99 {
4179 print "This is the name of the table you want to store the global address book\n";
4180 print "data in. Default table name is 'global_abook'. Address book uses same\n";
4181 print "database format as personal address book.\n";
4182 print "\n";
4183 print "[$WHT$addrbook_global_table$NRM]: $WHT";
4184 $new_table = <STDIN>;
4185 if ( $new_table eq "\n" ) {
4186 $new_table = $addrbook_global_table;
4187 } else {
4188 $new_table =~ s/[\r\n]//g;
4189 }
4190 return $new_table;
4191 }
4192
4193 sub command910 {
4194 print "This option controls users\' ability to add or modify records stored \n";
4195 print "in global address book\n";
4196
4197 if ( lc($addrbook_global_writeable) eq 'true' ) {
4198 $default_value = "y";
4199 } else {
4200 $default_value = "n";
4201 }
4202 print "Allow writing into global address book? (y/n) [$WHT$default_value$NRM]: $WHT";
4203 $addrbook_global_writeable = <STDIN>;
4204 if ( ( $addrbook_global_writeable =~ /^y\n/i ) || ( ( $addrbook_global_writeable =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
4205 $addrbook_global_writeable = 'true';
4206 } else {
4207 $addrbook_global_writeable = 'false';
4208 }
4209 return $addrbook_global_writeable;
4210 }
4211
4212 sub command911 {
4213 print "Enable this option if you want to see listing of addresses stored \n";
4214 print "in global address book\n";
4215
4216 if ( lc($addrbook_global_listing) eq 'true' ) {
4217 $default_value = "y";
4218 } else {
4219 $default_value = "n";
4220 }
4221 print "Allow listing of global address book? (y/n) [$WHT$default_value$NRM]: $WHT";
4222 $addrbook_global_listing = <STDIN>;
4223 if ( ( $addrbook_global_listing =~ /^y\n/i ) || ( ( $addrbook_global_listing =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
4224 $addrbook_global_listing = 'true';
4225 } else {
4226 $addrbook_global_listing = 'false';
4227 }
4228 return $addrbook_global_listing;
4229 }
4230
4231
4232 # Default language
4233 sub commandA1 {
4234 print "SquirrelMail attempts to set the language in many ways. If it\n";
4235 print "can not figure it out in another way, it will default to this\n";
4236 print "language. Please use the code for the desired language.\n";
4237 print "\n";
4238 print "[$WHT$squirrelmail_default_language$NRM]: $WHT";
4239 $new_squirrelmail_default_language = <STDIN>;
4240 if ( $new_squirrelmail_default_language eq "\n" ) {
4241 $new_squirrelmail_default_language = $squirrelmail_default_language;
4242 } else {
4243 $new_squirrelmail_default_language =~ s/[\r\n]//g;
4244 $new_squirrelmail_default_language =~ s/^\s+$//g;
4245 }
4246 return $new_squirrelmail_default_language;
4247 }
4248 # Default Charset
4249 sub commandA2 {
4250 print "This option controls what character set is used when sending\n";
4251 print "mail and when sending HTML to the browser. Option works only\n";
4252 print "with US English (en_US) translation. Other translations use\n";
4253 print "charsets that are set in translation settings.\n";
4254 print "\n";
4255
4256 print "[$WHT$default_charset$NRM]: $WHT";
4257 $new_default_charset = <STDIN>;
4258 if ( $new_default_charset eq "\n" ) {
4259 $new_default_charset = $default_charset;
4260 } else {
4261 $new_default_charset =~ s/[\r\n]//g;
4262 }
4263 return $new_default_charset;
4264 }
4265 # Alternative language names
4266 sub commandA3 {
4267 print "Enable this option if you want to see localized language names in\n";
4268 print "language selection box. Note, that this option can trigger\n";
4269 print "installation of foreign language support modules in some browsers.\n";
4270 print "\n";
4271
4272 if ( lc($show_alternative_names) eq 'true' ) {
4273 $default_value = "y";
4274 } else {
4275 $default_value = "n";
4276 }
4277 print "Show alternative language names? (y/n) [$WHT$default_value$NRM]: $WHT";
4278 $show_alternative_names = <STDIN>;
4279 if ( ( $show_alternative_names =~ /^y\n/i ) || ( ( $show_alternative_names =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
4280 $show_alternative_names = 'true';
4281 } else {
4282 $show_alternative_names = 'false';
4283 }
4284 return $show_alternative_names;
4285 }
4286
4287 # Aggressive decoding
4288 sub commandA4 {
4289 print "Enable this option if you want to use CPU and memory intensive decoding\n";
4290 print "functions. This option allows reading multibyte charset, that are used\n";
4291 print "in Eastern Asia. SquirrelMail will try to use recode functions here,\n";
4292 print "even when you have disabled use of recode in Tweaks section.\n";
4293 print "\n";
4294
4295 if ( lc($aggressive_decoding) eq 'true' ) {
4296 $default_value = "y";
4297 } else {
4298 $default_value = "n";
4299 }
4300 print "Enable aggressive decoding? (y/n) [$WHT$default_value$NRM]: $WHT";
4301 $aggressive_decoding = <STDIN>;
4302 if ( ( $aggressive_decoding =~ /^y\n/i ) || ( ( $aggressive_decoding =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
4303 $aggressive_decoding = 'true';
4304 } else {
4305 $aggressive_decoding = 'false';
4306 }
4307 return $aggressive_decoding;
4308 }
4309
4310 # Lossy encoding
4311 sub commandA5 {
4312 print "Enable this option if you want to allow lossy charset encoding in message\n";
4313 print "composition pages. This option allows charset conversions when output\n";
4314 print "charset does not support all symbols used in original charset. Symbols\n";
4315 print "unsupported by output charset will be replaced with question marks.\n";
4316 print "\n";
4317
4318 if ( lc($lossy_encoding) eq 'true' ) {
4319 $default_value = "y";
4320 } else {
4321 $default_value = "n";
4322 }
4323 print "Enable lossy encoding? (y/n) [$WHT$default_value$NRM]: $WHT";
4324 $lossy_encoding = <STDIN>;
4325 if ( ( $lossy_encoding =~ /^y\n/i ) || ( ( $lossy_encoding =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
4326 $lossy_encoding = 'true';
4327 } else {
4328 $lossy_encoding = 'false';
4329 }
4330 return $lossy_encoding;
4331 }
4332
4333 # display html emails in iframe
4334 sub commandB2 {
4335 print "This option can enable html email rendering inside iframe.\n";
4336 print "Inline frames are used in order to provide sandbox environment";
4337 print "for html code included in html formated emails.";
4338 print "Option is experimental and might have glitches in some parts of code.";
4339 print "\n";
4340
4341 if ( lc($use_iframe) eq 'true' ) {
4342 $default_value = "y";
4343 } else {
4344 $default_value = "n";
4345 }
4346 print "Display html emails in iframe? (y/n) [$WHT$default_value$NRM]: $WHT";
4347 $use_iframe = <STDIN>;
4348 if ( ( $use_iframe =~ /^y\n/i ) || ( ( $use_iframe =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
4349 $use_iframe = 'true';
4350 } else {
4351 $use_iframe = 'false';
4352 }
4353 return $use_iframe;
4354 }
4355
4356 # ask user info
4357 sub command_ask_user_info {
4358 print "New users need to supply their real name and email address to\n";
4359 print "send out proper mails. When this option is enabled, a user that\n";
4360 print "logs in for the first time will be redirected to the Personal\n";
4361 print "Options screen and asked to supply their personal data.\n";
4362 print "\n";
4363
4364 if ( lc($ask_user_info) eq 'true' ) {
4365 $default_value = "y";
4366 } else {
4367 $default_value = "n";
4368 }
4369 print "Ask user info? (y/n) [$WHT$default_value$NRM]: $WHT";
4370 $ask_user_info = <STDIN>;
4371 if ( ( $ask_user_info =~ /^y\n/i ) || ( ( $ask_user_info =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
4372 $ask_user_info = 'true';
4373 } else {
4374 $ask_user_info = 'false';
4375 }
4376 return $ask_user_info;
4377 }
4378
4379 # use icons
4380 sub commandB3 {
4381 print "Enabling this option will cause icons to be used instead of text\n";
4382 print "markers next to each message in mailbox lists that represent\n";
4383 print "new, read, flagged, and deleted messages, as well as those that\n";
4384 print "have been replied to and forwarded. Icons are also used next to\n";
4385 print "(un)expanded folders in the folder list (Oldway = false). These\n";
4386 print "icons are quite small, but will obviously be more of a resource\n";
4387 print "drain than text markers.\n";
4388 print "\n";
4389
4390 if ( lc($use_icons) eq 'true' ) {
4391 $default_value = "y";
4392 } else {
4393 $default_value = "n";
4394 }
4395 print "Use icons? (y/n) [$WHT$default_value$NRM]: $WHT";
4396 $use_icons = <STDIN>;
4397 if ( ( $use_icons =~ /^y\n/i ) || ( ( $use_icons =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
4398 $use_icons = 'true';
4399 } else {
4400 $use_icons = 'false';
4401 }
4402 return $use_icons;
4403 }
4404 # php recode
4405 sub commandB4 {
4406 print "Enable this option if you want to use php recode functions to read\n";
4407 print "emails written in charset that differs from the one that is set in\n";
4408 print "translation selected by user. Code is experimental, it might cause\n";
4409 print "errors, if email contains charset unsupported by recode or if your\n";
4410 print "php does not have recode support.\n";
4411 print "\n";
4412
4413 if ( lc($use_php_recode) eq 'true' ) {
4414 $default_value = "y";
4415 } else {
4416 $default_value = "n";
4417 }
4418 print "Use php recode functions? (y/n) [$WHT$default_value$NRM]: $WHT";
4419 $use_php_recode = <STDIN>;
4420 if ( ( $use_php_recode =~ /^y\n/i ) || ( ( $use_php_recode =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
4421 $use_php_recode = 'true';
4422 } else {
4423 $use_php_recode = 'false';
4424 }
4425 return $use_php_recode;
4426 }
4427 # php iconv
4428 sub commandB5 {
4429 print "Enable this option if you want to use php iconv functions to read\n";
4430 print "emails written in charset that differs from the one that is set in\n";
4431 print "translation selected by user. Code is experimental, it works only\n";
4432 print "with translations that use utf-8 charset. Code might cause errors,\n";
4433 print "if email contains charset unsupported by iconv or if your php does\n";
4434 print "not have iconv support.\n";
4435 print "\n";
4436
4437 if ( lc($use_php_iconv) eq 'true' ) {
4438 $default_value = "y";
4439 } else {
4440 $default_value = "n";
4441 }
4442 print "Use php iconv functions? (y/n) [$WHT$default_value$NRM]: $WHT";
4443 $use_php_iconv = <STDIN>;
4444 if ( ( $use_php_iconv =~ /^y\n/i ) || ( ( $use_php_iconv =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
4445 $use_php_iconv = 'true';
4446 } else {
4447 $use_php_iconv = 'false';
4448 }
4449 return $use_php_iconv;
4450 }
4451
4452 # buffer output
4453 sub commandB6 {
4454 print "In some cases, buffering all output (holding it on the server until\n";
4455 print "the full page is ready to send to the browser) allows more complex\n";
4456 print "functionality, especially for plugins that want to add headers on hooks\n";
4457 print "that are beyond the point of output having been sent to the browser\n";
4458 print "otherwise. Most plugins that need this functionality will enable it\n";
4459 print "automatically on their own, but you can turn it on manually here. You'd\n";
4460 print "usually want to do this if you want to specify a custom output handler\n";
4461 print "for parsing the output - you can do that by specifying a value for\n";
4462 print "\$buffered_output_handler in config_local.php. Don't forget to define\n";
4463 print "a function of the same name as what \$buffered_output_handler is set to.\n";
4464 print "\n";
4465
4466 if ( lc($buffer_output) eq 'true' ) {
4467 $default_value = "y";
4468 } else {
4469 $default_value = "n";
4470 }
4471 print "Buffer all output? (y/n) [$WHT$default_value$NRM]: $WHT";
4472 $buffer_output = <STDIN>;
4473 if ( ( $buffer_output =~ /^y\n/i ) || ( ( $buffer_output =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
4474 $buffer_output = 'true';
4475 } else {
4476 $buffer_output = 'false';
4477 }
4478 return $buffer_output;
4479 }
4480
4481 # configtest block
4482 sub commandB7 {
4483 print "Enable this option if you want to check SquirrelMail configuration\n";
4484 print "remotely with configtest.php script.\n";
4485 print "\n";
4486
4487 if ( lc($allow_remote_configtest) eq 'true' ) {
4488 $default_value = "y";
4489 } else {
4490 $default_value = "n";
4491 }
4492 print "Allow remote configuration tests? (y/n) [$WHT$default_value$NRM]: $WHT";
4493 $allow_remote_configtest = <STDIN>;
4494 if ( ( $allow_remote_configtest =~ /^y\n/i ) || ( ( $allow_remote_configtest =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
4495 $allow_remote_configtest = 'true';
4496 } else {
4497 $allow_remote_configtest = 'false';
4498 }
4499 return $allow_remote_configtest;
4500 }
4501
4502 # Default Icon theme
4503 sub command53 {
4504 print "You may change the path to the default icon theme to be used, if icons\n";
4505 print "have been enabled. This theme will be used when an icon cannot be\n";
4506 print "found in the current theme, or when no icon theme is specified. If\n";
4507 print "left blank, and icons are enabled, the default theme will be used\n";
4508 print "from images/themes/default/.\n";
4509 print "\n";
4510 print "To clear out an existing value, just type a space for the input.\n";
4511 print "\n";
4512 print "Please be aware of the following: \n";
4513 print " - Relative URLs are relative to the config dir\n";
4514 print " to use the icon themes directory, use ../images/themes/newtheme/\n";
4515 print " - The icon theme may be outside the SquirrelMail directory, but\n";
4516 print " it must be web accessible.\n";
4517 print "[$WHT$icon_theme_def$NRM]: $WHT";
4518 $new_icon_theme_def = <STDIN>;
4519
4520 if ( $new_icon_theme_def eq "\n" ) {
4521 $new_icon_theme_def = $icon_theme_def;
4522 } else {
4523 $new_icon_theme_def =~ s/[\r\n]//g;
4524 }
4525 $new_icon_theme_def =~ s/^\s*//;
4526 return $new_icon_theme_def;
4527 }
4528
4529 # SquirrelMail debug mode (since 1.5.2)
4530 sub commandB8 {
4531 print "When debugging or developing SquirrelMail, you may want to increase\n";
4532 print "the verbosity of certain kinds of errors, notices, and/or diagnostics.\n";
4533 print "You may enable one or more of the debugging modes here. Please make\n";
4534 print "sure that you have turned off debugging if you are using SquirrelMail\n";
4535 print "in a production environment.\n\n";
4536
4537 $input = "";
4538 while ( $input ne "d\n" ) {
4539 $sm_debug_mode = convert_debug_constants_to_binary_integer($sm_debug_mode);
4540
4541 # per include/constants.php, here are the debug mode values:
4542 #
4543 # 0 SM_DEBUG_MODE_OFF
4544 # 1 SM_DEBUG_MODE_SIMPLE
4545 # 512 SM_DEBUG_MODE_MODERATE
4546 # 524288 SM_DEBUG_MODE_ADVANCED
4547 # 536870912 SM_DEBUG_MODE_STRICT
4548 #
4549 print "\n# Enabled? Description\n";
4550 print "---------------------------------------------------------------------\n";
4551 print "0 " . ($sm_debug_mode == 0 ? "y" : " ")
4552 . " No debugging (recommended in production environments)\n";
4553 print "1 " . ($sm_debug_mode & 1 ? "y" : " ")
4554 . " Simple debugging (PHP E_ERROR)\n";
4555 print "2 " . ($sm_debug_mode & 512 ? "y" : " ")
4556 . " Moderate debugging (PHP E_ALL)\n";
4557 print "3 " . ($sm_debug_mode & 524288 ? "y" : " ")
4558 . " Advanced debugging (PHP E_ALL plus log errors\n";
4559 print " intentionally suppressed)\n";
4560 print "4 " . ($sm_debug_mode & 536870912 ? "y" : " ")
4561 . " Strict debugging (PHP E_STRICT)\n";
4562 print "\n";
4563
4564 print "SquirrelMail debug mode (0,1,2,3,4) or d when done? : $WHT";
4565 $input = <STDIN>;
4566 if ( $input eq "d\n" ) {
4567 # nothing
4568 } elsif ($input !~ /^[0-9]+\n$/) {
4569 print "\nInvalid configuration value.\n";
4570 print "\nPress enter to continue...";
4571 $tmp = <STDIN>;
4572 } elsif ( $input == "0\n" ) {
4573 $sm_debug_mode = 0;
4574 } elsif ( $input == "1\n" ) {
4575 if ($sm_debug_mode & 1) {
4576 $sm_debug_mode ^= 1;
4577 } else {
4578 $sm_debug_mode |= 1;
4579 }
4580 } elsif ( $input == "2\n" ) {
4581 if ($sm_debug_mode & 512) {
4582 $sm_debug_mode ^= 512;
4583 } else {
4584 $sm_debug_mode |= 512;
4585 }
4586 } elsif ( $input == "3\n" ) {
4587 if ($sm_debug_mode & 524288) {
4588 $sm_debug_mode ^= 524288;
4589 } else {
4590 $sm_debug_mode |= 524288;
4591 }
4592 } elsif ( $input == "4\n" ) {
4593 if ($sm_debug_mode & 536870912) {
4594 $sm_debug_mode ^= 536870912;
4595 } else {
4596 $sm_debug_mode |= 536870912;
4597 }
4598 } else {
4599 print "\nInvalid configuration value.\n";
4600 print "\nPress enter to continue...";
4601 $tmp = <STDIN>;
4602 }
4603 print "\n";
4604 }
4605 $sm_debug_mode = convert_debug_binary_integer_to_constants($sm_debug_mode);
4606 return $sm_debug_mode;
4607 }
4608
4609 # Secured configuration mode (since 1.5.2)
4610 sub commandB9 {
4611 print "This option allows you to enable \"Secured Configuration\" mode,\n";
4612 print "which will guarantee that certain settings made herein will be\n";
4613 print "made immutable and will not be subject to override by either friendly\n";
4614 print "or unfriendly code/plugins. Only a small number of settings herein\n";
4615 print "will be used in this manner - just those that are deemed to be a\n";
4616 print "potential security threat when rouge plugin or other code may be\n";
4617 print "executed inside SquirrelMail.\n";
4618 print "\n";
4619
4620 if ( lc($secured_config) eq 'true' ) {
4621 $default_value = "y";
4622 } else {
4623 $default_value = "n";
4624 }
4625 print "Enable secured configuration mode? (y/n) [$WHT$default_value$NRM]: $WHT";
4626 $secured_config = <STDIN>;
4627 if ( ( $secured_config =~ /^y\n/i ) || ( ( $secured_config =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
4628 $secured_config = 'true';
4629 } else {
4630 $secured_config = 'false';
4631 }
4632 return $secured_config;
4633 }
4634
4635 # Set a (non-standard) HTTPS port
4636 sub commandB10 {
4637 print "If you run HTTPS (SSL-secured HTTP) on a non-standard port, you should\n";
4638 print "indicate that port here. Even if you do not, SquirrelMail may still\n";
4639 print "auto-detect secure connections, but it is safer and also very useful\n";
4640 print "for third party plugins if you specify the port number here.\n";
4641 print "\n";
4642 print "Most SquirrelMail administrators will not need to use this setting\n";
4643 print "because most all web servers use port 443 for HTTPS connections, and\n";
4644 print "SquirrelMail assumes 443 unless something else is given here.\n";
4645 print "\n";
4646
4647 print "Enter your HTTPS port [$sq_https_port]: ";
4648 my $tmp = <STDIN>;
4649 $tmp = trim($tmp);
4650 # value is not modified, if user hits Enter or enters space
4651 if ($tmp ne '') {
4652 # make sure that input is numeric
4653 if ($tmp =~ /^\d+$/) {
4654 $sq_https_port = $tmp;
4655 } else {
4656 print "\n";
4657 print "--- INPUT ERROR ---\n";
4658 print "\n";
4659 print "If you want to change this setting, you must enter a number.\n";
4660 print "If you want to keep the original value, just press Enter.\n\n";
4661 print "Press Enter to continue...";
4662 $tmp = <STDIN>;
4663 }
4664 }
4665 return $sq_https_port;
4666 }
4667
4668 # Ignore HTTP_X_FORWARDED_* headers?
4669 sub commandB11 {
4670
4671 if ( lc($sq_ignore_http_x_forwarded_headers) eq 'true' ) {
4672 $default_value = "y";
4673 } else {
4674 $default_value = "n";
4675 }
4676
4677 print "Because HTTP_X_FORWARDED_* headers can be sent by the client and\n";
4678 print "therefore possibly exploited by an outsider, SquirrelMail ignores\n";
4679 print "them by default. If a proxy server or other machine sits between\n";
4680 print "clients and your SquirrelMail server, you can turn this off to\n";
4681 print "tell SquirrelMail to use such headers.\n";
4682 print "\n";
4683
4684 print "Ignore HTTP_X_FORWARDED headers? (y/n) [$WHT$default_value$NRM]: $WHT";
4685 $sq_ignore_http_x_forwarded_headers = <STDIN>;
4686 if ( ( $sq_ignore_http_x_forwarded_headers =~ /^y\n/i ) || ( ( $sq_ignore_http_x_forwarded_headers =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
4687 $sq_ignore_http_x_forwarded_headers = 'true';
4688 } else {
4689 $sq_ignore_http_x_forwarded_headers = 'false';
4690 }
4691 return $sq_ignore_http_x_forwarded_headers;
4692 }
4693
4694 sub save_data {
4695 $tab = " ";
4696 if ( open( CF, ">config.php" ) ) {
4697 print CF "<?php\n";
4698 print CF "\n";
4699
4700 print CF "/**\n";
4701 print CF " * SquirrelMail Configuration File\n";
4702 print CF " * Created using the configure script, conf.pl\n";
4703 print CF " */\n";
4704 print CF "\n";
4705
4706 if ($print_config_version) {
4707 print CF "\$config_version = '$print_config_version';\n";
4708 }
4709 # integer
4710 print CF "\$config_use_color = $config_use_color;\n";
4711 print CF "\n";
4712
4713 # string
4714 print CF "\$org_name = \"$org_name\";\n";
4715 # string
4716 print CF "\$org_logo = " . &change_to_SM_path($org_logo) . ";\n";
4717 $org_logo_width |= 0;
4718 $org_logo_height |= 0;
4719 # string
4720 print CF "\$org_logo_width = '$org_logo_width';\n";
4721 # string
4722 print CF "\$org_logo_height = '$org_logo_height';\n";
4723 # string that can contain variables.
4724 print CF "\$org_title = \"$org_title\";\n";
4725 # string
4726 print CF "\$signout_page = " . &change_to_SM_path($signout_page) . ";\n";
4727 # string
4728 print CF "\$frame_top = '$frame_top';\n";
4729 print CF "\n";
4730
4731 print CF "\$provider_uri = '$provider_uri';\n";
4732 print CF "\n";
4733
4734 print CF "\$provider_name = '$provider_name';\n";
4735 print CF "\n";
4736
4737 # string that can contain variables
4738 print CF "\$motd = \"$motd\";\n";
4739 print CF "\n";
4740
4741 # string
4742 print CF "\$squirrelmail_default_language = '$squirrelmail_default_language';\n";
4743 # string
4744 print CF "\$default_charset = '$default_charset';\n";
4745 # boolean
4746 print CF "\$show_alternative_names = $show_alternative_names;\n";
4747 # boolean
4748 print CF "\$aggressive_decoding = $aggressive_decoding;\n";
4749 # boolean
4750 print CF "\$lossy_encoding = $lossy_encoding;\n";
4751 print CF "\n";
4752
4753 # string
4754 print CF "\$domain = '$domain';\n";
4755 # string
4756 print CF "\$imapServerAddress = '$imapServerAddress';\n";
4757 # integer
4758 print CF "\$imapPort = $imapPort;\n";
4759 # boolean
4760 print CF "\$useSendmail = $useSendmail;\n";
4761 # string
4762 print CF "\$smtpServerAddress = '$smtpServerAddress';\n";
4763 # integer
4764 print CF "\$smtpPort = $smtpPort;\n";
4765 # string
4766 print CF "\$sendmail_path = '$sendmail_path';\n";
4767 # string
4768 print CF "\$sendmail_args = '$sendmail_args';\n";
4769 # boolean
4770 # print CF "\$use_authenticated_smtp = $use_authenticated_smtp;\n";
4771 # boolean
4772 print CF "\$pop_before_smtp = $pop_before_smtp;\n";
4773 # string
4774 print CF "\$pop_before_smtp_host = '$pop_before_smtp_host';\n";
4775 # string
4776 print CF "\$imap_server_type = '$imap_server_type';\n";
4777 # boolean
4778 print CF "\$invert_time = $invert_time;\n";
4779 # string
4780 print CF "\$optional_delimiter = '$optional_delimiter';\n";
4781 # string
4782 print CF "\$encode_header_key = '$encode_header_key';\n";
4783 print CF "\n";
4784
4785 # string
4786 print CF "\$default_folder_prefix = '$default_folder_prefix';\n";
4787 # string
4788 print CF "\$trash_folder = '$trash_folder';\n";
4789 # string
4790 print CF "\$sent_folder = '$sent_folder';\n";
4791 # string
4792 print CF "\$draft_folder = '$draft_folder';\n";
4793 # boolean
4794 print CF "\$default_move_to_trash = $default_move_to_trash;\n";
4795 # boolean
4796 print CF "\$default_move_to_sent = $default_move_to_sent;\n";
4797 # boolean
4798 print CF "\$default_save_as_draft = $default_save_as_draft;\n";
4799 # boolean
4800 print CF "\$show_prefix_option = $show_prefix_option;\n";
4801 # boolean
4802 print CF "\$list_special_folders_first = $list_special_folders_first;\n";
4803 # boolean
4804 print CF "\$use_special_folder_color = $use_special_folder_color;\n";
4805 # boolean
4806 print CF "\$auto_expunge = $auto_expunge;\n";
4807 # boolean
4808 print CF "\$default_sub_of_inbox = $default_sub_of_inbox;\n";
4809 # boolean
4810 print CF "\$show_contain_subfolders_option = $show_contain_subfolders_option;\n";
4811 # integer
4812 print CF "\$default_unseen_notify = $default_unseen_notify;\n";
4813 # integer
4814 print CF "\$default_unseen_type = $default_unseen_type;\n";
4815 # boolean
4816 print CF "\$auto_create_special = $auto_create_special;\n";
4817 # boolean
4818 print CF "\$delete_folder = $delete_folder;\n";
4819 # boolean
4820 print CF "\$noselect_fix_enable = $noselect_fix_enable;\n";
4821
4822 print CF "\n";
4823
4824 # string
4825 print CF "\$data_dir = " . &change_to_SM_path($data_dir) . ";\n";
4826 # string that can contain a variable
4827 print CF "\$attachment_dir = " . &change_to_SM_path($attachment_dir) . ";\n";
4828 # integer
4829 print CF "\$dir_hash_level = $dir_hash_level;\n";
4830 # string
4831 print CF "\$default_left_size = '$default_left_size';\n";
4832 # boolean
4833 print CF "\$force_username_lowercase = $force_username_lowercase;\n";
4834 # boolean
4835 print CF "\$default_use_priority = $default_use_priority;\n";
4836 # boolean
4837 print CF "\$hide_sm_attributions = $hide_sm_attributions;\n";
4838 # boolean
4839 print CF "\$default_use_mdn = $default_use_mdn;\n";
4840 # boolean
4841 print CF "\$edit_identity = $edit_identity;\n";
4842 # boolean
4843 print CF "\$edit_name = $edit_name;\n";
4844 # boolean
4845 print CF "\$hide_auth_header = $hide_auth_header;\n";
4846 # boolean
4847 print CF "\$disable_thread_sort = $disable_thread_sort;\n";
4848 # boolean
4849 print CF "\$disable_server_sort = $disable_server_sort;\n";
4850 # boolean
4851 print CF "\$allow_charset_search = $allow_charset_search;\n";
4852 # integer
4853 print CF "\$allow_advanced_search = $allow_advanced_search;\n";
4854 print CF "\n";
4855 # integer
4856 print CF "\$time_zone_type = $time_zone_type;\n";
4857 print CF "\n";
4858 # string
4859 print CF "\$config_location_base = '$config_location_base';\n";
4860 print CF "\n";
4861 # boolean
4862 print CF "\$disable_plugins = $disable_plugins;\n";
4863 # string
4864 print CF "\$disable_plugins_user = '$disable_plugins_user';\n";
4865 print CF "\n";
4866
4867 # all plugins are strings
4868 for ( $ct = 0 ; $ct <= $#plugins ; $ct++ ) {
4869 print CF "\$plugins[] = '$plugins[$ct]';\n";
4870 }
4871 print CF "\n";
4872
4873 # strings
4874 if ( $user_theme_default eq '' ) { $user_theme_default = '0'; }
4875 print CF "\$user_theme_default = $user_theme_default;\n";
4876
4877 for ( $count = 0 ; $count <= $#user_theme_name ; $count++ ) {
4878 if ($user_theme_path[$count] eq 'none') {
4879 $path = '\'none\'';
4880 } else {
4881 $path = &change_to_SM_path($user_theme_path[$count]);
4882 }
4883 print CF "\$user_themes[$count]['PATH'] = " . $path . ";\n";
4884 # escape theme name so it can contain single quotes.
4885 $esc_name = $user_theme_name[$count];
4886 $esc_name =~ s/\\/\\\\/g;
4887 $esc_name =~ s/'/\\'/g;
4888 print CF "\$user_themes[$count]['NAME'] = '$esc_name';\n";
4889 }
4890 print CF "\n";
4891
4892 if ( $icon_theme_def eq '' ) { $icon_theme_def = '0'; }
4893 print CF "\$icon_theme_def = $icon_theme_def;\n";
4894 if ( $icon_theme_fallback eq '' ) { $icon_theme_fallback = '0'; }
4895 print CF "\$icon_theme_fallback = $icon_theme_fallback;\n";
4896
4897 for ( $count = 0 ; $count <= $#icon_theme_name ; $count++ ) {
4898 $path = $icon_theme_path[$count];
4899 if ($path eq 'none' || $path eq 'template') {
4900 $path = "'".$path."'";
4901 } else {
4902 $path = &change_to_SM_path($icon_theme_path[$count]);
4903 }
4904 print CF "\$icon_themes[$count]['PATH'] = " . $path . ";\n";
4905 # escape theme name so it can contain single quotes.
4906 $esc_name = $icon_theme_name[$count];
4907 $esc_name =~ s/\\/\\\\/g;
4908 $esc_name =~ s/'/\\'/g;
4909 print CF "\$icon_themes[$count]['NAME'] = '$esc_name';\n";
4910 }
4911 print CF "\n";
4912
4913 if ( $templateset_default eq '' ) { $templateset_default = 'default'; }
4914 print CF "\$templateset_default = '$templateset_default';\n";
4915
4916 if ( $templateset_fallback eq '' ) { $templateset_fallback = 'default'; }
4917 print CF "\$templateset_fallback = '$templateset_fallback';\n";
4918
4919 if ( $rpc_templateset eq '' ) { $rpc_templateset = 'default_rpc'; }
4920 print CF "\$rpc_templateset = '$rpc_templateset';\n";
4921
4922 for ( $count = 0 ; $count <= $#templateset_name ; $count++ ) {
4923
4924 # don't include RPC template sets
4925 #
4926 if ( $templateset_id[$count] =~ /_rpc$/ ) { next; }
4927
4928 print CF "\$aTemplateSet[$count]['ID'] = '" . $templateset_id[$count] . "';\n";
4929 # escape theme name so it can contain single quotes.
4930 $esc_name = $templateset_name[$count];
4931 $esc_name =~ s/\\/\\\\/g;
4932 $esc_name =~ s/'/\\'/g;
4933 print CF "\$aTemplateSet[$count]['NAME'] = '$esc_name';\n";
4934 }
4935 print CF "\n";
4936
4937
4938 # integer
4939 print CF "\$default_fontsize = '$default_fontsize';\n";
4940 # string
4941 print CF "\$default_fontset = '$default_fontset';\n";
4942 print CF "\n";
4943 # assoc. array (maybe initial value should be set somewhere else)
4944 print CF '$fontsets = array();'."\n";
4945 while (($fontset_name, $fontset_value) = each(%fontsets)) {
4946 print CF "\$fontsets\['$fontset_name'\] = '$fontset_value';\n";
4947 }
4948 print CF "\n";
4949
4950 ## Address books
4951 # boolean
4952 print CF "\$default_use_javascript_addr_book = $default_use_javascript_addr_book;\n";
4953 for ( $count = 0 ; $count <= $#ldap_host ; $count++ ) {
4954 print CF "\$ldap_server[$count] = array(\n";
4955 # string
4956 print CF " 'host' => '$ldap_host[$count]',\n";
4957 # string
4958 print CF " 'base' => '$ldap_base[$count]'";
4959 if ( $ldap_name[$count] ) {
4960 print CF ",\n";
4961 # string
4962 print CF " 'name' => '$ldap_name[$count]'";
4963 }
4964 if ( $ldap_port[$count] ) {
4965 print CF ",\n";
4966 # integer
4967 print CF " 'port' => $ldap_port[$count]";
4968 }
4969 if ( $ldap_charset[$count] ) {
4970 print CF ",\n";
4971 # string
4972 print CF " 'charset' => '$ldap_charset[$count]'";
4973 }
4974 if ( $ldap_maxrows[$count] ) {
4975 print CF ",\n";
4976 # integer
4977 print CF " 'maxrows' => $ldap_maxrows[$count]";
4978 }
4979 # string
4980 if ( $ldap_filter[$count] ) {
4981 print CF ",\n";
4982 print CF " 'filter' => '$ldap_filter[$count]'";
4983 }
4984 if ( $ldap_binddn[$count] ) {
4985 print CF ",\n";
4986 # string
4987 print CF " 'binddn' => '$ldap_binddn[$count]'";
4988 if ( $ldap_bindpw[$count] ) {
4989 print CF ",\n";
4990 # string
4991 print CF " 'bindpw' => '$ldap_bindpw[$count]'";
4992 }
4993 }
4994 if ( $ldap_protocol[$count] ) {
4995 print CF ",\n";
4996 # integer
4997 print CF " 'protocol' => $ldap_protocol[$count]";
4998 }
4999 if ( $ldap_limit_scope[$count] ) {
5000 print CF ",\n";
5001 # boolean
5002 print CF " 'limit_scope' => $ldap_limit_scope[$count]";
5003 }
5004 if ( $ldap_listing[$count] ) {
5005 print CF ",\n";
5006 # boolean
5007 print CF " 'listing' => $ldap_listing[$count]";
5008 }
5009 if ( $ldap_writeable[$count] ) {
5010 print CF ",\n";
5011 # boolean
5012 print CF " 'writeable' => $ldap_writeable[$count]";
5013 }
5014 if ( $ldap_search_tree[$count] ) {
5015 print CF ",\n";
5016 # integer
5017 print CF " 'search_tree' => $ldap_search_tree[$count]";
5018 }
5019 if ( $ldap_listing[$count] ) {
5020 print CF ",\n";
5021 # boolean
5022 print CF " 'starttls' => $ldap_starttls[$count]";
5023 }
5024 print CF "\n";
5025 print CF ");\n";
5026 print CF "\n";
5027 }
5028
5029 # string
5030 print CF "\$addrbook_dsn = '$addrbook_dsn';\n";
5031 # string
5032 print CF "\$addrbook_table = '$addrbook_table';\n\n";
5033 # string
5034 print CF "\$prefs_dsn = '$prefs_dsn';\n";
5035 # string
5036 print CF "\$prefs_table = '$prefs_table';\n";
5037 # string
5038 print CF "\$prefs_user_field = '$prefs_user_field';\n";
5039 # integer
5040 print CF "\$prefs_user_size = $prefs_user_size;\n";
5041 # string
5042 print CF "\$prefs_key_field = '$prefs_key_field';\n";
5043 # integer
5044 print CF "\$prefs_key_size = $prefs_key_size;\n";
5045 # string
5046 print CF "\$prefs_val_field = '$prefs_val_field';\n";
5047 # integer
5048 print CF "\$prefs_val_size = $prefs_val_size;\n\n";
5049 # string
5050 print CF "\$addrbook_global_dsn = '$addrbook_global_dsn';\n";
5051 # string
5052 print CF "\$addrbook_global_table = '$addrbook_global_table';\n";
5053 # boolean
5054 print CF "\$addrbook_global_writeable = $addrbook_global_writeable;\n";
5055 # boolean
5056 print CF "\$addrbook_global_listing = $addrbook_global_listing;\n\n";
5057 # string
5058 print CF "\$abook_global_file = '$abook_global_file';\n";
5059 # boolean
5060 print CF "\$abook_global_file_writeable = $abook_global_file_writeable;\n\n";
5061 # boolean
5062 print CF "\$abook_global_file_listing = $abook_global_file_listing;\n\n";
5063 # integer
5064 print CF "\$abook_file_line_length = $abook_file_line_length;\n\n";
5065 # boolean
5066 print CF "\$no_list_for_subscribe = $no_list_for_subscribe;\n";
5067
5068 # string
5069 print CF "\$smtp_auth_mech = '$smtp_auth_mech';\n";
5070 print CF "\$smtp_sitewide_user = '". quote_single($smtp_sitewide_user) ."';\n";
5071 print CF "\$smtp_sitewide_pass = '". quote_single($smtp_sitewide_pass) ."';\n";
5072 # string
5073 print CF "\$imap_auth_mech = '$imap_auth_mech';\n";
5074 # boolean
5075 print CF "\$use_imap_tls = $use_imap_tls;\n";
5076 # boolean
5077 print CF "\$use_smtp_tls = $use_smtp_tls;\n";
5078 # string
5079 print CF "\$session_name = '$session_name';\n";
5080 # boolean
5081 print CF "\$only_secure_cookies = $only_secure_cookies;\n";
5082
5083 print CF "\n";
5084
5085 # boolean
5086 print CF "\$use_iframe = $use_iframe;\n";
5087 # boolean
5088 print CF "\$ask_user_info = $ask_user_info;\n";
5089 # boolean
5090 print CF "\$use_icons = $use_icons;\n";
5091 print CF "\n";
5092 # boolean
5093 print CF "\$use_php_recode = $use_php_recode;\n";
5094 # boolean
5095 print CF "\$use_php_iconv = $use_php_iconv;\n";
5096 print CF "\n";
5097 # boolean
5098 print CF "\$buffer_output = $buffer_output;\n";
5099 print CF "\n";
5100 # boolean
5101 print CF "\$allow_remote_configtest = $allow_remote_configtest;\n";
5102 print CF "\$secured_config = $secured_config;\n";
5103 # integer
5104 print CF "\$sq_https_port = $sq_https_port;\n";
5105 # boolean
5106 print CF "\$sq_ignore_http_x_forwarded_headers = $sq_ignore_http_x_forwarded_headers;\n";
5107 # (binary) integer or constant - convert integer
5108 # values to constants before output
5109 $sm_debug_mode = convert_debug_binary_integer_to_constants($sm_debug_mode);
5110 print CF "\$sm_debug_mode = $sm_debug_mode;\n";
5111 print CF "\n";
5112
5113 close CF;
5114
5115 print "Data saved in config.php\n";
5116
5117 build_plugin_hook_array();
5118
5119 } else {
5120 print "Error saving config.php: $!\n";
5121 }
5122 }
5123
5124 sub set_defaults {
5125 clear_screen();
5126 print $WHT. "SquirrelMail Configuration : " . $NRM;
5127 if ( $config == 1 ) { print "Read: config.php"; }
5128 elsif ( $config == 2 ) { print "Read: config_default.php"; }
5129 print "\n";
5130 print "---------------------------------------------------------\n";
5131
5132 print "While we have been building SquirrelMail, we have discovered some\n";
5133 print "preferences that work better with some servers that don't work so\n";
5134 print "well with others. If you select your IMAP server, this option will\n";
5135 print "set some pre-defined settings for that server.\n";
5136 print "\n";
5137 print "Please note that you will still need to go through and make sure\n";
5138 print "everything is correct. This does not change everything. There are\n";
5139 print "only a few settings that this will change.\n";
5140 print "\n";
5141
5142 $continue = 0;
5143 while ( $continue != 1 ) {
5144 print "Please select your IMAP server:\n";
5145 print $list_supported_imap_servers;
5146 print "\n";
5147 print " quit = Do not change anything\n";
5148 print "\n";
5149 print "Command >> ";
5150 $server = <STDIN>;
5151 $server =~ s/[\r\n]//g;
5152
5153 # variable is used to display additional messages.
5154 $message = "";
5155
5156 print "\n";
5157 if ( $server eq "cyrus" ) {
5158 $imap_server_type = "cyrus";
5159 $default_folder_prefix = "";
5160 $trash_folder = "INBOX.Trash";
5161 $sent_folder = "INBOX.Sent";
5162 $draft_folder = "INBOX.Drafts";
5163 $show_prefix_option = false;
5164 $default_sub_of_inbox = true;
5165 $show_contain_subfolders_option = false;
5166 $optional_delimiter = ".";
5167 $disp_default_folder_prefix = "<none>";
5168 $force_username_lowercase = false;
5169
5170 # Delimiter might differ if unixhierarchysep is set to yes.
5171 $message = "\nIf you have enabled unixhierarchysep, you must change delimiter and special folder names.\n";
5172
5173 $continue = 1;
5174 } elsif ( $server eq "uw" ) {
5175 $imap_server_type = "uw";
5176 $default_folder_prefix = "mail/";
5177 $trash_folder = "Trash";
5178 $sent_folder = "Sent";
5179 $draft_folder = "Drafts";
5180 $show_prefix_option = true;
5181 $default_sub_of_inbox = false;
5182 $show_contain_subfolders_option = true;
5183 $optional_delimiter = "/";
5184 $disp_default_folder_prefix = $default_folder_prefix;
5185 $delete_folder = true;
5186 $force_username_lowercase = true;
5187
5188 $continue = 1;
5189 } elsif ( $server eq "exchange" ) {
5190 $imap_server_type = "exchange";
5191 $default_folder_prefix = "";
5192 $default_sub_of_inbox = true;
5193 $trash_folder = "INBOX/Deleted Items";
5194 $sent_folder = "INBOX/Sent Items";
5195 $drafts_folder = "INBOX/Drafts";
5196 $show_prefix_option = false;
5197 $show_contain_subfolders_option = false;
5198 $optional_delimiter = "detect";
5199 $disp_default_folder_prefix = "<none>";
5200 $force_username_lowercase = true;
5201
5202 $continue = 1;
5203 } elsif ( $server eq "courier" ) {
5204 $imap_server_type = "courier";
5205 $default_folder_prefix = "INBOX.";
5206 $trash_folder = "Trash";
5207 $sent_folder = "Sent";
5208 $draft_folder = "Drafts";
5209 $show_prefix_option = false;
5210 $default_sub_of_inbox = false;
5211 $show_contain_subfolders_option = false;
5212 $optional_delimiter = ".";
5213 $disp_default_folder_prefix = $default_folder_prefix;
5214 $delete_folder = true;
5215 $force_username_lowercase = false;
5216
5217 $continue = 1;
5218 } elsif ( $server eq "macosx" ) {
5219 $imap_server_type = "macosx";
5220 $default_folder_prefix = "INBOX/";
5221 $trash_folder = "Trash";
5222 $sent_folder = "Sent";
5223 $draft_folder = "Drafts";
5224 $show_prefix_option = false;
5225 $default_sub_of_inbox = true;
5226 $show_contain_subfolders_option = false;
5227 $optional_delimiter = "detect";
5228 $allow_charset_search = false;
5229 $disp_default_folder_prefix = $default_folder_prefix;
5230
5231 $continue = 1;
5232 } elsif ( $server eq "hmailserver" ) {
5233 $imap_server_type = "hmailserver";
5234 $default_folder_prefix = "";
5235 $trash_folder = "INBOX.Trash";
5236 $sent_folder = "INBOX.Sent";
5237 $draft_folder = "INBOX.Drafts";
5238 $show_prefix_option = false;
5239 $default_sub_of_inbox = true;
5240 $show_contain_subfolders_option = false;
5241 $optional_delimiter = "detect";
5242 $allow_charset_search = false;
5243 $disp_default_folder_prefix = $default_folder_prefix;
5244 $delete_folder = false;
5245 $force_username_lowercase = false;
5246
5247 $continue = 1;
5248 } elsif ( $server eq "mercury32" ) {
5249 $imap_server_type = "mercury32";
5250 $default_folder_prefix = "";
5251 $trash_folder = "Trash";
5252 $sent_folder = "Sent";
5253 $draft_folder = "Drafts";
5254 $show_prefix_option = false;
5255 $default_sub_of_inbox = true;
5256 $show_contain_subfolders_option = true;
5257 $optional_delimiter = "detect";
5258 $delete_folder = true;
5259 $force_username_lowercase = true;
5260
5261 $continue = 1;
5262 } elsif ( $server eq "dovecot" ) {
5263 $imap_server_type = "dovecot";
5264 $default_folder_prefix = "";
5265 $trash_folder = "Trash";
5266 $sent_folder = "Sent";
5267 $draft_folder = "Drafts";
5268 $show_prefix_option = false;
5269 $default_sub_of_inbox = false;
5270 $show_contain_subfolders_option = false;
5271 $delete_folder = false;
5272 $force_username_lowercase = true;
5273 $optional_delimiter = "detect";
5274 $disp_default_folder_prefix = "<none>";
5275
5276 $continue = 1;
5277 } elsif ( $server eq "bincimap" ) {
5278 $imap_server_type = "bincimap";
5279 $default_folder_prefix = "INBOX/";
5280 $trash_folder = "Trash";
5281 $sent_folder = "Sent";
5282 $draft_folder = "Drafts";
5283 $show_prefix_option = false;
5284 $default_sub_of_inbox = false;
5285 $show_contain_subfolders_option = false;
5286 $delete_folder = true;
5287 $force_username_lowercase = false;
5288 $optional_delimiter = "detect";
5289 $disp_default_folder_prefix = $default_folder_prefix;
5290
5291 # Default folder prefix depends on used depot.
5292 $message = "\nIf you use IMAPdir depot, you must set default folder prefix to empty string.\n";
5293
5294 $continue = 1;
5295 } elsif ( $server eq "quit" ) {
5296 $continue = 1;
5297 } else {
5298 $disp_default_folder_prefix = $default_folder_prefix;
5299 print "Unrecognized server: $server\n";
5300 print "\n";
5301 }
5302
5303 print " imap_server_type = $imap_server_type\n";
5304 print " default_folder_prefix = $disp_default_folder_prefix\n";
5305 print " trash_folder = $trash_folder\n";
5306 print " sent_folder = $sent_folder\n";
5307 print " draft_folder = $draft_folder\n";
5308 print " show_prefix_option = $show_prefix_option\n";
5309 print " default_sub_of_inbox = $default_sub_of_inbox\n";
5310 print "show_contain_subfolders_option = $show_contain_subfolders_option\n";
5311 print " optional_delimiter = $optional_delimiter\n";
5312 print " delete_folder = $delete_folder\n";
5313 print " force_username_lowercase = $force_username_lowercase\n";
5314
5315 print "$message";
5316 }
5317 print "\nPress enter to continue...";
5318 $tmp = <STDIN>;
5319 }
5320
5321 # This subroutine corrects relative paths to ensure they
5322 # will work within the SM space. If the path falls within
5323 # the SM directory tree, the SM_PATH variable will be
5324 # prepended to the path, if not, then the path will be
5325 # converted to an absolute path, e.g.
5326 # '../images/logo.gif' --> SM_PATH . 'images/logo.gif'
5327 # '../../someplace/data' --> '/absolute/path/someplace/data'
5328 # 'images/logo.gif' --> SM_PATH . 'config/images/logo.gif'
5329 # '/absolute/path/logo.gif' --> '/absolute/path/logo.gif'
5330 # 'http://whatever/' --> 'http://whatever'
5331 # $some_var/path --> "$some_var/path"
5332 sub change_to_SM_path() {
5333 my ($old_path) = @_;
5334 my $new_path = '';
5335 my @rel_path;
5336 my @abs_path;
5337 my $subdir;
5338
5339 # If the path is absolute, don't bother.
5340 return "\'" . $old_path . "\'" if ( $old_path eq '');
5341 return "\'" . $old_path . "\'" if ( $old_path =~ /^(\/|http)/ );
5342 return "\'" . $old_path . "\'" if ( $old_path =~ /^\w:\// );
5343 return $old_path if ( $old_path =~ /^\'(\/|http)/ );
5344 return $old_path if ( $old_path =~ /^\'\w:\// );
5345 return $old_path if ( $old_path =~ /^SM_PATH/);
5346
5347 if ( $old_path =~ /^\$/ ) {
5348 # check if it's a single var, or a $var/path combination
5349 # if it's $var/path, enclose in ""
5350 if ( $old_path =~ /\// ) {
5351 return '"'.$old_path.'"';
5352 }
5353 return $old_path;
5354 }
5355
5356 # Remove remaining '
5357 $old_path =~ s/\'//g;
5358
5359 # For relative paths, split on '../'
5360 @rel_path = split(/\.\.\//, $old_path);
5361
5362 if ( $#rel_path > 1 ) {
5363 # more than two levels away. Make it absolute.
5364 @abs_path = split(/\//, $dir);
5365
5366 # Lop off the relative pieces of the absolute path..
5367 for ( $i = 0; $i <= $#rel_path; $i++ ) {
5368 pop @abs_path;
5369 shift @rel_path;
5370 }
5371 push @abs_path, @rel_path;
5372 $new_path = "\'" . join('/', @abs_path) . "\'";
5373 } elsif ( $#rel_path > 0 ) {
5374 # it's within the SM tree, prepend SM_PATH
5375 $new_path = $old_path;
5376 $new_path =~ s/^\.\.\//SM_PATH . \'/;
5377 $new_path .= "\'";
5378 } else {
5379 # Last, it's a relative path without any leading '.'
5380 # Prepend SM_PATH and config, since the paths are
5381 # relative to the config directory
5382 $new_path = "SM_PATH . \'config/" . $old_path . "\'";
5383 }
5384 return $new_path;
5385 }
5386
5387
5388 # Change SM_PATH to admin-friendly version, e.g.:
5389 # SM_PATH . 'images/logo.gif' --> '../images/logo.gif'
5390 # SM_PATH . 'config/some.php' --> 'some.php'
5391 # '/absolute/path/logo.gif' --> '/absolute/path/logo.gif'
5392 # 'http://whatever/' --> 'http://whatever'
5393 sub change_to_rel_path() {
5394 my ($old_path) = @_;
5395 my $new_path = $old_path;
5396
5397 if ( $old_path =~ /^SM_PATH/ ) {
5398 # FIXME: the following replacement loses the opening quote mark!
5399 $new_path =~ s/^SM_PATH . \'/\.\.\//;
5400 $new_path =~ s/\.\.\/config\///;
5401 }
5402
5403 return $new_path;
5404 }
5405
5406 # Attempts to auto-detect if a specific auth mechanism is supported.
5407 # Called by 'command112a' and 'command112b'
5408 # ARGS: service-name (IMAP or SMTP), host:port, mech-name (ie. CRAM-MD5)
5409 sub detect_auth_support {
5410 # Try loading IO::Socket
5411 unless (eval("use IO::Socket; 1")) {
5412 print "Perl IO::Socket module is not available.";
5413 return undef;
5414 }
5415 # Misc setup
5416 my $service = shift;
5417 my $host = shift;
5418 my $mech = shift;
5419 # Sanity checks
5420 if ((!defined($service)) or (!defined($host)) or (!defined($mech))) {
5421 # Error - wrong # of args
5422 print "BAD ARGS!\n";
5423 return undef;
5424 }
5425
5426 if ($service eq 'SMTP') {
5427 $cmd = "AUTH $mech\r\n";
5428 $logout = "QUIT\r\n";
5429 } elsif ($service eq 'IMAP') {
5430 $cmd = "A01 AUTHENTICATE $mech\n";
5431 $logout = "C01 LOGOUT\n";
5432 } else {
5433 # unknown service - whoops.
5434 return undef;
5435 }
5436
5437 # Get this show on the road
5438 my $sock=IO::Socket::INET->new($host);
5439 if (!defined($sock)) {
5440 # Connect failed
5441 return undef;
5442 }
5443 my $discard = <$sock>; # Server greeting/banner - who cares..
5444
5445 if ($service eq 'SMTP') {
5446 # Say hello first..
5447 print $sock "HELO $domain\r\n";
5448 $discard = <$sock>; # Yeah yeah, you're happy to see me..
5449 }
5450 print $sock $cmd;
5451
5452 my $response = <$sock>;
5453 chomp($response);
5454 if (!defined($response)) {
5455 return undef;
5456 }
5457
5458 # So at this point, we have a response, and it is (hopefully) valid.
5459 if ($service eq 'SMTP') {
5460 if (!($response =~ /^334/)) {
5461 # Not supported
5462 print $sock $logout;
5463 close $sock;
5464 return 'NO';
5465 }
5466 } elsif ($service eq 'IMAP') {
5467 if ($response =~ /^A01/) {
5468 # Not supported
5469 print $sock $logout;
5470 close $sock;
5471 return 'NO';
5472 }
5473 } else {
5474 # Unknown service - this shouldn't be able to happen.
5475 close $sock;
5476 return undef;
5477 }
5478
5479 # If it gets here, the mech is supported
5480 print $sock "*\n"; # Attempt to cancel authentication
5481 print $sock $logout; # Try to log out, but we don't really care if this fails
5482 close $sock;
5483 return 'YES';
5484 }
5485
5486 # trims whitespace
5487 # Example code from O'Reilly Perl Cookbook
5488 sub trim {
5489 my @out = @_;
5490 for (@out) {
5491 s/^\s+//;
5492 s/\s+$//;
5493 }
5494 return wantarray ? @out : $out[0];
5495 }
5496
5497 sub clear_screen() {
5498 if ( $^O =~ /^mswin/i) {
5499 system "cls";
5500 } else {
5501 system "clear";
5502 }
5503 }
5504
5505 # checks IMAP mailbox name. Refuses to accept 8bit folders
5506 # returns 0 (folder name is not correct) or 1 (folder name is correct)
5507 sub check_imap_folder($) {
5508 my $folder_name = shift(@_);
5509
5510 if ($folder_name =~ /[\x80-\xFFFF]/) {
5511 print "Folder name contains 8bit characters. Configuration utility requires\n";
5512 print "UTF7-IMAP encoded folder names.\n";
5513 print "Press enter to continue...";
5514 my $tmp = <STDIN>;
5515 return 0;
5516 } elsif ($folder_name =~ /[&\*\%]/) {
5517 # check for ampersand and list-wildcards
5518 print "Folder name contains special UTF7-IMAP characters.\n";
5519 print "Are you sure that folder name is correct? (y/N): ";
5520 my $tmp = <STDIN>;
5521 $tmp = lc(trim($tmp));
5522 if ($tmp =~ /^y$/) {
5523 return 1;
5524 } else {
5525 return 0;
5526 }
5527 } else {
5528 return 1;
5529 }
5530 }
5531
5532 # quotes string written in single quotes
5533 sub quote_single($) {
5534 my $string = shift(@_);
5535 $string =~ s/\'/\\'/g;
5536 return $string;
5537 }
5538
5539 # determine a plugin's version number
5540 #
5541 # parses the setup.php file, looking for the
5542 # version string in the <plugin>_info() or the
5543 # <plugin>_version functions.
5544 #
5545 sub get_plugin_version() {
5546
5547 my $plugin_name = shift(@_);
5548
5549 $setup_file = '../plugins/' . $plugin_name . '/setup.php';
5550 if ( -e "$setup_file" ) {
5551 # Make sure that file is readable
5552 if (! -r "$setup_file") {
5553 print "\n";
5554 print "WARNING:\n";
5555 print "The file \"$setup_file\" was found, but you don't\n";
5556 print "have rights to read it. The plugin \"";
5557 print $plugin_name . "\" may not work correctly until you fix this.\n";
5558 print "\nPress enter to continue";
5559 $ctu = <STDIN>;
5560 print "\n";
5561 next;
5562 }
5563
5564 $version = ' ';
5565 # FIXME: grep the file instead of reading it into memory?
5566 $whole_file = '';
5567 open( FILE, "$setup_file" );
5568 while ( $line = <FILE> ) {
5569 $whole_file .= $line;
5570 }
5571 close(FILE);
5572
5573 # ideally, there is a version in the <plugin>_info function...
5574 #
5575 if ($whole_file =~ /('version'\s*=>\s*['"](.*?)['"])/) {
5576 $version .= $2;
5577
5578 # this assumes there is only one function that returns
5579 # a static string in the setup file
5580 #
5581 } elsif ($whole_file =~ /(return\s*['"](.*?)['"])/) {
5582 $version .= $2;
5583 }
5584
5585 return $version;
5586
5587 } else {
5588 print "\n";
5589 print "WARNING:\n";
5590 print "The file \"$setup_file\" was not found.\n";
5591 print "The plugin \"" . $plugin_name;
5592 print "\" may not work correctly until you fix this.\n";
5593 print "\nPress enter to continue";
5594 $ctu = <STDIN>;
5595 print "\n";
5596 next;
5597 }
5598
5599 }
5600
5601 # determine a plugin's English name
5602 #
5603 # parses the setup.php file, looking for the
5604 # English name in the <plugin>_info() function.
5605 #
5606 sub get_plugin_english_name() {
5607
5608 my $plugin_name = shift(@_);
5609
5610 $setup_file = '../plugins/' . $plugin_name . '/setup.php';
5611 if ( -e "$setup_file" ) {
5612 # Make sure that file is readable
5613 if (! -r "$setup_file") {
5614 print "\n";
5615 print "WARNING:\n";
5616 print "The file \"$setup_file\" was found, but you don't\n";
5617 print "have rights to read it. The plugin \"";
5618 print $plugin_name . "\" may not work correctly until you fix this.\n";
5619 print "\nPress enter to continue";
5620 $ctu = <STDIN>;
5621 print "\n";
5622 next;
5623 }
5624
5625 $english_name = '';
5626 # FIXME: grep the file instead of reading it into memory?
5627 $whole_file = '';
5628 open( FILE, "$setup_file" );
5629 while ( $line = <FILE> ) {
5630 $whole_file .= $line;
5631 }
5632 close(FILE);
5633
5634 # the English name is in the <plugin>_info function or nothing...
5635 #
5636 if ($whole_file =~ /('english_name'\s*=>\s*['"](.*?)['"])/) {
5637 $english_name .= $2;
5638 }
5639
5640 return $english_name;
5641
5642 } else {
5643 print "\n";
5644 print "WARNING:\n";
5645 print "The file \"$setup_file\" was not found.\n";
5646 print "The plugin \"" . $plugin_name;
5647 print "\" may not work correctly until you fix this.\n";
5648 print "\nPress enter to continue";
5649 $ctu = <STDIN>;
5650 print "\n";
5651 next;
5652 }
5653
5654 }
5655
5656 # parses the setup.php files for all activated plugins and
5657 # builds static plugin hooks array so we don't have to load
5658 # ALL plugins are runtime and build the hook array on every
5659 # page request
5660 #
5661 # hook array is saved in config/plugin_hooks.php
5662 #
5663 # Note the $verbose variable at the top of this routine
5664 # can be set to zero to quiet it down.
5665 #
5666 # NOTE/FIXME: we aren't necessarily interested in writing
5667 # a full-blown PHP parsing engine, so plenty
5668 # of assumptions are included herein about the
5669 # coding of the plugin setup files, and things
5670 # like commented out curly braces or other
5671 # such oddities can break this in a bad way.
5672 #
5673 sub build_plugin_hook_array() {
5674
5675 $verbose = 1;
5676
5677 if ($verbose) {
5678 print "\n\n";
5679 }
5680
5681 if ( open( HOOKFILE, ">plugin_hooks.php" ) ) {
5682 print HOOKFILE "<?php\n";
5683 print HOOKFILE "\n";
5684
5685 print HOOKFILE "/**\n";
5686 print HOOKFILE " * SquirrelMail Plugin Hook Registration File\n";
5687 print HOOKFILE " * Auto-generated using the configure script, conf.pl\n";
5688 print HOOKFILE " */\n";
5689 print HOOKFILE "\n";
5690 print HOOKFILE "global \$squirrelmail_plugin_hooks;\n";
5691 print HOOKFILE "\n";
5692
5693 PLUGIN: for ( $ct = 0 ; $ct <= $#plugins ; $ct++ ) {
5694
5695 if ($verbose) {
5696 print "Activating plugin \"" . $plugins[$ct] . "\"...\n";
5697 }
5698
5699 $setup_file = '../plugins/' . $plugins[$ct] . '/setup.php';
5700 if ( -e "$setup_file" ) {
5701 # Make sure that file is readable
5702 if (! -r "$setup_file") {
5703 print "\n";
5704 print "WARNING:\n";
5705 print "The file \"$setup_file\" was found, but you don't\n";
5706 print "have rights to read it. The plugin \"";
5707 print $plugins[$ct] . "\" will not be activated until you fix this.\n";
5708 print "\nPress enter to continue";
5709 $ctu = <STDIN>;
5710 print "\n";
5711 next;
5712 }
5713 open( FILE, "$setup_file" );
5714 $inside_init_fxn = 0;
5715 $brace_count = 0;
5716 while ( $line = <FILE> ) {
5717
5718 # throw away lines until we get to target function
5719 #
5720 if (!$inside_init_fxn
5721 && $line !~ /^\s*function\s*squirrelmail_plugin_init_/i) {
5722 next;
5723 }
5724 $inside_init_fxn = 1;
5725
5726
5727 # count open braces
5728 #
5729 if ($line =~ /{/) {
5730 $brace_count++;
5731 }
5732
5733
5734 # count close braces
5735 #
5736 if ($line =~ /}/) {
5737 $brace_count--;
5738
5739 # leaving <plugin>_init() function...
5740 if ($brace_count == 0) {
5741 close(FILE);
5742 next PLUGIN;
5743 }
5744
5745 }
5746
5747
5748 # throw away lines that are not exactly one "brace set" deep
5749 #
5750 if ($brace_count > 1) {
5751 next;
5752 }
5753
5754
5755 # also not interested in lines that are not
5756 # hook registration points
5757 #
5758 if ($line !~ /^\s*\$squirrelmail_plugin_hooks/i) {
5759 next;
5760 }
5761
5762
5763 # if $line does not have an ending semicolon,
5764 # we need to recursively read in subsequent
5765 # lines until we find one
5766 while ( $line !~ /;\s*$/ ) {
5767 $line =~ s/[\n\r]\s*$//;
5768 $line .= <FILE>;
5769 }
5770
5771
5772 $line =~ s/^\s+//;
5773 $line =~ s/^\$//;
5774 $var = $line;
5775
5776 $var =~ s/=/EQUALS/;
5777 if ( $var =~ /^([a-z])/i ) {
5778 @options = split ( /\s*EQUALS\s*/, $var );
5779 $options[1] =~ s/[\n\r]//g;
5780 $options[1] =~ s/[\'\"];\s*$//;
5781 $options[1] =~ s/;$//;
5782 $options[1] =~ s/^[\'\"]//;
5783 # de-escape escaped strings
5784 $options[1] =~ s/\\'/'/g;
5785 $options[1] =~ s/\\\\/\\/g;
5786
5787 if ( $options[0] =~ /^squirrelmail_plugin_hooks\s*\[\s*['"]([a-z0-9 \/._*-]+)['"]\s*\]\s*\[\s*['"]([0-9a-z._-]+)['"]\s*\]/i ) {
5788 $hook_name = $1;
5789 $hooked_plugin_name = $2;
5790 # Note: if we wanted to stop plugins from registering
5791 # a *different* plugin on a hook, we could catch
5792 # it here, however this has actually proven to be
5793 # a useful *feature*
5794 #if ($hooked_plugin_name ne $plugins[$ct]) {
5795 # print "...plugin is tring to hook in under different name...\n";
5796 #}
5797
5798 #FIXME: do we want to count the number of hook registrations for each plugin and warn if a plugin doesn't have any?
5799 # hook registration has been found!
5800 if ($verbose) {
5801 if ($hooked_plugin_name ne $plugins[$ct]) {
5802 print " registering on hook \"" . $hook_name . "\" (as \"$hooked_plugin_name\" plugin)\n";
5803 } else {
5804 print " registering on hook \"" . $hook_name . "\"\n";
5805 }
5806 }
5807 $line =~ s/ {2,}/ /g;
5808 $line =~ s/=/\n =/;
5809 print HOOKFILE "\$$line";
5810
5811 }
5812
5813 }
5814
5815 }
5816 close(FILE);
5817
5818 } else {
5819 print "\n";
5820 print "WARNING:\n";
5821 print "The file \"$setup_file\" was not found.\n";
5822 print "The plugin \"" . $plugins[$ct];
5823 print "\" will not be activated until you fix this.\n";
5824 print "\nPress enter to continue";
5825 $ctu = <STDIN>;
5826 print "\n";
5827 next;
5828 }
5829
5830 }
5831
5832 print HOOKFILE "\n\n";
5833 close(HOOKFILE);
5834 # if ($verbose) {
5835 print "\nDone activating plugins; registration data saved in plugin_hooks.php\n\n";
5836 # }
5837
5838 } else {
5839
5840 print "\n";
5841 print "WARNING:\n";
5842 print "The file \"plugin_hooks.php\" was not able to be written to.\n";
5843 print "No plugins will be activated until you fix this.\n";
5844 print "\nPress enter to continue";
5845 $ctu = <STDIN>;
5846 print "\n";
5847
5848 }
5849
5850 }
5851
5852 # converts (binary) integer values that correspond
5853 # to the SquirrelMail debug mode constants (see
5854 # include/constants.php) into those constant strings
5855 # (bitwise or'd if more than one is enabled)
5856 #
5857 # if the value passed in is not an integer, it is
5858 # returned unmolested
5859 #
5860 sub convert_debug_binary_integer_to_constants() {
5861
5862 my ($debug_mode) = @_;
5863 if ($debug_mode =~ /^[^0-9]/) {
5864 return $debug_mode;
5865 }
5866 $debug_mode = int($debug_mode);
5867 $new_debug_mode = '';
5868
5869 # per include/constants.php, here are their values:
5870 #
5871 # 0 SM_DEBUG_MODE_OFF
5872 # 1 SM_DEBUG_MODE_SIMPLE
5873 # 512 SM_DEBUG_MODE_MODERATE
5874 # 524288 SM_DEBUG_MODE_ADVANCED
5875 # 536870912 SM_DEBUG_MODE_STRICT
5876 #
5877 if ($debug_mode & 1) {
5878 $new_debug_mode .= ' | SM_DEBUG_MODE_SIMPLE';
5879 }
5880 if ($debug_mode & 512) {
5881 $new_debug_mode .= ' | SM_DEBUG_MODE_MODERATE';
5882 }
5883 if ($debug_mode & 524288) {
5884 $new_debug_mode .= ' | SM_DEBUG_MODE_ADVANCED';
5885 }
5886 if ($debug_mode & 536870912) {
5887 $new_debug_mode .= ' | SM_DEBUG_MODE_STRICT';
5888 }
5889
5890 $new_debug_mode =~ s/^ \| //;
5891 if (!$new_debug_mode) {
5892 $new_debug_mode = 'SM_DEBUG_MODE_OFF';
5893 }
5894
5895 return $new_debug_mode;
5896 }
5897
5898 # converts SquirrelMail debug mode constants (see
5899 # include/constants.php) into their corresponding
5900 # (binary) integer values
5901 #
5902 # if the value passed in is an integer already, it
5903 # is returned unmolested
5904 #
5905 sub convert_debug_constants_to_binary_integer() {
5906
5907 my ($debug_mode) = @_;
5908 if ($debug_mode =~ /^[0-9]/) {
5909 return $debug_mode;
5910 }
5911 $new_debug_mode = 0;
5912
5913 # per include/constants.php, here are their values:
5914 #
5915 # 0 SM_DEBUG_MODE_OFF
5916 # 1 SM_DEBUG_MODE_SIMPLE
5917 # 512 SM_DEBUG_MODE_MODERATE
5918 # 524288 SM_DEBUG_MODE_ADVANCED
5919 # 536870912 SM_DEBUG_MODE_STRICT
5920 #
5921 if ($debug_mode =~ /\bSM_DEBUG_MODE_OFF\b/) {
5922 $new_debug_mode = 0;
5923 }
5924 if ($debug_mode =~ /\bSM_DEBUG_MODE_SIMPLE\b/) {
5925 $new_debug_mode |= 1;
5926 }
5927 if ($debug_mode =~ /\bSM_DEBUG_MODE_MODERATE\b/) {
5928 $new_debug_mode |= 512;
5929 }
5930 if ($debug_mode =~ /\bSM_DEBUG_MODE_ADVANCED\b/) {
5931 $new_debug_mode |= 524288;
5932 }
5933 if ($debug_mode =~ /\bSM_DEBUG_MODE_STRICT\b/) {
5934 $new_debug_mode |= 536870912;
5935 }
5936
5937 return $new_debug_mode;
5938 }
5939
5940 # Function to print n column numbered lists
5941 #
5942 # WARNING: the names in the list will be truncated
5943 # to fit in their respective columns based on the
5944 # screen width and number of columns.
5945 #
5946 # Expected arguments (in this order):
5947 #
5948 # * The start number to use for the list
5949 # * The number of columns to use
5950 # * The screen width
5951 # * Boolean (zero/one), indicating
5952 # whether or not to show item numbers
5953 # * The list of strings to be shown
5954 #
5955 # Returns: The number printed on screen of the last item in the list
5956 #
5957 sub print_multi_col_list {
5958 my ($num, $cols, $screen_width, $show_numbering, @list) = @_;
5959 my $x;
5960 my $col_cnt = 0;
5961 my $row_cnt = 0;
5962 my $rows;
5963 my $col_width;
5964 my $total = 0;
5965 my @layout = ();
5966 my @numbers = ();
5967
5968 $rows = int(@list / $cols);
5969 if (@list % $cols) { $rows++; }
5970 if ($show_numbering) { $col_width = int(($screen_width - 2) / $cols) - 5; }
5971 else { $col_width = int(($screen_width - 2) / $cols) - 2; }
5972
5973 # build the layout array so numbers run down each column
5974 #
5975 for ( $x = 0; $x < @list; $x++ ) {
5976
5977 $layout[$row_cnt][$col_cnt] = $list[$x];
5978 $numbers[$row_cnt][$col_cnt] = $num++;
5979
5980 # move to next column
5981 #
5982 if ($row_cnt == $rows - 1) {
5983 $row_cnt = 0;
5984 $col_cnt++;
5985 }
5986 else { $row_cnt++; }
5987
5988 }
5989
5990 # if we filled up fewer rows than needed, recalc column width
5991 #
5992 if ($rows * $col_cnt == @list) { $col_cnt--; } # loop above ended right after increment
5993 if ($col_cnt + 1 < $cols) {
5994 if ($show_numbering) { $col_width = int(($screen_width - 2) / ($col_cnt + 1)) - 5; }
5995 else { $col_width = int(($screen_width - 2) / ($col_cnt + 1)) - 2; }
5996 }
5997
5998 # print it
5999 # iterate rows
6000 #
6001 for ( $row_cnt = 0; $row_cnt <= $rows; $row_cnt++ ) {
6002
6003 # indent the row
6004 #
6005 print " ";
6006
6007 # iterate columns for this row
6008 #
6009 for ( $col_cnt = 0; $col_cnt <= $cols; $col_cnt++ ) {
6010 if ($layout[$row_cnt][$col_cnt]) {
6011 print " ";
6012 if ($show_numbering) { printf "$WHT% 2u.$NRM", $numbers[$row_cnt][$col_cnt]; }
6013 printf " %-$col_width." . $col_width . "s", $layout[$row_cnt][$col_cnt];
6014 }
6015 }
6016 print "\n";
6017 }
6018
6019
6020 return $num - 1;
6021 }
6022