4 # Copyright (c) 1999-2006 The SquirrelMail Project Team
5 # Licensed under the GNU GPL. For full terms see COPYING.
7 # A simple configure script to configure SquirrelMail
10 ############################################################
11 $conf_pl_version = "1.4.0";
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 ############################################################
20 if ( eval q{require "File/Basename.pm"} ) {
21 $dir = File
::Basename
::dirname
($0);
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.";
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 ############################################################
45 ############################################################
46 # First, lets read in the data already in there...
47 ############################################################
48 if ( -e
"config.php" ) {
49 open( FILE
, "config.php" );
50 while ( $line = <FILE
> ) {
56 if ( $var =~ /^([a-z])/i ) {
57 @o = split ( /\s*EQUALS\s*/, $var );
58 if ( $o[0] eq "config_version" ) {
60 $o[1] =~ s/[\'\"];\s*$//;
64 $config_version = $o[1];
71 if ( $config_version ne $conf_pl_version ) {
73 print $WHT. "WARNING:\n" . $NRM;
74 print " The file \"config/config.php\" was found, but it is for\n";
75 print " an older version of SquirrelMail. It is possible to still\n";
76 print " read the defaults from this file but be warned that many\n";
77 print " preferences change between versions. It is recommended that\n";
78 print " you start with a clean config.php for each upgrade that you\n";
79 print " do. To do this, just move config/config.php out of the way.\n";
81 print "Continue loading with the old config.php [y/N]? ";
84 if ( ( $ctu !~ /^y\n/i ) || ( $ctu =~ /^\n/ ) ) {
88 print "\nDo you want me to stop warning you [y/N]? ";
90 if ( $ctu =~ /^y\n/i ) {
91 $print_config_version = $conf_pl_version;
93 $print_config_version = $config_version;
96 $print_config_version = $config_version;
100 open( FILE
, "config.php" );
101 } elsif ( -e
"config_default.php" ) {
102 open( FILE
, "config_default.php" );
103 while ( $line = <FILE
> ) {
109 if ( $var =~ /^([a-z])/i ) {
110 @o = split ( /\s*EQUALS\s*/, $var );
111 if ( $o[0] eq "config_version" ) {
112 $o[1] =~ s/[\n\r]//g;
113 $o[1] =~ s/[\'\"];\s*$//;
115 $o[1] =~ s/^[\'\"]//;
117 $config_version = $o[1];
124 if ( $config_version ne $conf_pl_version ) {
126 print $WHT. "WARNING:\n" . $NRM;
127 print " You are trying to use a 'config_default.php' from an older\n";
128 print " version of SquirrelMail. This is HIGHLY unrecommended. You\n";
129 print " should get the 'config_default.php' that matches the version\n";
130 print " of SquirrelMail that you are running. You can get this from\n";
131 print " the SquirrelMail web page by going to the following URL:\n";
132 print " http://www.squirrelmail.org.\n";
134 print "Continue loading with old config_default.php (a bad idea) [y/N]? ";
137 if ( ( $ctu !~ /^y\n/i ) || ( $ctu =~ /^\n/ ) ) {
141 print "\nDo you want me to stop warning you [y/N]? ";
143 if ( $ctu =~ /^y\n/i ) {
144 $print_config_version = $conf_pl_version;
146 $print_config_version = $config_version;
149 $print_config_version = $config_version;
152 open( FILE
, "config_default.php" );
154 print "No configuration file found. Please get config_default.php\n";
155 print "or config.php before running this again. This program needs\n";
156 print "a default config file to get default values.\n";
160 # Read and parse the current configuration file
161 # (either config.php or config_default.php).
162 while ( $line = <FILE
> ) {
168 if ( $var =~ /^([a-z])/i ) {
169 @options = split ( /\s*EQUALS\s*/, $var );
170 $options[1] =~ s/[\n\r]//g;
171 $options[1] =~ s/[\'\"];\s*$//;
172 $options[1] =~ s/;$//;
173 $options[1] =~ s/^[\'\"]//;
174 # de-escape escaped strings
175 $options[1] =~ s/\\'/'/g;
176 $options[1] =~ s/\\\\/\\/g;
178 if ( $options[0] =~ /^user_themes\[[0-9]+\]\[['"]PATH['"]\]/ ) {
180 $sub =~ s/\]\[['"]PATH['"]\]//;
182 if ( -e
"../css/" ) {
183 $options[1] =~ s/^\.\.\/config/\
.\
.\
/css/;
185 $user_theme_path[$sub] = &change_to_rel_path
($options[1]);
186 } elsif ( $options[0] =~ /^user_themes\[[0-9]+\]\[['"]NAME['"]\]/ ) {
188 $sub =~ s/\]\[['"]NAME['"]\]//;
190 $user_theme_name[$sub] = $options[1];
191 } elsif ( $options[0] =~ /^icon_themes\[[0-9]+\]\[['"]PATH['"]\]/ ) {
193 $sub =~ s/\]\[['"]PATH['"]\]//;
195 if ( -e
"../images/" ) {
196 $options[1] =~ s/^\.\.\/config/\
.\
.\
/images/;
198 $icon_theme_path[$sub] = &change_to_rel_path
($options[1]);
199 } elsif ( $options[0] =~ /^icon_themes\[[0-9]+\]\[['"]NAME['"]\]/ ) {
201 $sub =~ s/\]\[['"]NAME['"]\]//;
203 $icon_theme_name[$sub] = $options[1];
204 } elsif ( $options[0] =~ /^aTemplateSet\[[0-9]+\]\[['"]ID['"]\]/ ) {
206 $sub =~ s/\]\[['"]ID['"]\]//;
208 if ( -e
"../templates" ) {
209 $options[1] =~ s/^\.\.\/config/\
.\
.\
/templates/;
211 $templateset_id[$sub] = $options[1];
212 ##### FIXME: This section BELOW here so old prefs files don't blow up when running conf.pl
213 ##### Remove after a month or two
214 } elsif ( $options[0] =~ /^aTemplateSet\[[0-9]+\]\[['"]PATH['"]\]/ ) {
216 $sub =~ s/\]\[['"]PATH['"]\]//;
218 if ( -e
"../templates" ) {
219 $options[1] =~ s/^\.\.\/config/\
.\
.\
/templates/;
221 $templateset_id[$sub] = $options[1];
222 ##### FIXME: This section ABOVE here so old prefs files don't blow up when running conf.pl
223 ##### Remove after a month or two
224 } elsif ( $options[0] =~ /^aTemplateSet\[[0-9]+\]\[['"]NAME['"]\]/ ) {
226 $sub =~ s/\]\[['"]NAME['"]\]//;
228 $templateset_name[$sub] = $options[1];
229 } elsif ( $options[0] =~ /^plugins\[[0-9]*\]/ ) {
232 $sub =~ s/^plugins\[//;
234 push @plugins, $options[1];
236 $plugins[$sub] = $options[1];
238 } elsif ($options[0] =~ /^fontsets\[\'[a-z]*\'\]/) {
239 # parse associative $fontsets array
242 $sub =~ s/^fontsets\[\'//;
243 $fontsets{$sub} = $options[1];
244 } elsif ( $options[0] =~ /^ldap_server\[[0-9]+\]/ ) {
247 $sub =~ s/^ldap_server\[//;
249 while ( ( $tmp = <FILE
> ) && ( $continue != 1 ) ) {
250 if ( $tmp =~ /\);\s*$/ ) {
254 if ( $tmp =~ /^\s*[\'\"]host[\'\"]/i ) {
255 $tmp =~ s/^\s*[\'\"]host[\'\"]\s*=>\s*[\'\"]//i;
256 $tmp =~ s/[\'\"],?\s*$//;
257 $tmp =~ s/[\'\"]\);\s*$//;
259 } elsif ( $tmp =~ /^\s*[\'\"]base[\'\"]/i ) {
260 $tmp =~ s/^\s*[\'\"]base[\'\"]\s*=>\s*[\'\"]//i;
261 $tmp =~ s/[\'\"],?\s*$//;
262 $tmp =~ s/[\'\"]\);\s*$//;
264 } elsif ( $tmp =~ /^\s*[\'\"]charset[\'\"]/i ) {
265 $tmp =~ s/^\s*[\'\"]charset[\'\"]\s*=>\s*[\'\"]//i;
266 $tmp =~ s/[\'\"],?\s*$//;
267 $tmp =~ s/[\'\"]\);\s*$//;
269 } elsif ( $tmp =~ /^\s*[\'\"]port[\'\"]/i ) {
270 $tmp =~ s/^\s*[\'\"]port[\'\"]\s*=>\s*[\'\"]?//i;
271 $tmp =~ s/[\'\"]?,?\s*$//;
272 $tmp =~ s/[\'\"]?\);\s*$//;
274 } elsif ( $tmp =~ /^\s*[\'\"]maxrows[\'\"]/i ) {
275 $tmp =~ s/^\s*[\'\"]maxrows[\'\"]\s*=>\s*[\'\"]?//i;
276 $tmp =~ s/[\'\"]?,?\s*$//;
277 $tmp =~ s/[\'\"]?\);\s*$//;
279 } elsif ( $tmp =~ /^\s*[\'\"]filter[\'\"]/i ) {
280 $tmp =~ s/^\s*[\'\"]filter[\'\"]\s*=>\s*[\'\"]?//i;
281 $tmp =~ s/[\'\"]?,?\s*$//;
282 $tmp =~ s/[\'\"]?\);\s*$//;
284 } elsif ( $tmp =~ /^\s*[\'\"]name[\'\"]/i ) {
285 $tmp =~ s/^\s*[\'\"]name[\'\"]\s*=>\s*[\'\"]//i;
286 $tmp =~ s/[\'\"],?\s*$//;
287 $tmp =~ s/[\'\"]\);\s*$//;
289 } elsif ( $tmp =~ /^\s*[\'\"]binddn[\'\"]/i ) {
290 $tmp =~ s/^\s*[\'\"]binddn[\'\"]\s*=>\s*[\'\"]//i;
291 $tmp =~ s/[\'\"],?\s*$//;
292 $tmp =~ s/[\'\"]\);\s*$//;
294 } elsif ( $tmp =~ /^\s*[\'\"]bindpw[\'\"]/i ) {
295 $tmp =~ s/^\s*[\'\"]bindpw[\'\"]\s*=>\s*[\'\"]//i;
296 $tmp =~ s/[\'\"],?\s*$//;
297 $tmp =~ s/[\'\"]\);\s*$//;
299 } elsif ( $tmp =~ /^\s*[\'\"]protocol[\'\"]/i ) {
300 $tmp =~ s/^\s*[\'\"]protocol[\'\"]\s*=>\s*[\'\"]?//i;
301 $tmp =~ s/[\'\"]?,?\s*$//;
302 $tmp =~ s/[\'\"]?\);\s*$//;
304 } elsif ( $tmp =~ /^\s*[\'\"]limit_scope[\'\"]/i ) {
305 $tmp =~ s/^\s*[\'\"]limit_scope[\'\"]\s*=>\s*[\'\"]?//i;
306 $tmp =~ s/[\'\"]?,?\s*$//;
307 $tmp =~ s/[\'\"]?\);\s*$//;
309 } elsif ( $tmp =~ /^\s*[\'\"]listing[\'\"]/i ) {
310 $tmp =~ s/^\s*[\'\"]listing[\'\"]\s*=>\s*[\'\"]?//i;
311 $tmp =~ s/[\'\"]?,?\s*$//;
312 $tmp =~ s/[\'\"]?\);\s*$//;
314 } elsif ( $tmp =~ /^\s*[\'\"]writeable[\'\"]/i ) {
315 $tmp =~ s/^\s*[\'\"]writeable[\'\"]\s*=>\s*[\'\"]?//i;
316 $tmp =~ s/[\'\"]?,?\s*$//;
317 $tmp =~ s/[\'\"]?\);\s*$//;
319 } elsif ( $tmp =~ /^\s*[\'\"]search_tree[\'\"]/i ) {
320 $tmp =~ s/^\s*[\'\"]search_tree[\'\"]\s*=>\s*[\'\"]?//i;
321 $tmp =~ s/[\'\"]?,?\s*$//;
322 $tmp =~ s/[\'\"]?\);\s*$//;
324 } elsif ( $tmp =~ /^\s*[\'\"]starttls[\'\"]/i ) {
325 $tmp =~ s/^\s*[\'\"]starttls[\'\"]\s*=>\s*[\'\"]?//i;
326 $tmp =~ s/[\'\"]?,?\s*$//;
327 $tmp =~ s/[\'\"]?\);\s*$//;
331 $ldap_host[$sub] = $host;
332 $ldap_base[$sub] = $base;
333 $ldap_name[$sub] = $name;
334 $ldap_port[$sub] = $port;
335 $ldap_maxrows[$sub] = $maxrows;
336 $ldap_filter[$sub] = $filter;
337 $ldap_charset[$sub] = $charset;
338 $ldap_binddn[$sub] = $binddn;
339 $ldap_bindpw[$sub] = $bindpw;
340 $ldap_protocol[$sub] = $protocol;
341 $ldap_limit_scope[$sub] = $limit_scope;
342 $ldap_listing[$sub] = $listing;
343 $ldap_writeable[$sub] = $writeable;
344 $ldap_search_tree[$sub] = $search_tree;
345 $ldap_starttls[$sub] = $starttls;
346 } elsif ( $options[0] =~ /^(data_dir|attachment_dir|org_logo|signout_page|icon_theme_def)$/ ) {
347 ${ $options[0] } = &change_to_rel_path
($options[1]);
349 ${ $options[0] } = $options[1];
355 # FIXME: unknown introduction date
356 $useSendmail = 'false' if ( lc($useSendmail) ne 'true' );
357 $sendmail_path = "/usr/sbin/sendmail" if ( !$sendmail_path );
358 $pop_before_smtp = 'false' if ( !$pop_before_smtp );
359 $default_unseen_notify = 2 if ( !$default_unseen_notify );
360 $default_unseen_type = 1 if ( !$default_unseen_type );
361 $config_use_color = 0 if ( !$config_use_color );
362 $invert_time = 'false' if ( !$invert_time );
363 $force_username_lowercase = 'false' if ( !$force_username_lowercase );
364 $optional_delimiter = "detect" if ( !$optional_delimiter );
365 $auto_create_special = 'false' if ( !$auto_create_special );
366 $default_use_priority = 'true' if ( !$default_use_priority );
367 $default_use_mdn = 'true' if ( !$default_use_mdn );
368 $delete_folder = 'false' if ( !$delete_folder );
369 $noselect_fix_enable = 'false' if ( !$noselect_fix_enable );
370 $frame_top = "_top" if ( !$frame_top );
371 $provider_uri = '' if ( !$provider_uri );
372 $provider_name = '' if ( !$provider_name );
373 $no_list_for_subscribe = 'false' if ( !$no_list_for_subscribe );
374 $allow_charset_search = 'true' if ( !$allow_charset_search );
375 $allow_advanced_search = 0 if ( !$allow_advanced_search) ;
376 $prefs_user_field = 'user' if ( !$prefs_user_field );
377 $prefs_key_field = 'prefkey' if ( !$prefs_key_field );
378 $prefs_val_field = 'prefval' if ( !$prefs_val_field );
379 $session_name = 'SQMSESSID' if ( !$session_name );
380 $skip_SM_header = 'false' if ( !$skip_SM_header );
381 $default_use_javascript_addr_book = 'false' if (! $default_use_javascript_addr_book);
384 $hide_sm_attributions = 'false' if ( !$hide_sm_attributions );
386 $edit_identity = 'true' if ( !$edit_identity );
387 $edit_name = 'true' if ( !$edit_name );
390 $use_smtp_tls= 'false' if ( !$use_smtp_tls);
391 $smtp_auth_mech = 'none' if ( !$smtp_auth_mech );
392 $use_imap_tls = 'false' if ( !$use_imap_tls );
393 $imap_auth_mech = 'login' if ( !$imap_auth_mech );
396 $show_alternative_names = 'false' if ( !$show_alternative_names );
397 # $available_languages option available only in 1.5.0. removed due to $languages
398 # implementation changes. options are provided by limit_languages plugin
399 # $available_languages = 'all' if ( !$available_languages );
400 $aggressive_decoding = 'false' if ( !$aggressive_decoding );
401 # available only in 1.5.0 and 1.5.1
402 # $advanced_tree = 'false' if ( !$advanced_tree );
403 $use_php_recode = 'false' if ( !$use_php_recode );
404 $use_php_iconv = 'false' if ( !$use_php_iconv );
407 $use_icons = 'false' if ( !$use_icons );
408 $use_iframe = 'false' if ( !$use_iframe );
409 $lossy_encoding = 'false' if ( !$lossy_encoding );
410 $allow_remote_configtest = 'false' if ( !$allow_remote_configtest );
411 $addrbook_global_table = 'global_abook' if ( !$addrbook_global_table );
412 $addrbook_global_writeable = 'false' if ( !$addrbook_global_writeable );
413 $addrbook_global_listing = 'false' if ( !$addrbook_global_listing );
414 $abook_global_file = '' if ( !$abook_global_file);
415 $abook_global_file_writeable = 'false' if ( !$abook_global_file_writeable);
416 $abook_global_file_listing = 'true' if ( !$abook_global_file_listing );
417 $encode_header_key = '' if ( !$encode_header_key );
418 $hide_auth_header = 'false' if ( !$hide_auth_header );
419 $time_zone_type = '0' if ( !$time_zone_type );
420 $prefs_user_size = 128 if ( !$prefs_user_size );
421 $prefs_key_size = 64 if ( !$prefs_key_size );
422 $prefs_val_size = 65536 if ( !$prefs_val_size );
425 $icon_theme_def = '' if ( !$icon_theme_def );
427 # add qmail-inject test here for backwards compatibility
428 if ( !$sendmail_args && $sendmail_path =~ /qmail-inject/ ) {
430 } elsif ( !$sendmail_args ) {
431 $sendmail_args = '-i -t';
434 $default_fontsize = '' if ( !$default_fontsize);
435 $default_fontset = '' if ( !$default_fontset);
437 %fontsets = ('serif', 'serif',
438 'sans', 'helvetica,arial,sans-serif',
439 'comicsans', 'comic sans ms,sans-serif',
440 'tahoma', 'tahoma,sans-serif',
441 'verasans', 'bitstream vera sans,verdana,sans-serif');
444 # $use_imap_tls and $use_smtp_tls are switched to integer since 1.5.1
445 $use_imap_tls = 0 if ( $use_imap_tls eq 'false');
446 $use_imap_tls = 1 if ( $use_imap_tls eq 'true');
447 $use_smtp_tls = 0 if ( $use_smtp_tls eq 'false');
448 $use_smtp_tls = 1 if ( $use_smtp_tls eq 'true');
449 # sorting options changed names and reversed values in 1.5.1
450 $disable_thread_sort = 'false' if ( !$disable_thread_sort );
451 $disable_server_sort = 'false' if ( !$disable_server_sort );
454 $abook_file_line_length = 2048 if ( !$abook_file_line_length );
455 $config_location_base = '' if ( !$config_location_base );
456 $smtp_sitewide_user = '' if ( !$smtp_sitewide_user );
457 $smtp_sitewide_pass = '' if ( !$smtp_sitewide_pass );
459 if ( $ARGV[0] eq '--install-plugin' ) {
460 print "Activating plugin " . $ARGV[1] . "\n";
461 push @plugins, $ARGV[1];
464 } elsif ( $ARGV[0] eq '--remove-plugin' ) {
465 print "Removing plugin " . $ARGV[1] . "\n";
466 foreach $plugin (@plugins) {
467 if ( $plugin ne $ARGV[1] ) {
468 push @newplugins, $plugin;
471 @plugins = @newplugins;
476 #####################################################################################
477 if ( $config_use_color == 1 ) {
483 $config_use_color = 2;
486 while ( ( $command ne "q" ) && ( $command ne "Q" ) && ( $command ne ":q" ) ) {
488 print $WHT. "SquirrelMail Configuration : " . $NRM;
489 if ( $config == 1 ) { print "Read: config.php"; }
490 elsif ( $config == 2 ) { print "Read: config_default.php"; }
491 print " ($print_config_version)\n";
492 print "---------------------------------------------------------\n";
495 print $WHT. "Main Menu --\n" . $NRM;
496 print "1. Organization Preferences\n";
497 print "2. Server Settings\n";
498 print "3. Folder Defaults\n";
499 print "4. General Options\n";
500 print "5. User Interface\n";
501 print "6. Address Books\n";
502 print "7. Message of the Day (MOTD)\n";
503 print "8. Plugins\n";
504 print "9. Database\n";
505 print "10. Language settings\n";
506 print "11. Tweaks\n";
508 print "D. Set pre-defined settings for specific IMAP servers\n";
510 } elsif ( $menu == 1 ) {
511 print $WHT. "Organization Preferences\n" . $NRM;
512 print "1. Organization Name : $WHT$org_name$NRM\n";
513 print "2. Organization Logo : $WHT$org_logo$NRM\n";
514 print "3. Org. Logo Width/Height : $WHT($org_logo_width/$org_logo_height)$NRM\n";
515 print "4. Organization Title : $WHT$org_title$NRM\n";
516 print "5. Signout Page : $WHT$signout_page$NRM\n";
517 print "6. Top Frame : $WHT$frame_top$NRM\n";
518 print "7. Provider link : $WHT$provider_uri$NRM\n";
519 print "8. Provider name : $WHT$provider_name$NRM\n";
522 print "R Return to Main Menu\n";
523 } elsif ( $menu == 2 ) {
524 print $WHT. "Server Settings\n\n" . $NRM;
525 print $WHT . "General" . $NRM . "\n";
527 print "1. Domain : $WHT$domain$NRM\n";
528 print "2. Invert Time : $WHT$invert_time$NRM\n";
529 print "3. Sendmail or SMTP : $WHT";
530 if ( lc($useSendmail) eq 'true' ) {
538 if ( $show_imap_settings ) {
539 print $WHT . "IMAP Settings". $NRM . "\n--------------\n";
540 print "4. IMAP Server : $WHT$imapServerAddress$NRM\n";
541 print "5. IMAP Port : $WHT$imapPort$NRM\n";
542 print "6. Authentication type : $WHT$imap_auth_mech$NRM\n";
543 print "7. Secure IMAP (TLS) : $WHT" . display_use_tls
($use_imap_tls) . "$NRM\n";
544 print "8. Server software : $WHT$imap_server_type$NRM\n";
545 print "9. Delimiter : $WHT$optional_delimiter$NRM\n";
547 } elsif ( $show_smtp_settings ) {
548 if ( lc($useSendmail) eq 'true' ) {
549 print $WHT . "Sendmail" . $NRM . "\n--------\n";
550 print "4. Sendmail Path : $WHT$sendmail_path$NRM\n";
551 print "5. Sendmail arguments : $WHT$sendmail_args$NRM\n";
552 print "6. Header encryption key : $WHT$encode_header_key$NRM\n";
555 print $WHT . "SMTP Settings" . $NRM . "\n-------------\n";
556 print "4. SMTP Server : $WHT$smtpServerAddress$NRM\n";
557 print "5. SMTP Port : $WHT$smtpPort$NRM\n";
558 print "6. POP before SMTP : $WHT$pop_before_smtp$NRM\n";
559 print "7. SMTP Authentication : $WHT$smtp_auth_mech" . display_smtp_sitewide_userpass
() ."$NRM\n";
560 print "8. Secure SMTP (TLS) : $WHT" . display_use_tls
($use_smtp_tls) . "$NRM\n";
561 print "9. Header encryption key : $WHT$encode_header_key$NRM\n";
566 if ($show_imap_settings == 0) {
567 print "A. Update IMAP Settings : ";
568 print "$WHT$imapServerAddress$NRM:";
569 print "$WHT$imapPort$NRM ";
570 print "($WHT$imap_server_type$NRM)\n";
572 if ($show_smtp_settings == 0) {
573 if ( lc($useSendmail) eq 'true' ) {
574 print "B. Change Sendmail Config : $WHT$sendmail_path$NRM\n";
576 print "B. Update SMTP Settings : ";
577 print "$WHT$smtpServerAddress$NRM:";
578 print "$WHT$smtpPort$NRM\n";
581 if ( $show_smtp_settings || $show_imap_settings )
584 ($show_imap_settings ?
"IMAP Server" :
585 (lc($useSendmail) eq 'true') ?
"Sendmail" : "SMTP") . " Settings\n";
589 print "R Return to Main Menu\n";
590 } elsif ( $menu == 3 ) {
591 print $WHT. "Folder Defaults\n" . $NRM;
592 print "1. Default Folder Prefix : $WHT$default_folder_prefix$NRM\n";
593 print "2. Show Folder Prefix Option : $WHT$show_prefix_option$NRM\n";
594 print "3. Trash Folder : $WHT$trash_folder$NRM\n";
595 print "4. Sent Folder : $WHT$sent_folder$NRM\n";
596 print "5. Drafts Folder : $WHT$draft_folder$NRM\n";
597 print "6. By default, move to trash : $WHT$default_move_to_trash$NRM\n";
598 print "7. By default, move to sent : $WHT$default_move_to_sent$NRM\n";
599 print "8. By default, save as draft : $WHT$default_save_as_draft$NRM\n";
600 print "9. List Special Folders First : $WHT$list_special_folders_first$NRM\n";
601 print "10. Show Special Folders Color : $WHT$use_special_folder_color$NRM\n";
602 print "11. Auto Expunge : $WHT$auto_expunge$NRM\n";
603 print "12. Default Sub. of INBOX : $WHT$default_sub_of_inbox$NRM\n";
604 print "13. Show 'Contain Sub.' Option : $WHT$show_contain_subfolders_option$NRM\n";
605 print "14. Default Unseen Notify : $WHT$default_unseen_notify$NRM\n";
606 print "15. Default Unseen Type : $WHT$default_unseen_type$NRM\n";
607 print "16. Auto Create Special Folders : $WHT$auto_create_special$NRM\n";
608 print "17. Folder Delete Bypasses Trash : $WHT$delete_folder$NRM\n";
609 print "18. Enable /NoSelect folder fix : $WHT$noselect_fix_enable$NRM\n";
611 print "R Return to Main Menu\n";
612 } elsif ( $menu == 4 ) {
613 print $WHT. "General Options\n" . $NRM;
614 print "1. Data Directory : $WHT$data_dir$NRM\n";
615 print "2. Attachment Directory : $WHT$attachment_dir$NRM\n";
616 print "3. Directory Hash Level : $WHT$dir_hash_level$NRM\n";
617 print "4. Default Left Size : $WHT$default_left_size$NRM\n";
618 print "5. Usernames in Lowercase : $WHT$force_username_lowercase$NRM\n";
619 print "6. Allow use of priority : $WHT$default_use_priority$NRM\n";
620 print "7. Hide SM attributions : $WHT$hide_sm_attributions$NRM\n";
621 print "8. Allow use of receipts : $WHT$default_use_mdn$NRM\n";
622 print "9. Allow editing of identity : $WHT$edit_identity$NRM\n";
623 print " Allow editing of name : $WHT$edit_name$NRM\n";
624 print " Remove username from header : $WHT$hide_auth_header$NRM\n";
625 print "10. Disable server thread sort : $WHT$disable_thread_sort$NRM\n";
626 print "11. Disable server-side sorting : $WHT$disable_server_sort$NRM\n";
627 print "12. Allow server charset search : $WHT$allow_charset_search$NRM\n";
628 print "13. Allow advanced search : $WHT$allow_advanced_search$NRM\n";
629 print "14. PHP session name : $WHT$session_name$NRM\n";
630 print "15. Time zone configuration : $WHT$time_zone_type$NRM\n";
631 print "16. Location base : $WHT$config_location_base$NRM\n";
633 print "R Return to Main Menu\n";
634 } elsif ( $menu == 5 ) {
635 print $WHT. "User Interface\n" . $NRM;
636 print "1. Use Icons? : $WHT$use_icons$NRM\n";
637 # print "3. Default Icon Set : $WHT$icon_theme_def$NRM\n";
638 print "2. Default font size : $WHT$default_fontsize$NRM\n";
639 print "3. Manage template sets\n";
640 print "4. Manage user themes\n";
641 print "5. Manage font sets\n";
642 print "6. Manage icon themes\n";
645 print "R Return to Main Menu\n";
646 } elsif ( $menu == 6 ) {
647 print $WHT. "Address Books\n" . $NRM;
648 print "1. Change LDAP Servers\n";
649 for ( $count = 0 ; $count <= $#ldap_host ; $count++ ) {
650 print " > $ldap_host[$count]\n";
652 print "2. Use Javascript address book search : $WHT$default_use_javascript_addr_book$NRM\n";
653 print "3. Global address book file : $WHT$abook_global_file$NRM\n";
654 print "4. Allow writing into global file address book : $WHT$abook_global_file_writeable$NRM\n";
655 print "5. Allow listing of global file address book : $WHT$abook_global_file_listing$NRM\n";
656 print "6. Allowed address book line length : $WHT$abook_file_line_length$NRM\n";
658 print "R Return to Main Menu\n";
659 } elsif ( $menu == 7 ) {
660 print $WHT. "Message of the Day (MOTD)\n" . $NRM;
663 print "1 Edit the MOTD\n";
665 print "R Return to Main Menu\n";
666 } elsif ( $menu == 8 ) {
667 print $WHT. "Plugins\n" . $NRM;
668 print " Installed Plugins\n";
670 for ( $count = 0 ; $count <= $#plugins ; $count++ ) {
672 print " $num. $plugins[$count]\n";
674 print "\n Available Plugins:\n";
675 opendir( DIR
, "../plugins" );
676 @files = readdir(DIR
);
678 @unused_plugins = ();
679 for ( $i = 0 ; $i <= $#files ; $i++ ) {
680 if ( -d
"../plugins/" . $files[$i] && $files[$i] !~ /^\./ && $files[$i] ne "CVS" ) {
682 for ( $k = 0 ; $k <= $#plugins ; $k++ ) {
683 if ( $plugins[$k] eq $files[$i] ) {
688 $unused_plugins[$pos] = $files[$i];
694 for ( $i = 0 ; $i <= $#unused_plugins ; $i++ ) {
696 print " $num. $unused_plugins[$i]\n";
701 print "R Return to Main Menu\n";
702 } elsif ( $menu == 9 ) {
703 print $WHT. "Database\n" . $NRM;
704 print "1. DSN for Address Book : $WHT$addrbook_dsn$NRM\n";
705 print "2. Table for Address Book : $WHT$addrbook_table$NRM\n";
707 print "3. DSN for Preferences : $WHT$prefs_dsn$NRM\n";
708 print "4. Table for Preferences : $WHT$prefs_table$NRM\n";
709 print "5. Field for username : $WHT$prefs_user_field$NRM ($prefs_user_size)\n";
710 print "6. Field for prefs key : $WHT$prefs_key_field$NRM ($prefs_key_size)\n";
711 print "7. Field for prefs value : $WHT$prefs_val_field$NRM ($prefs_val_size)\n";
713 print "8. DSN for Global Address Book : $WHT$addrbook_global_dsn$NRM\n";
714 print "9. Table for Global Address Book : $WHT$addrbook_global_table$NRM\n";
715 print "10. Allow writing into Global Address Book : $WHT$addrbook_global_writeable$NRM\n";
716 print "11. Allow listing of Global Address Book : $WHT$addrbook_global_listing$NRM\n";
718 print "R Return to Main Menu\n";
719 } elsif ( $menu == 10 ) {
720 print $WHT. "Language settings\n" . $NRM;
721 print "1. Default Language : $WHT$squirrelmail_default_language$NRM\n";
722 print "2. Default Charset : $WHT$default_charset$NRM\n";
723 print "3. Show alternative language names : $WHT$show_alternative_names$NRM\n";
724 print "4. Enable aggressive decoding : $WHT$aggressive_decoding$NRM\n";
725 print "5. Enable lossy encoding : $WHT$lossy_encoding$NRM\n";
727 print "R Return to Main Menu\n";
728 } elsif ( $menu == 11 ) {
729 print $WHT. "Interface tweaks\n" . $NRM;
730 print "1. Display html mails in iframe : $WHT$use_iframe$NRM\n";
732 print $WHT. "PHP tweaks\n" . $NRM;
733 print "4. Use php recode functions : $WHT$use_php_recode$NRM\n";
734 print "5. Use php iconv functions : $WHT$use_php_iconv$NRM\n";
736 print $WHT. "Configuration tweaks\n" . $NRM;
737 print "6. Allow remote configtest : $WHT$allow_remote_configtest$NRM\n";
739 print "R Return to Main Menu\n";
741 if ( $config_use_color == 1 ) {
742 print "C Turn color off\n";
744 print "C Turn color on\n";
746 print "S Save data\n";
750 print "Command >> " . $WHT;
752 $command =~ s/[\n\r]//g;
753 $command =~ tr/A-Z/a-z/;
756 # Read the commands they entered.
757 if ( $command eq "r" ) {
759 } elsif ( $command eq "s" ) {
761 print "Press enter to continue...";
764 } elsif ( ( $command eq "q" ) && ( $saved == 0 ) ) {
765 print "You have not saved your data.\n";
766 print "Save? [" . $WHT . "Y" . $NRM . "/n]: ";
768 if ( ( $save =~ /^y/i ) || ( $save =~ /^\s*$/ ) ) {
771 } elsif ( $command eq "c" ) {
772 if ( $config_use_color == 1 ) {
773 $config_use_color = 2;
777 $config_use_color = 1;
781 } elsif ( $command eq "d" && $menu == 0 ) {
786 if ( ( $command > 0 ) && ( $command < 12 ) ) {
789 } elsif ( $menu == 1 ) {
790 if ( $command == 1 ) { $org_name = command1
(); }
791 elsif ( $command == 2 ) { $org_logo = command2
(); }
792 elsif ( $command == 3 ) { ($org_logo_width,$org_logo_height) = command2a
(); }
793 elsif ( $command == 4 ) { $org_title = command3
(); }
794 elsif ( $command == 5 ) { $signout_page = command4
(); }
795 elsif ( $command == 6 ) { $frame_top = command6
(); }
796 elsif ( $command == 7 ) { $provider_uri = command7
(); }
797 elsif ( $command == 8 ) { $provider_name = command8
(); }
799 } elsif ( $menu == 2 ) {
800 if ( $command eq "a" ) { $show_imap_settings = 1; $show_smtp_settings = 0; }
801 elsif ( $command eq "b" ) { $show_imap_settings = 0; $show_smtp_settings = 1; }
802 elsif ( $command eq "h" ) { $show_imap_settings = 0; $show_smtp_settings = 0; }
803 elsif ( $command <= 3 ) {
804 if ( $command == 1 ) { $domain = command11
(); }
805 elsif ( $command == 2 ) { $invert_time = command110
(); }
806 elsif ( $command == 3 ) { $useSendmail = command14
(); }
807 $show_imap_settings = 0; $show_smtp_settings = 0;
808 } elsif ( $show_imap_settings ) {
809 if ( $command == 4 ) { $imapServerAddress = command12
(); }
810 elsif ( $command == 5 ) { $imapPort = command13
(); }
811 elsif ( $command == 6 ) { $imap_auth_mech = command112a
(); }
812 elsif ( $command == 7 ) { $use_imap_tls = command_use_tls
("IMAP",$use_imap_tls); }
813 elsif ( $command == 8 ) { $imap_server_type = command19
(); }
814 elsif ( $command == 9 ) { $optional_delimiter = command111
(); }
815 } elsif ( $show_smtp_settings && lc($useSendmail) eq 'true' ) {
816 if ( $command == 4 ) { $sendmail_path = command15
(); }
817 elsif ( $command == 5 ) { $sendmail_args = command_sendmail_args
(); }
818 elsif ( $command == 6 ) { $encode_header_key = command114
(); }
819 } elsif ( $show_smtp_settings ) {
820 if ( $command == 4 ) { $smtpServerAddress = command16
(); }
821 elsif ( $command == 5 ) { $smtpPort = command17
(); }
822 elsif ( $command == 6 ) { $pop_before_smtp = command18a
(); }
823 elsif ( $command == 7 ) { $smtp_auth_mech = command112b
(); }
824 elsif ( $command == 8 ) { $use_smtp_tls = command_use_tls
("SMTP",$use_smtp_tls); }
825 elsif ( $command == 9 ) { $encode_header_key = command114
(); }
827 } elsif ( $menu == 3 ) {
828 if ( $command == 1 ) { $default_folder_prefix = command21
(); }
829 elsif ( $command == 2 ) { $show_prefix_option = command22
(); }
830 elsif ( $command == 3 ) { $trash_folder = command23a
(); }
831 elsif ( $command == 4 ) { $sent_folder = command23b
(); }
832 elsif ( $command == 5 ) { $draft_folder = command23c
(); }
833 elsif ( $command == 6 ) { $default_move_to_trash = command24a
(); }
834 elsif ( $command == 7 ) { $default_move_to_sent = command24b
(); }
835 elsif ( $command == 8 ) { $default_save_as_draft = command24c
(); }
836 elsif ( $command == 9 ) { $list_special_folders_first = command27
(); }
837 elsif ( $command == 10 ) { $use_special_folder_color = command28
(); }
838 elsif ( $command == 11 ) { $auto_expunge = command29
(); }
839 elsif ( $command == 12 ) { $default_sub_of_inbox = command210
(); }
840 elsif ( $command == 13 ) { $show_contain_subfolders_option = command211
(); }
841 elsif ( $command == 14 ) { $default_unseen_notify = command212
(); }
842 elsif ( $command == 15 ) { $default_unseen_type = command213
(); }
843 elsif ( $command == 16 ) { $auto_create_special = command214
(); }
844 elsif ( $command == 17 ) { $delete_folder = command215
(); }
845 elsif ( $command == 18 ) { $noselect_fix_enable = command216
(); }
846 } elsif ( $menu == 4 ) {
847 if ( $command == 1 ) { $data_dir = command33a
(); }
848 elsif ( $command == 2 ) { $attachment_dir = command33b
(); }
849 elsif ( $command == 3 ) { $dir_hash_level = command33c
(); }
850 elsif ( $command == 4 ) { $default_left_size = command35
(); }
851 elsif ( $command == 5 ) { $force_username_lowercase = command36
(); }
852 elsif ( $command == 6 ) { $default_use_priority = command37
(); }
853 elsif ( $command == 7 ) { $hide_sm_attributions = command38
(); }
854 elsif ( $command == 8 ) { $default_use_mdn = command39
(); }
855 elsif ( $command == 9 ) { $edit_identity = command310
(); }
856 elsif ( $command == 10 ) { $disable_thread_sort = command312
(); }
857 elsif ( $command == 11 ) { $disable_server_sort = command313
(); }
858 elsif ( $command == 12 ) { $allow_charset_search = command314
(); }
859 elsif ( $command == 13 ) { $allow_advanced_search = command316
(); }
860 elsif ( $command == 14 ) { $session_name = command317
(); }
861 elsif ( $command == 15 ) { $time_zone_type = command318
(); }
862 elsif ( $command == 16 ) { $config_location_base = command_config_location_base
(); }
863 } elsif ( $menu == 5 ) {
864 if ( $command == 1 ) { $use_icons = commandB3
(); }
865 # elsif ( $command == 3 ) { $icon_theme_def = commandB7(); }
866 elsif ( $command == 2 ) { $default_fontsize = command_default_fontsize
(); }
867 elsif ( $command == 3 ) { $templateset_default = command_templates
(); }
868 elsif ( $command == 4 ) { command_userThemes
(); }
869 elsif ( $command == 5 ) { command_fontsets
(); }
870 elsif ( $command == 6 ) { command_iconSets
(); }
871 } elsif ( $menu == 6 ) {
872 if ( $command == 1 ) { command61
(); }
873 elsif ( $command == 2 ) { command62
(); }
874 elsif ( $command == 3 ) { $abook_global_file=command63
(); }
875 elsif ( $command == 4 ) { command64
(); }
876 elsif ( $command == 5 ) { command65
(); }
877 elsif ( $command == 6 ) { command_abook_file_line_length
(); }
878 } elsif ( $menu == 7 ) {
879 if ( $command == 1 ) { $motd = command71
(); }
880 } elsif ( $menu == 8 ) {
881 if ( $command =~ /^[0-9]+/ ) { @plugins = command81
(); }
882 } elsif ( $menu == 9 ) {
883 if ( $command == 1 ) { $addrbook_dsn = command91
(); }
884 elsif ( $command == 2 ) { $addrbook_table = command92
(); }
885 elsif ( $command == 3 ) { $prefs_dsn = command93
(); }
886 elsif ( $command == 4 ) { $prefs_table = command94
(); }
887 elsif ( $command == 5 ) { $prefs_user_field = command95
(); }
888 elsif ( $command == 6 ) { $prefs_key_field = command96
(); }
889 elsif ( $command == 7 ) { $prefs_val_field = command97
(); }
890 elsif ( $command == 8 ) { $addrbook_global_dsn = command98
(); }
891 elsif ( $command == 9 ) { $addrbook_global_table = command99
(); }
892 elsif ( $command == 10 ) { $addrbook_global_writeable = command910
(); }
893 elsif ( $command == 11 ) { $addrbook_global_listing = command911
(); }
894 } elsif ( $menu == 10 ) {
895 if ( $command == 1 ) { $squirrelmail_default_language = commandA1
(); }
896 elsif ( $command == 2 ) { $default_charset = commandA2
(); }
897 elsif ( $command == 3 ) { $show_alternative_names = commandA3
(); }
898 elsif ( $command == 4 ) { $aggressive_decoding = commandA4
(); }
899 elsif ( $command == 5 ) { $lossy_encoding = commandA5
(); }
900 } elsif ( $menu == 11 ) {
901 if ( $command == 1 ) { $use_iframe = commandB2
(); }
902 elsif ( $command == 4 ) { $use_php_recode = commandB4
(); }
903 elsif ( $command == 5 ) { $use_php_iconv = commandB5
(); }
904 elsif ( $command == 6 ) { $allow_remote_configtest = commandB6
(); }
910 print "\nExiting conf.pl.\n".
911 "You might want to test your configuration by browsing to\n".
912 "http://your-squirrelmail-location/src/configtest.php\n".
913 "Happy SquirrelMailing!\n\n";
916 ####################################################################################
920 print "We have tried to make the name SquirrelMail as transparent as\n";
921 print "possible. If you set up an organization name, most places where\n";
922 print "SquirrelMail would take credit will be credited to your organization.\n";
924 print "If your Organization Name includes a '\$', please precede it with a \\. \n";
925 print "Other '\$' will be considered the beginning of a variable that\n";
926 print "must be defined before the \$org_name is printed.\n";
928 print "[$WHT$org_name$NRM]: $WHT";
929 $new_org_name = <STDIN
>;
930 if ( $new_org_name eq "\n" ) {
931 $new_org_name = $org_name;
933 $new_org_name =~ s/[\r\n]//g;
934 $new_org_name =~ s/\"/"/g;
936 return $new_org_name;
941 print "Your organization's logo is an image that will be displayed at\n";
942 print "different times throughout SquirrelMail. ";
944 print "Please be aware of the following: \n";
945 print " - Relative URLs are relative to the config dir\n";
946 print " to use the default logo, use ../images/sm_logo.png\n";
947 print " - To specify a logo defined outside the SquirrelMail source tree\n";
948 print " use the absolute URL the webserver would use to include the file\n";
949 print " e.g. http://www.example.com/images/mylogo.gif or /images/mylogo.jpg\n";
951 print "[$WHT$org_logo$NRM]: $WHT";
952 $new_org_logo = <STDIN
>;
953 if ( $new_org_logo eq "\n" ) {
954 $new_org_logo = $org_logo;
956 $new_org_logo =~ s/[\r\n]//g;
958 return $new_org_logo;
963 print "Your organization's logo is an image that will be displayed at\n";
964 print "different times throughout SquirrelMail. Width\n";
965 print "and Height of your logo image. Use '0' to disable.\n";
967 print "Width: [$WHT$org_logo_width$NRM]: $WHT";
968 $new_org_logo_width = <STDIN
>;
969 $new_org_logo_width =~ tr/0-9//cd; # only want digits!
970 if ( $new_org_logo_width eq '' ) {
971 $new_org_logo_width = $org_logo_width;
973 if ( $new_org_logo_width > 0 ) {
974 print "Height: [$WHT$org_logo_height$NRM]: $WHT";
975 $new_org_logo_height = <STDIN
>;
976 $new_org_logo_height =~ tr/0-9//cd; # only want digits!
977 if( $new_org_logo_height eq '' ) {
978 $new_org_logo_height = $org_logo_height;
981 $new_org_logo_height = 0;
983 return ($new_org_logo_width, $new_org_logo_height);
988 print "A title is what is displayed at the top of the browser window in\n";
989 print "the titlebar. Usually this will end up looking something like:\n";
990 print "\"Netscape: $org_title\"\n";
992 print "If your Organization Title includes a '\$', please precede it with a \\. \n";
993 print "Other '\$' will be considered the beginning of a variable that\n";
994 print "must be defined before the \$org_title is printed.\n";
996 print "[$WHT$org_title$NRM]: $WHT";
997 $new_org_title = <STDIN
>;
998 if ( $new_org_title eq "\n" ) {
999 $new_org_title = $org_title;
1001 $new_org_title =~ s/[\r\n]//g;
1002 $new_org_title =~ s/\"/\'/g;
1004 return $new_org_title;
1009 print "When users click the Sign Out button they will be logged out and\n";
1010 print "then sent to signout_page. If signout_page is left empty,\n";
1011 print "(hit space and then return) they will be taken, as normal,\n";
1012 print "to the default and rather sparse SquirrelMail signout page.\n";
1014 print "[$WHT$signout_page$NRM]: $WHT";
1015 $new_signout_page = <STDIN
>;
1016 if ( $new_signout_page eq "\n" ) {
1017 $new_signout_page = $signout_page;
1019 $new_signout_page =~ s/[\r\n]//g;
1020 $new_signout_page =~ s/^\s+$//g;
1022 return $new_signout_page;
1027 print "SquirrelMail defaults to using the whole of the browser window.\n";
1028 print "This allows you to keep it within a specified frame. The default\n";
1029 print "is '_top'\n";
1031 print "[$WHT$frame_top$NRM]: $WHT";
1032 $new_frame_top = <STDIN
>;
1033 if ( $new_frame_top eq "\n" ) {
1034 $new_frame_top = '_top';
1036 $new_frame_top =~ s/[\r\n]//g;
1037 $new_frame_top =~ s/^\s+$//g;
1039 return $new_frame_top;
1042 # Default link to provider
1044 print "Here you can set the link on the right of the page.\n";
1045 print "If empty, it will link to the SquirrelMail About page.\n";
1047 print "[$WHT$provider_uri$NRM]: $WHT";
1048 $new_provider_uri = <STDIN
>;
1049 if ( $new_provider_uri eq "\n" ) {
1050 $new_provider_uri = '';
1052 $new_provider_uri =~ s/[\r\n]//g;
1053 $new_provider_uri =~ s/^\s+$//g;
1055 return $new_provider_uri;
1059 print "Here you can set the name of the link on the right of the page.\n";
1060 print "The default is 'SquirrelMail'\n";
1062 print "[$WHT$provider_name$NRM]: $WHT";
1063 $new_provider_name = <STDIN
>;
1064 if ( $new_provider_name eq "\n" ) {
1065 $new_provider_name = 'SquirrelMail';
1067 $new_provider_name =~ s/[\r\n]//g;
1068 $new_provider_name =~ s/^\s+$//g;
1069 $new_provider_name =~ s/\'/\\'/g;
1071 return $new_provider_name;
1074 ####################################################################################
1078 print "The domain name is the suffix at the end of all email addresses. If\n";
1079 print "for example, your email address is jdoe\@example.com, then your domain\n";
1080 print "would be example.com.\n";
1082 print "[$WHT$domain$NRM]: $WHT";
1083 $new_domain = <STDIN
>;
1084 if ( $new_domain eq "\n" ) {
1085 $new_domain = $domain;
1087 $new_domain =~ s/[\r\n]//g;
1094 print "This is the hostname where your IMAP server can be contacted.\n";
1095 print "[$WHT$imapServerAddress$NRM]: $WHT";
1096 $new_imapServerAddress = <STDIN
>;
1097 if ( $new_imapServerAddress eq "\n" ) {
1098 $new_imapServerAddress = $imapServerAddress;
1100 $new_imapServerAddress =~ s/[\r\n]//g;
1102 return $new_imapServerAddress;
1107 print "This is the port that your IMAP server is on. Usually this is 143.\n";
1108 print "[$WHT$imapPort$NRM]: $WHT";
1109 $new_imapPort = <STDIN
>;
1110 if ( $new_imapPort eq "\n" ) {
1111 $new_imapPort = $imapPort;
1113 $new_imapPort =~ s/[\r\n]//g;
1115 return $new_imapPort;
1120 print "You now need to choose the method that you will use for sending\n";
1121 print "messages in SquirrelMail. You can either connect to an SMTP server\n";
1122 print "or use sendmail directly.\n";
1123 if ( lc($useSendmail) eq 'true' ) {
1124 $default_value = "1";
1126 $default_value = "2";
1129 print " 1. Sendmail\n";
1131 print "Your choice [1/2] [$WHT$default_value$NRM]: $WHT";
1132 $use_sendmail = <STDIN
>;
1133 if ( ( $use_sendmail =~ /^1\n/i )
1134 || ( ( $use_sendmail =~ /^\n/ ) && ( $default_value eq "1" ) ) ) {
1135 $useSendmail = 'true';
1137 $useSendmail = 'false';
1139 return $useSendmail;
1144 print "Specify where the sendmail executable is located. Usually /usr/sbin/sendmail\n";
1145 print "[$WHT$sendmail_path$NRM]: $WHT";
1146 $new_sendmail_path = <STDIN
>;
1147 if ( $new_sendmail_path eq "\n" ) {
1148 $new_sendmail_path = $sendmail_path;
1150 $new_sendmail_path =~ s/[\r\n]//g;
1152 return $new_sendmail_path;
1155 # Extra sendmail arguments
1156 sub command_sendmail_args
{
1157 print "Specify additional sendmail program arguments.\n";
1159 print "Make sure that arguments are supported by your sendmail program. -f argument \n";
1160 print "is added automatically by SquirrelMail scripts. Variable defaults to standard\n";
1161 print "/usr/sbin/sendmail arguments. If you use qmail-inject, nbsmtp or any other \n";
1162 print "sendmail wrapper, which does not support -i and -t arguments, set variable to\n";
1163 print "empty string or use arguments suitable for your mailer.\n";
1165 print "[$WHT$sendmail_args$NRM]: $WHT";
1166 $new_sendmail_args = <STDIN
>;
1167 if ( $new_sendmail_args eq "\n" ) {
1168 $new_sendmail_args = $sendmail_args;
1170 # strip linefeeds and crs.
1171 $new_sendmail_args =~ s/[\r\n]//g;
1173 return trim
($new_sendmail_args);
1178 print "This is the hostname of your SMTP server.\n";
1179 print "[$WHT$smtpServerAddress$NRM]: $WHT";
1180 $new_smtpServerAddress = <STDIN
>;
1181 if ( $new_smtpServerAddress eq "\n" ) {
1182 $new_smtpServerAddress = $smtpServerAddress;
1184 $new_smtpServerAddress =~ s/[\r\n]//g;
1186 return $new_smtpServerAddress;
1191 print "This is the port to connect to for SMTP. Usually 25.\n";
1192 print "[$WHT$smtpPort$NRM]: $WHT";
1193 $new_smtpPort = <STDIN
>;
1194 if ( $new_smtpPort eq "\n" ) {
1195 $new_smtpPort = $smtpPort;
1197 $new_smtpPort =~ s/[\r\n]//g;
1199 return $new_smtpPort;
1204 print "Do you wish to use POP3 before SMTP? Your server must\n";
1205 print "support this in order for SquirrelMail to work with it.\n";
1208 $YesNo = 'y' if ( lc($pop_before_smtp) eq 'true' );
1210 print "Use pop before SMTP (y/n) [$WHT$YesNo$NRM]: $WHT";
1212 $new_pop_before_smtp = <STDIN
>;
1213 $new_pop_before_smtp =~ tr/yn//cd;
1214 return 'true' if ( $new_pop_before_smtp eq "y" );
1215 return 'false' if ( $new_pop_before_smtp eq "n" );
1216 return $pop_before_smtp;
1221 print "Each IMAP server has its own quirks. As much as we tried to stick\n";
1222 print "to standards, it doesn't help much if the IMAP server doesn't follow\n";
1223 print "the same principles. We have made some work-arounds for some of\n";
1224 print "these servers. If you would like to use them, please select your\n";
1225 print "IMAP server. If you do not wish to use these work-arounds, you can\n";
1226 print "set this to \"other\", and none will be used.\n";
1227 print " courier = Courier IMAP server\n";
1228 print " cyrus = Cyrus IMAP server\n";
1229 print " dovecot = Dovecot Secure IMAP server\n";
1230 print " exchange = Microsoft Exchange IMAP server\n";
1231 print " hmailserver = hMailServer\n";
1232 print " macosx = Mac OS X Mailserver\n";
1233 print " mercury32 = Mercury Mail Transport System\n";
1234 print " uw = University of Washington's IMAP server\n";
1236 print " other = Not one of the above servers\n";
1238 print "[$WHT$imap_server_type$NRM]: $WHT";
1239 $new_imap_server_type = <STDIN
>;
1241 if ( $new_imap_server_type eq "\n" ) {
1242 $new_imap_server_type = $imap_server_type;
1244 $new_imap_server_type =~ s/[\r\n]//g;
1246 return $new_imap_server_type;
1251 print "Sometimes the date of messages sent is messed up (off by a few hours\n";
1252 print "on some machines). Typically this happens if the system doesn't support\n";
1253 print "tm_gmtoff. It will happen only if your time zone is \"negative\".\n";
1254 print "This most often occurs on Solaris 7 machines in the United States.\n";
1255 print "By default, this is off. It should be kept off unless problems surface\n";
1256 print "about the time that messages are sent.\n";
1257 print " no = Do NOT fix time -- almost always correct\n";
1258 print " yes = Fix the time for this system\n";
1261 $YesNo = 'y' if ( lc($invert_time) eq 'true' );
1263 print "Fix the time for this system (y/n) [$WHT$YesNo$NRM]: $WHT";
1265 $new_invert_time = <STDIN
>;
1266 $new_invert_time =~ tr/yn//cd;
1267 return 'true' if ( $new_invert_time eq "y" );
1268 return 'false' if ( $new_invert_time eq "n" );
1269 return $invert_time;
1273 print "This is the delimiter that your IMAP server uses to distinguish between\n";
1274 print "folders. For example, Cyrus uses '.' as the delimiter and a complete\n";
1275 print "folder would look like 'INBOX.Friends.Bob', while UW uses '/' and would\n";
1276 print "look like 'INBOX/Friends/Bob'. Normally this should be left at 'detect'\n";
1277 print "but if you are sure you know what delimiter your server uses, you can\n";
1278 print "specify it here.\n";
1279 print "\nTo have it autodetect the delimiter, set it to 'detect'.\n\n";
1280 print "[$WHT$optional_delimiter$NRM]: $WHT";
1281 $new_optional_delimiter = <STDIN
>;
1283 if ( $new_optional_delimiter eq "\n" ) {
1284 $new_optional_delimiter = $optional_delimiter;
1286 $new_optional_delimiter =~ s/[\r\n]//g;
1288 return $new_optional_delimiter;
1290 # IMAP authentication type
1291 # Possible values: login, plain, cram-md5, digest-md5
1292 # Now offers to detect supported mechs, assuming server & port are set correctly
1295 if ($use_imap_tls ne "0") {
1296 # 1. Script does not handle TLS.
1297 # 2. Server does not have to declare all supported authentication mechs when
1298 # STARTTLS is used. Supported mechs are declared only after STARTTLS.
1299 print "Auto-detection of login methods is unavailable when using TLS or STARTTLS.\n";
1301 print "If you have already set the hostname and port number, I can try to\n";
1302 print "detect the mechanisms your IMAP server supports.\n";
1303 print "I will try to detect CRAM-MD5 and DIGEST-MD5 support. I can't test\n";
1304 print "for \"login\" or \"plain\" without knowing a username and password.\n";
1305 print "Auto-detecting is optional - you can safely say \"n\" here.\n";
1306 print "\nTry to detect supported mechanisms? [y/N]: ";
1309 if ($inval =~ /^y\b/i) {
1310 # Yes, let's try to detect.
1311 print "Trying to detect IMAP capabilities...\n";
1312 my $host = $imapServerAddress . ':'. $imapPort;
1313 print "CRAM-MD5:\t";
1314 my $tmp = detect_auth_support
('IMAP',$host,'CRAM-MD5');
1315 if (defined($tmp)) {
1316 if ($tmp eq 'YES') {
1317 print "$WHT SUPPORTED$NRM\n";
1319 print "$WHT NOT SUPPORTED$NRM\n";
1322 print $WHT . " ERROR DETECTING$NRM\n";
1325 print "DIGEST-MD5:\t";
1326 $tmp = detect_auth_support
('IMAP',$host,'DIGEST-MD5');
1327 if (defined($tmp)) {
1328 if ($tmp eq 'YES') {
1329 print "$WHT SUPPORTED$NRM\n";
1331 print "$WHT NOT SUPPORTED$NRM\n";
1334 print $WHT . " ERROR DETECTING$NRM\n";
1339 print "\nWhat authentication mechanism do you want to use for IMAP connections?\n\n";
1340 print $WHT . "login" . $NRM . " - Plaintext. If you can do better, you probably should.\n";
1341 print $WHT . "plain" . $NRM . " - SASL PLAIN. If you need this, you already know it.\n";
1342 print $WHT . "cram-md5" . $NRM . " - Slightly better than plaintext methods.\n";
1343 print $WHT . "digest-md5" . $NRM . " - Privacy protection - better than cram-md5.\n";
1344 print "\n*** YOUR IMAP SERVER MUST SUPPORT THE MECHANISM YOU CHOOSE HERE ***\n";
1345 print "If you don't understand or are unsure, you probably want \"login\"\n\n";
1346 print "login, plain, cram-md5, or digest-md5 [$WHT$imap_auth_mech$NRM]: $WHT";
1349 if ( ($inval =~ /^cram-md5\b/i) || ($inval =~ /^digest-md5\b/i) || ($inval =~ /^login\b/i) || ($inval =~ /^plain\b/i)) {
1352 # user entered garbage or default value so nothing needs to be set
1353 return $imap_auth_mech;
1358 # SMTP authentication type
1359 # Possible choices: none, plain, cram-md5, digest-md5
1361 if ($use_smtp_tls ne "0") {
1362 print "Auto-detection of login methods is unavailable when using TLS or STARTTLS.\n";
1363 } elsif (eval ("use IO::Socket; 1")) {
1364 # try loading IO::Socket module
1365 print "If you have already set the hostname and port number, I can try to\n";
1366 print "automatically detect some of the mechanisms your SMTP server supports.\n";
1367 print "Auto-detection is *optional* - you can safely say \"n\" here.\n";
1368 print "\nTry to detect auth mechanisms? [y/N]: ";
1371 if ($inval =~ /^y\b/i) {
1372 # Yes, let's try to detect.
1373 print "Trying to detect supported methods (SMTP)...\n";
1376 # Check none by trying to relay to junk@microsoft.com
1377 $host = $smtpServerAddress . ':' . $smtpPort;
1378 my $sock = IO
::Socket
::INET
->new($host);
1379 print "Testing none:\t\t$WHT";
1380 if (!defined($sock)) {
1381 print " ERROR TESTING\n";
1384 print $sock "HELO $domain\r\n";
1385 $got = <$sock>; # Discard
1386 print $sock "MAIL FROM:<tester\@squirrelmail.org>\r\n";
1387 $got = <$sock>; # Discard
1388 print $sock "RCPT TO:<junk\@microsoft.com\r\n";
1389 $got = <$sock>; # This is the important line
1390 if ($got =~ /^250\b/) { # SMTP will relay without auth
1391 print "SUPPORTED$NRM\n";
1393 print "NOT SUPPORTED$NRM\n";
1395 print $sock "RSET\r\n";
1396 print $sock "QUIT\r\n";
1399 # Try login (SquirrelMail default)
1400 print "Testing login:\t\t";
1401 $tmp=detect_auth_support
('SMTP',$host,'LOGIN');
1402 if (defined($tmp)) {
1403 if ($tmp eq 'YES') {
1404 print $WHT . "SUPPORTED$NRM\n";
1406 print $WHT . "NOT SUPPORTED$NRM\n";
1409 print $WHT . "ERROR DETECTING$NRM\n";
1413 print "Testing CRAM-MD5:\t";
1414 $tmp=detect_auth_support
('SMTP',$host,'CRAM-MD5');
1415 if (defined($tmp)) {
1416 if ($tmp eq 'YES') {
1417 print $WHT . "SUPPORTED$NRM\n";
1419 print $WHT . "NOT SUPPORTED$NRM\n";
1422 print $WHT . "ERROR DETECTING$NRM\n";
1426 print "Testing DIGEST-MD5:\t";
1427 $tmp=detect_auth_support
('SMTP',$host,'DIGEST-MD5');
1428 if (defined($tmp)) {
1429 if ($tmp eq 'YES') {
1430 print $WHT . "SUPPORTED$NRM\n";
1432 print $WHT . "NOT SUPPORTED$NRM\n";
1435 print $WHT . "ERROR DETECTING$NRM\n";
1439 print "\nWhat authentication mechanism do you want to use for SMTP connections?\n";
1440 print $WHT . "none" . $NRM . " - Your SMTP server does not require authorization.\n";
1441 print $WHT . "login" . $NRM . " - Plaintext. If you can do better, you probably should.\n";
1442 print $WHT . "plain" . $NRM . " - SASL PLAIN. You already know it if you need this.\n";
1443 print $WHT . "cram-md5" . $NRM . " - Slightly better than plaintext.\n";
1444 print $WHT . "digest-md5" . $NRM . " - Privacy protection - better than cram-md5.\n";
1445 print $WHT . "\n*** YOUR SMTP SERVER MUST SUPPORT THE MECHANISM YOU CHOOSE HERE ***\n" . $NRM;
1446 print "If you don't understand or are unsure, you probably want \"none\"\n\n";
1447 print "none, login, cram-md5, or digest-md5 [$WHT$smtp_auth_mech$NRM]: $WHT";
1450 if ($inval =~ /^none\b/i) {
1451 # remove sitewide smtp authentication information
1452 $smtp_sitewide_user = '';
1453 $smtp_sitewide_pass = '';
1454 # SMTP doesn't necessarily require logins
1456 } elsif ( ($inval =~ /^cram-md5\b/i) || ($inval =~ /^digest-md5\b/i) ||
1457 ($inval =~ /^login\b/i) || ($inval =~/^plain\b/i)) {
1458 command_smtp_sitewide_userpass
($inval);
1460 } elsif (trim
($inval) eq '') {
1461 # user selected default value
1462 command_smtp_sitewide_userpass
($smtp_auth_mech);
1463 return $smtp_auth_mech;
1465 # user entered garbage
1466 return $smtp_auth_mech;
1470 sub command_smtp_sitewide_userpass
($) {
1471 # get first function argument
1472 my $auth_mech = shift(@_);
1474 $auth_mech = lc(trim
($auth_mech));
1475 if ($auth_mech eq 'none') {
1478 print "SMTP authentication uses IMAP username and password by default.\n";
1480 print "Would you like to use other login and password for all SquirrelMail \n";
1481 print "SMTP connections?";
1482 if ($smtp_sitewide_user ne '') {
1499 $smtp_sitewide_user = '';
1500 $smtp_sitewide_pass = '';
1501 } elsif ($tmp eq 'y') {
1502 print "Enter username [$smtp_sitewide_user]:";
1503 my $new_user = <STDIN
>;
1504 $new_user = trim
($new_user);
1505 if ($new_user ne '') {
1506 $smtp_sitewide_user = $new_user;
1508 if ($smtp_sitewide_user ne '') {
1509 print "If you don't enter any password, current sitewide password will be used.\n";
1510 print "If you enter space, password will be set to empty string.\n";
1511 print "Enter password:";
1512 my $new_pass = <STDIN
>;
1513 if ($new_pass ne "\n") {
1514 $smtp_sitewide_pass = trim
($new_pass);
1517 print "Invalid input. You must set username used for SMTP authentication.\n";
1518 print "Click any key to continue\n";
1522 print "Invalid input\n";
1523 print "Click any key to continue\n";
1528 # Sub adds information about SMTP authentication type to menu
1529 sub display_smtp_sitewide_userpass
() {
1531 if ($smtp_auth_mech ne 'none') {
1532 if ($smtp_sitewide_user ne '') {
1533 $ret = ' (with custom username and password)';
1535 $ret = ' (with IMAP username and password)';
1542 # This sub is reused for IMAP and SMTP
1543 # Args: service name, default value
1544 sub command_use_tls
{
1545 my($default_val,$service,$inval);
1548 print "TLS (Transport Layer Security) encrypts the traffic between server and client.\n";
1549 print "STARTTLS extensions allow to start encryption on existing plain text connection.\n";
1550 print "These options add specific PHP and IMAP server configuration requirements.\n";
1551 print "See SquirrelMail documentation about connection security.\n";
1553 print "If your " . $service . " server is localhost, you can safely disable this.\n";
1554 print "If it is remote, you may wish to seriously consider enabling this.\n";
1556 while ($valid_input eq 0) {
1557 print "\nSelect connection security model:\n";
1558 print " 0 - Use plain text connection\n";
1559 print " 1 - Use TLS connection\n";
1560 print " 2 - Use STARTTLS extension\n";
1561 print "Select [$default_val]: ";
1563 $inval=trim
($inval);
1564 if ($inval =~ /^[012]$/ || $inval eq '') {
1568 if ($inval ne '') {$default_val = $inval};
1569 return $default_val;
1572 # This sub is used to display human readable text for
1573 # $use_imap_tls and $use_smtp_tls values in conf.pl menu
1574 sub display_use_tls
($) {
1575 my $val = shift(@_);
1576 my $ret = 'disabled';
1579 } elsif ($val eq '1') {
1585 # $encode_header_key
1587 print "Encryption key allows to hide SquirrelMail Received: headers\n";
1588 print "in outbound messages. Interface uses encryption key to encode\n";
1589 print "username, remote address and proxied address, then stores encoded\n";
1590 print "information in X-Squirrel-* headers.\n";
1592 print "Warning: used encryption function is not bulletproof. When used\n";
1593 print "with static encryption keys, it provides only minimal security\n";
1594 print "measures and information can be decoded quickly.\n";
1596 print "Encoded information can be decoded with decrypt_headers.php script\n";
1597 print "from SquirrelMail contrib/ directory.\n";
1599 print "Enter encryption key: ";
1600 $new_encode_header_key = <STDIN
>;
1601 if ( $new_encode_header_key eq "\n" ) {
1602 $new_encode_header_key = $encode_header_key;
1604 $new_encode_header_key =~ s/[\r\n]//g;
1606 return $new_encode_header_key;
1611 print "\nYou can now create the welcome message that is displayed\n";
1612 print "every time a user logs on. You can use HTML or just plain\n";
1614 "text. If you do not wish to have one, just make it blank.\n\n(Type @ on a blank line to exit)\n";
1620 $line =~ s/[\r\n]//g;
1621 if ( $line ne "@" ) {
1622 $line =~ s/ /\ \ /g;
1623 $line =~ s/\t/\ \ \ \ /g;
1625 $line =~ s/\"/\\\"/g;
1627 $new_motd = $new_motd . $line;
1629 } while ( $line ne "@" );
1633 ################# PLUGINS ###################
1636 $command =~ s/[\s\n\r]*//g;
1637 if ( $command > 0 ) {
1638 $command = $command - 1;
1639 if ( $command <= $#plugins ) {
1642 while ( $ct <= $#plugins ) {
1643 if ( $ct != $command ) {
1644 @newplugins = ( @newplugins, $plugins[$ct] );
1648 @plugins = @newplugins;
1649 } elsif ( $command <= $#plugins + $#unused_plugins + 1 ) {
1650 $num = $command - $#plugins - 1;
1651 @newplugins = @plugins;
1653 while ( $ct <= $#unused_plugins ) {
1654 if ( $ct == $num ) {
1655 @newplugins = ( @newplugins, $unused_plugins[$ct] );
1659 @plugins = @newplugins;
1665 ################# FOLDERS ###################
1667 # default_folder_prefix
1669 print "Some IMAP servers (UW, for example) store mail and folders in\n";
1670 print "your user space in a separate subdirectory. This is where you\n";
1671 print "specify what that directory is.\n";
1673 print "EXAMPLE: mail/";
1675 print "NOTE: If you use Cyrus, or some server that would not use this\n";
1676 print " option, you must set this to 'none'.\n";
1678 print "[$WHT$default_folder_prefix$NRM]: $WHT";
1679 $new_default_folder_prefix = <STDIN
>;
1681 if ( $new_default_folder_prefix eq "\n" ) {
1682 $new_default_folder_prefix = $default_folder_prefix;
1684 $new_default_folder_prefix =~ s/[\r\n]//g;
1686 if ( ( $new_default_folder_prefix =~ /^\s*$/ ) || ( $new_default_folder_prefix =~ m/^none$/i ) ) {
1687 $new_default_folder_prefix = "";
1689 # add the trailing delimiter only if we know what the server is.
1690 if (($imap_server_type eq 'cyrus' and
1691 $optional_delimiter eq 'detect') or
1692 ($imap_server_type eq 'courier' and
1693 $optional_delimiter eq 'detect')) {
1694 $new_default_folder_prefix =~ s/\.*$/\./;
1695 } elsif ($imap_server_type eq 'uw' and
1696 $optional_delimiter eq 'detect') {
1697 $new_default_folder_prefix =~ s/\/*$/\
//;
1700 return $new_default_folder_prefix;
1703 # Show Folder Prefix
1705 print "It is possible to set up the default folder prefix as a user\n";
1706 print "specific option, where each user can specify what their mail\n";
1707 print "folder is. If you set this to false, they will never see the\n";
1708 print "option, but if it is true, this option will appear in the\n";
1709 print "'options' section.\n";
1711 print "NOTE: You set the default folder prefix in option '1' of this\n";
1712 print " section. That will be the default if the user doesn't\n";
1713 print " specify anything different.\n";
1716 if ( lc($show_prefix_option) eq 'true' ) {
1717 $default_value = "y";
1719 $default_value = "n";
1722 print "Show option (y/n) [$WHT$default_value$NRM]: $WHT";
1723 $new_show = <STDIN
>;
1724 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1725 $show_prefix_option = 'true';
1727 $show_prefix_option = 'false';
1729 return $show_prefix_option;
1734 print "You can now specify where the default trash folder is located.\n";
1735 print "On servers where you do not want this, you can set it to anything\n";
1736 print "and set option 6 to false.\n";
1738 print "This is relative to where the rest of your email is kept. You do\n";
1739 print "not need to worry about their mail directory. If this folder\n";
1740 print "would be ~/mail/trash on the filesystem, you only need to specify\n";
1741 print "that this is 'trash', and be sure to put 'mail/' in option 1.\n";
1744 print "[$WHT$trash_folder$NRM]: $WHT";
1745 $new_trash_folder = <STDIN
>;
1746 if ( $new_trash_folder eq "\n" ) {
1747 $new_trash_folder = $trash_folder;
1749 if (check_imap_folder
($new_trash_folder)) {
1750 $new_trash_folder =~ s/[\r\n]//g;
1752 $new_trash_folder = $trash_folder;
1755 return $new_trash_folder;
1760 print "This is where messages that are sent will be stored. SquirrelMail\n";
1761 print "by default puts a copy of all outgoing messages in this folder.\n";
1763 print "This is relative to where the rest of your email is kept. You do\n";
1764 print "not need to worry about their mail directory. If this folder\n";
1765 print "would be ~/mail/sent on the filesystem, you only need to specify\n";
1766 print "that this is 'sent', and be sure to put 'mail/' in option 1.\n";
1769 print "[$WHT$sent_folder$NRM]: $WHT";
1770 $new_sent_folder = <STDIN
>;
1771 if ( $new_sent_folder eq "\n" ) {
1772 $new_sent_folder = $sent_folder;
1774 if (check_imap_folder
($new_sent_folder)) {
1775 $new_sent_folder =~ s/[\r\n]//g;
1777 $new_sent_folder = $sent_folder;
1780 return $new_sent_folder;
1785 print "You can now specify where the default draft folder is located.\n";
1786 print "On servers where you do not want this, you can set it to anything\n";
1787 print "and set option 9 to false.\n";
1789 print "This is relative to where the rest of your email is kept. You do\n";
1790 print "not need to worry about their mail directory. If this folder\n";
1791 print "would be ~/mail/drafts on the filesystem, you only need to specify\n";
1792 print "that this is 'drafts', and be sure to put 'mail/' in option 1.\n";
1795 print "[$WHT$draft_folder$NRM]: $WHT";
1796 $new_draft_folder = <STDIN
>;
1797 if ( $new_draft_folder eq "\n" ) {
1798 $new_draft_folder = $draft_folder;
1800 if (check_imap_folder
($new_draft_folder)) {
1801 $new_draft_folder =~ s/[\r\n]//g;
1803 $new_draft_folder = $draft_folder;
1806 return $new_draft_folder;
1809 # default move to trash
1811 print "By default, should messages get moved to the trash folder? You\n";
1812 print "can specify the default trash folder in option 3. If this is set\n";
1813 print "to false, messages will get deleted immediately without moving\n";
1814 print "to the trash folder.\n";
1816 print "Trash folder is currently: $trash_folder\n";
1819 if ( lc($default_move_to_trash) eq 'true' ) {
1820 $default_value = "y";
1822 $default_value = "n";
1824 print "By default, move to trash (y/n) [$WHT$default_value$NRM]: $WHT";
1825 $new_show = <STDIN
>;
1826 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1827 $default_move_to_trash = 'true';
1829 $default_move_to_trash = 'false';
1831 return $default_move_to_trash;
1834 # default move to sent
1836 print "By default, should messages get moved to the sent folder? You\n";
1837 print "can specify the default sent folder in option 4. If this is set\n";
1838 print "to false, messages will get sent and no copy will be made.\n";
1840 print "Sent folder is currently: $sent_folder\n";
1843 if ( lc($default_move_to_sent) eq 'true' ) {
1844 $default_value = "y";
1846 $default_value = "n";
1848 print "By default, move to sent (y/n) [$WHT$default_value$NRM]: $WHT";
1849 $new_show = <STDIN
>;
1850 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1851 $default_move_to_sent = 'true';
1853 $default_move_to_sent = 'false';
1855 return $default_move_to_sent;
1858 # default save as draft
1860 print "By default, should the save to draft option be shown? You can\n";
1861 print "specify the default drafts folder in option 5. If this is set\n";
1862 print "to false, users will not be shown the save to draft option.\n";
1864 print "Drafts folder is currently: $draft_folder\n";
1867 if ( lc($default_move_to_draft) eq 'true' ) {
1868 $default_value = "y";
1870 $default_value = "n";
1872 print "By default, save as draft (y/n) [$WHT$default_value$NRM]: $WHT";
1873 $new_show = <STDIN
>;
1874 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1875 $default_save_as_draft = 'true';
1877 $default_save_as_draft = 'false';
1879 return $default_save_as_draft;
1882 # List special folders first
1884 print "SquirrelMail has what we call 'special folders' that are not\n";
1885 print "manipulated and viewed like normal folders. Some examples of\n";
1886 print "these folders would be INBOX, Trash, Sent, etc. This option\n";
1887 print "Simply asks if you want these folders listed first in the folder\n";
1891 if ( lc($list_special_folders_first) eq 'true' ) {
1892 $default_value = "y";
1894 $default_value = "n";
1897 print "List first (y/n) [$WHT$default_value$NRM]: $WHT";
1898 $new_show = <STDIN
>;
1899 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1900 $list_special_folders_first = 'true';
1902 $list_special_folders_first = 'false';
1904 return $list_special_folders_first;
1907 # Show special folders color
1909 print "SquirrelMail has what we call 'special folders' that are not\n";
1910 print "manipulated and viewed like normal folders. Some examples of\n";
1911 print "these folders would be INBOX, Trash, Sent, etc. This option\n";
1912 print "wants to know if we should display special folders in a\n";
1913 print "color than the other folders.\n";
1916 if ( lc($use_special_folder_color) eq 'true' ) {
1917 $default_value = "y";
1919 $default_value = "n";
1922 print "Show color (y/n) [$WHT$default_value$NRM]: $WHT";
1923 $new_show = <STDIN
>;
1924 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1925 $use_special_folder_color = 'true';
1927 $use_special_folder_color = 'false';
1929 return $use_special_folder_color;
1934 print "The way that IMAP handles deleting messages is as follows. You\n";
1935 print "mark the message as deleted, and then to 'really' delete it, you\n";
1936 print "expunge it. This option asks if you want to just have messages\n";
1937 print "marked as deleted, or if you want SquirrelMail to expunge the \n";
1938 print "messages too.\n";
1941 if ( lc($auto_expunge) eq 'true' ) {
1942 $default_value = "y";
1944 $default_value = "n";
1946 print "Auto expunge (y/n) [$WHT$default_value$NRM]: $WHT";
1947 $new_show = <STDIN
>;
1948 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1949 $auto_expunge = 'true';
1951 $auto_expunge = 'false';
1953 return $auto_expunge;
1956 # Default sub of inbox
1958 print "Some IMAP servers (Cyrus) have all folders as subfolders of INBOX.\n";
1959 print "This can cause some confusion in folder creation for users when\n";
1960 print "they try to create folders and don't put it as a subfolder of INBOX\n";
1961 print "and get permission errors. This option asks if you want folders\n";
1962 print "to be subfolders of INBOX by default.\n";
1965 if ( lc($default_sub_of_inbox) eq 'true' ) {
1966 $default_value = "y";
1968 $default_value = "n";
1970 print "Default sub of INBOX (y/n) [$WHT$default_value$NRM]: $WHT";
1971 $new_show = <STDIN
>;
1972 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1973 $default_sub_of_inbox = 'true';
1975 $default_sub_of_inbox = 'false';
1977 return $default_sub_of_inbox;
1980 # Show contain subfolder option
1982 print "Some IMAP servers (UW) make it so that there are two types of\n";
1983 print "folders. Those that contain messages, and those that contain\n";
1984 print "subfolders. If this is the case for your server, set this to\n";
1985 print "true, and it will ask the user whether the folder they are\n";
1986 print "creating contains subfolders or messages.\n";
1989 if ( lc($show_contain_subfolders_option) eq 'true' ) {
1990 $default_value = "y";
1992 $default_value = "n";
1994 print "Show option (y/n) [$WHT$default_value$NRM]: $WHT";
1995 $new_show = <STDIN
>;
1996 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1997 $show_contain_subfolders_option = 'true';
1999 $show_contain_subfolders_option = 'false';
2001 return $show_contain_subfolders_option;
2004 # Default Unseen Notify
2006 print "This option specifies where the users will receive notification\n";
2007 print "about unseen messages by default. This is of course an option that\n";
2008 print "can be changed on a user level.\n";
2009 print " 1 = No notification\n";
2010 print " 2 = Only on the INBOX\n";
2011 print " 3 = On all folders\n";
2014 print "Which one should be default (1,2,3)? [$WHT$default_unseen_notify$NRM]: $WHT";
2015 $new_show = <STDIN
>;
2016 if ( $new_show =~ /^[123]\n/i ) {
2017 $default_unseen_notify = $new_show;
2019 $default_unseen_notify =~ s/[\r\n]//g;
2020 return $default_unseen_notify;
2023 # Default Unseen Type
2025 print "Here you can define the default way that unseen messages will be displayed\n";
2026 print "to the user in the folder listing on the left side.\n";
2027 print " 1 = Only unseen messages (4)\n";
2028 print " 2 = Unseen and Total messages (4/27)\n";
2031 print "Which one should be default (1,2)? [$WHT$default_unseen_type$NRM]: $WHT";
2032 $new_show = <STDIN
>;
2033 if ( $new_show =~ /^[12]\n/i ) {
2034 $default_unseen_type = $new_show;
2036 $default_unseen_type =~ s/[\r\n]//g;
2037 return $default_unseen_type;
2040 # Auto create special folders
2042 print "Would you like the Sent, Trash, and Drafts folders to be created\n";
2043 print "automatically print for you when a user logs in? If the user\n";
2044 print "accidentally deletes their special folders, this option will\n";
2045 print "automatically create it again for them.\n";
2048 if ( lc($auto_create_special) eq 'true' ) {
2049 $default_value = "y";
2051 $default_value = "n";
2053 print "Auto create special folders? (y/n) [$WHT$default_value$NRM]: $WHT";
2054 $new_show = <STDIN
>;
2055 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2056 $auto_create_special = 'true';
2058 $auto_create_special = 'false';
2060 return $auto_create_special;
2063 # Automatically delete folders
2065 if ( $imap_server_type eq "uw" ) {
2066 print "UW IMAP servers will not allow folders containing mail to also contain folders.\n";
2067 print "Deleting folders will bypass the trash folder and be immediately deleted\n\n";
2068 print "If this is not the correct value for your server,\n";
2069 print "please use option D on the Main Menu to configure your server correctly.\n\n";
2070 print "Press any key to continue...\n";
2071 $new_delete = <STDIN
>;
2072 $delete_folder = 'true';
2074 if ( $imap_server_type eq "courier" ) {
2075 print "Courier (or Courier-IMAP) IMAP servers may not support ";
2076 print "subfolders of Trash. \n";
2077 print "Specifically, if Courier is set to always move messages to Trash, \n";
2078 print "Trash will be treated by Courier as a special folder that does not \n";
2079 print "allow subfolders. \n\n";
2080 print "Please verify your Courier configuration, and test folder deletion \n";
2081 print "when changing this setting.\n\n";
2084 print "Are subfolders of the Trash supported by your IMAP server?\n";
2085 print "If so, should deleted folders be sent to Trash?\n";
2086 print "If not, say no (deleted folders should not be sent to Trash)\n\n";
2087 # reversal of logic.
2088 # question was: Should folders be automatically deleted instead of sent to trash..
2089 # we've changed the question to make it more clear,
2090 # and are here handling that to avoid changing the answers..
2091 if ( lc($delete_folder) eq 'true' ) {
2092 $default_value = "n";
2094 $default_value = "y";
2096 print "Send deleted folders to Trash? (y/n) [$WHT$default_value$NRM]: $WHT";
2097 $new_delete = <STDIN
>;
2098 if ( ( $new_delete =~ /^y\n/i ) || ( ( $new_delete =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2099 $delete_folder = 'false';
2101 $delete_folder = 'true';
2104 return $delete_folder;
2109 print "Some IMAP server allow subfolders to exist even if the parent\n";
2110 print "folders do not. This fixes some problems with the folder list\n";
2111 print "when this is the case, causing the /NoSelect folders to be displayed\n";
2114 if ( lc($noselect_fix_enable) eq 'true' ) {
2115 $default_value = "y";
2117 $default_value = "n";
2119 print "enable noselect fix? (y/n) [$WHT$noselect_fix_enable$NRM]: $WHT";
2120 $noselect_fix_enable = <STDIN
>;
2121 if ( ( $noselect_fix_enable =~ /^y\n/i ) || ( ( $noselect_fix_enable =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2122 $noselect_fix_enable = 'true';
2124 $noselect_fix_enable = 'false';
2126 return $noselect_fix_enable;
2128 ############# GENERAL OPTIONS #####################
2132 print "Specify the location for your data directory.\n";
2133 print "You need to create this directory yourself.\n";
2134 print "The path name can be absolute or relative (to the config directory).\n";
2135 print "Here are two examples:\n";
2136 print " Absolute: /var/local/squirrelmail/data/\n";
2137 print " Relative: ../data/\n";
2138 print "Relative paths to directories outside of the SquirrelMail distribution\n";
2139 print "will be converted to their absolute path equivalents in config.php.\n\n";
2140 print "Note: There are potential security risks with having a writeable directory\n";
2141 print "under the web server's root directory (ex: /home/httpd/html).\n";
2142 print "For this reason, it is recommended to put the data directory\n";
2143 print "in an alternate location of your choice. \n";
2146 print "[$WHT$data_dir$NRM]: $WHT";
2147 $new_data_dir = <STDIN
>;
2148 if ( $new_data_dir eq "\n" ) {
2149 $new_data_dir = $data_dir;
2151 $new_data_dir =~ s/[\r\n]//g;
2153 if ( $new_data_dir =~ /^\s*$/ ) {
2156 $new_data_dir =~ s/\/*$//g
;
2157 $new_data_dir =~ s/$/\//g
;
2159 return $new_data_dir;
2162 # Attachment directory
2164 print "Path to directory used for storing attachments while a mail is\n";
2165 print "being composed. The path name can be absolute or relative (to the\n";
2166 print "config directory). Here are two examples:\n";
2167 print " Absolute: /var/local/squirrelmail/attach/\n";
2168 print " Relative: ../attach/\n";
2169 print "Relative paths to directories outside of the SquirrelMail distribution\n";
2170 print "will be converted to their absolute path equivalents in config.php.\n\n";
2171 print "Note: There are a few security considerations regarding this\n";
2172 print "directory:\n";
2173 print " 1. It should have the permission 733 (rwx-wx-wx) to make it\n";
2174 print " impossible for a random person with access to the webserver\n";
2175 print " to list files in this directory. Confidential data might\n";
2176 print " be laying around in there.\n";
2177 print " Depending on your user:group assignments, 730 (rwx-wx---)\n";
2178 print " may be possible, and more secure (e.g. root:apache)\n";
2179 print " 2. Since the webserver is not able to list the files in the\n";
2180 print " content is also impossible for the webserver to delete files\n";
2181 print " lying around there for too long.\n";
2182 print " 3. It should probably be another directory than the data\n";
2183 print " directory specified in option 3.\n";
2186 print "[$WHT$attachment_dir$NRM]: $WHT";
2187 $new_attachment_dir = <STDIN
>;
2188 if ( $new_attachment_dir eq "\n" ) {
2189 $new_attachment_dir = $attachment_dir;
2191 $new_attachment_dir =~ s/[\r\n]//g;
2193 if ( $new_attachment_dir =~ /^\s*$/ ) {
2194 $new_attachment_dir = "";
2196 $new_attachment_dir =~ s/\/*$//g
;
2197 $new_attachment_dir =~ s/$/\//g
;
2199 return $new_attachment_dir;
2203 print "The directory hash level setting allows you to configure the level\n";
2204 print "of hashing that SquirrelMail employs in your data and attachment\n";
2205 print "directories. This value must be an integer ranging from 0 to 4.\n";
2206 print "When this value is set to 0, SquirrelMail will simply store all\n";
2207 print "files as normal in the data and attachment directories. However,\n";
2208 print "when set to a value from 1 to 4, a simple hashing scheme will be\n";
2209 print "used to organize the files in this directory. In short, the crc32\n";
2210 print "value for a username will be computed. Then, up to the first 4\n";
2211 print "digits of the hash, as set by this configuration value, will be\n";
2212 print "used to directory hash the files for that user in the data and\n";
2213 print "attachment directory. This allows for better performance on\n";
2214 print "servers with larger numbers of users.\n";
2217 print "[$WHT$dir_hash_level$NRM]: $WHT";
2218 $new_dir_hash_level = <STDIN
>;
2219 if ( $new_dir_hash_level eq "\n" ) {
2220 $new_dir_hash_level = $dir_hash_level;
2222 $new_dir_hash_level =~ s/[\r\n]//g;
2224 if ( ( int($new_dir_hash_level) < 0 )
2225 || ( int($new_dir_hash_level) > 4 )
2226 || !( int($new_dir_hash_level) eq $new_dir_hash_level ) ) {
2227 print "Invalid Directory Hash Level.\n";
2228 print "Value must be an integer ranging from 0 to 4\n";
2229 print "Hit enter to continue.\n";
2230 $enter_key = <STDIN
>;
2232 $new_dir_hash_level = $dir_hash_level;
2235 return $new_dir_hash_level;
2239 print "This is the default size (in pixels) of the left folder list.\n";
2240 print "Default is 200, but you can set it to whatever you wish. This\n";
2241 print "is a user preference, so this will only show up as their default.\n";
2243 print "[$WHT$default_left_size$NRM]: $WHT";
2244 $new_default_left_size = <STDIN
>;
2245 if ( $new_default_left_size eq "\n" ) {
2246 $new_default_left_size = $default_left_size;
2248 $new_default_left_size =~ s/[\r\n]//g;
2250 return $new_default_left_size;
2254 print "Some IMAP servers only have lowercase letters in the usernames\n";
2255 print "but they still allow people with uppercase to log in. This\n";
2256 print "causes a problem with the user's preference files. This option\n";
2257 print "transparently changes all usernames to lowercase.";
2260 if ( lc($force_username_lowercase) eq 'true' ) {
2261 $default_value = "y";
2263 $default_value = "n";
2265 print "Convert usernames to lowercase (y/n) [$WHT$default_value$NRM]: $WHT";
2266 $new_show = <STDIN
>;
2267 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2277 if ( lc($default_use_priority) eq 'true' ) {
2278 $default_value = "y";
2280 $default_value = "n";
2283 print "Allow users to specify priority of outgoing mail (y/n) [$WHT$default_value$NRM]: $WHT";
2284 $new_show = <STDIN
>;
2285 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2295 if ( lc($default_hide_attribution) eq 'true' ) {
2296 $default_value = "y";
2298 $default_value = "n";
2301 print "Hide SM attributions (y/n) [$WHT$default_value$NRM]: $WHT";
2302 $new_show = <STDIN
>;
2303 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2313 if ( lc($default_use_mdn) eq 'true' ) {
2314 $default_value = "y";
2316 $default_value = "n";
2319 print "Enable support for read/delivery receipt support (y/n) [$WHT$default_value$NRM]: $WHT";
2320 $new_show = <STDIN
>;
2321 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2329 print " In loosely managed environments, you may want to allow users
2330 to edit their full name and email address. In strictly managed
2331 environments, you may want to force users to use the name
2332 and email address assigned to them.
2334 'y' - allow a user to edit their full name and email address,
2335 'n' - users must use the assigned values.
2339 if ( lc($edit_identity) eq 'true' ) {
2340 $default_value = "y";
2342 $default_value = "n";
2344 print "Allow editing of user's identity? (y/n) [$WHT$default_value$NRM]: $WHT";
2345 $new_edit = <STDIN
>;
2346 if ( ( $new_edit =~ /^y\n/i ) || ( ( $new_edit =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2347 $edit_identity = 'true';
2348 $edit_name = 'true';
2349 $hide_auth_header = command311b
();
2351 $edit_identity = 'false';
2352 $edit_name = command311
();
2353 $hide_auth_header = command311b
();
2355 return $edit_identity;
2359 print " Given that users are not allowed to modify their
2360 email address, can they edit their full name?
2364 if ( lc($edit_name) eq 'true' ) {
2365 $default_value = "y";
2367 $default_value = "n";
2369 print "Allow the user to edit their full name? (y/n) [$WHT$default_value$NRM]: $WHT";
2370 $new_edit = <STDIN
>;
2371 if ( ( $new_edit =~ /^y\n/i ) || ( ( $new_edit =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2372 $edit_name = 'true';
2374 $edit_name = 'false';
2380 print " SquirrelMail adds username information to every sent email
2381 in order to prevent possible sender forging when users are allowed
2382 to change their email and/or full name.
2384 You can remove user information from this header (y), if you think that
2385 it violates privacy or security.
2387 Note: If users are allowed to change their email addresses,
2388 this setting will make it difficult to determine who sent what where.
2389 Use at your own risk.
2393 if ( lc($hide_auth_header) eq "true" ) {
2394 $default_value = "y";
2396 $default_value = "n";
2398 print "Remove username from email headers? (y/n) [$WHT$default_value$NRM]: $WHT";
2399 $new_header = <STDIN
>;
2400 if ( ( $new_header =~ /^y\n/i ) || ( ( $new_header =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2401 $hide_auth_header = "true";
2403 $hide_auth_header = "false";
2405 return $hide_auth_header;
2409 print "This option allows you to disable server side thread sorting if your server \n";
2410 print "declares THREAD support, but you don't want to provide threading options \n";
2411 print "to end users or THREAD extension is broken or extension does not work with \n";
2412 print "options used by SquirrelMail. Option is not used, if THREAD extension is \n";
2413 print "not declared in IMAP CAPABILITY.\n";
2416 if ( lc($disable_thread_sort) eq 'true' ) {
2417 $default_value = "y";
2419 $default_value = "n";
2421 print "Disable server side thread sorting? (y/n) [$WHT$default_value$NRM]: $WHT";
2422 $disable_thread_sort = <STDIN
>;
2423 if ( ( $disable_thread_sort =~ /^y\n/i ) || ( ( $disable_thread_sort =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2424 $disable_thread_sort = 'true';
2426 $disable_thread_sort = 'false';
2428 return $disable_thread_sort;
2432 print "This option allows you to disable server side sorting if your server declares \n";
2433 print "SORT support, but SORT extension is broken or does not work with options \n";
2434 print "used by SquirrelMail. Option is not used, if SORT extension is not declared \n";
2435 print "in IMAP CAPABILITY.\n";
2437 print "It is strongly recommended to keep server side sorting enabled, if your ";
2438 print "IMAP server supports it.";
2441 if ( lc($disable_server_sort) eq 'true' ) {
2442 $default_value = "y";
2444 $default_value = "n";
2446 print "Disable server-side sorting? (y/n) [$WHT$default_value$NRM]: $WHT";
2447 $disable_server_sort = <STDIN
>;
2448 if ( ( $disable_server_sort =~ /^y\n/i ) || ( ( $disable_server_sort =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2449 $disable_server_sort = 'true';
2451 $disable_server_sort = 'false';
2453 return $disable_server_sort;
2457 print "This option allows you to choose if SM uses charset search\n";
2458 print "Your IMAP server must support the SEARCH CHARSET command for this to work\n";
2461 if ( lc($allow_charset_search) eq 'true' ) {
2462 $default_value = "y";
2464 $default_value = "n";
2466 print "Allow charset searching? (y/n) [$WHT$default_value$NRM]: $WHT";
2467 $allow_charset_search = <STDIN
>;
2468 if ( ( $allow_charset_search =~ /^y\n/i ) || ( ( $allow_charset_search =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2469 $allow_charset_search = 'true';
2471 $allow_charset_search = 'false';
2473 return $allow_charset_search;
2476 # command315 (UID support) obsoleted.
2478 # advanced search option
2480 print "This option allows you to control the use of advanced search form.\n";
2481 print " 0 = enable basic search only\n";
2482 print " 1 = enable advanced search only\n";
2483 print " 2 = enable both\n";
2486 print "Allowed search (0,1,2)? [$WHT$allow_advanced_search$NRM]: $WHT";
2487 $new_allow_advanced_search = <STDIN
>;
2488 if ( $new_allow_advanced_search =~ /^[012]\n/i ) {
2489 $allow_advanced_search = $new_allow_advanced_search;
2491 $allow_advanced_search =~ s/[\r\n]//g;
2492 return $allow_advanced_search;
2497 print "This option allows you to change the name of the PHP session used\n";
2498 print "by SquirrelMail. Unless you know what you are doing, you probably\n";
2499 print "don't need or want to change this from the default of SQMSESSID.\n";
2500 print "[$WHT$session_name$NRM]: $WHT";
2501 $new_session_name = <STDIN
>;
2502 chomp($new_session_name);
2503 if ( $new_session_name eq "" ) {
2504 $new_session_name = $session_name;
2506 return $new_session_name;
2509 # time zone config (since 1.5.1)
2511 print "This option allows you to control the use of time zones.\n";
2512 print " 0 = (default) standard, GNU C time zone names\n";
2513 print " 1 = strict, generic time zone codes with offsets\n";
2514 print " 2 = custom, GNU C time zones loaded from config/timezones.php\n";
2515 print " 3 = custom strict, generic time zone codes with offsets loaded \n";
2516 print " from config/timezones.php\n";
2517 print "See SquirrelMail documentation about format of config/timezones.php file.\n";
2520 print "Used time zone configuration (0,1,2,3)? [$WHT$time_zone_type$NRM]: $WHT";
2521 $new_time_zone_type = <STDIN
>;
2522 if ( $new_time_zone_type =~ /^[0123]\n/i ) {
2523 $time_zone_type = $new_time_zone_type;
2525 print "\nInvalid configuration value.\n";
2526 print "\nPress enter to continue...";
2529 $time_zone_type =~ s/[\r\n]//g;
2530 return $time_zone_type;
2533 # set the location base for redirects (since 1.5.2)
2534 sub command_config_location_base
{
2535 print "Here you can set the base part of the SquirrelMail URL.\n";
2536 print "It is normally autodetected but if that fails, use this\n";
2537 print "option to override.\n";
2538 print "It should contain only the protocol and hostname/port parts\n";
2539 print "of the URL; the full path will be appended automatically.\n\n";
2540 print "Examples:\nhttp://webmail.example.org\nhttp://webmail.example.com:8080\nhttps://webmail.example.com:6691\n\n";
2541 print "Do not add any path elements.\n";
2543 print "URL base? [" .$WHT."autodetect$NRM]: $WHT";
2544 $new_config_location_base = <STDIN
>;
2545 chomp($new_config_location_base);
2546 $config_location_base = $new_config_location_base;
2548 return $config_location_base;
2553 sub command_userThemes
{
2554 print "\nDefine the user themes that you wish to use. If you have added\n";
2555 print "a theme of your own, just follow the instructions (?) about\n";
2556 print "how to add them. You can also change the default theme.\n\n";
2557 print "[user_themes] command (?=help) > ";
2559 $input =~ s/[\r\n]//g;
2560 while ( $input ne "d" ) {
2561 if ( $input =~ /^\s*l\s*/i ) {
2563 while ( $count <= $#user_theme_name ) {
2564 if ( $count == $user_theme_default ) {
2569 if ( $count < 10 ) {
2572 $name = $user_theme_name[$count];
2573 $num_spaces = 35 - length($name);
2574 for ( $i = 0 ; $i < $num_spaces ; $i++ ) {
2575 $name = $name . " ";
2578 print " $count. $name";
2579 print "($user_theme_path[$count])\n";
2583 } elsif ( $input =~ /^\s*m\s*[0-9]+/i ) {
2584 $old_def = $user_theme_default;
2585 $user_theme_default = $input;
2586 $user_theme_default =~ s/^\s*m\s*//;
2587 if ( ( $user_theme_default > $#user_theme_name ) || ( $user_theme_default < 0 ) ) {
2588 print "Cannot set default theme to $user_theme_default. That theme does not exist.\n";
2589 $user_theme_default = $old_def;
2591 } elsif ( $input =~ /^\s*\+/ ) {
2592 print "What is the name of this theme? ";
2594 $name =~ s/[\r\n]//g;
2595 $user_theme_name[ $#user_theme_name + 1 ] = $name;
2596 print "Be sure to put ../css/ before the filename.\n";
2597 print "What file is this stored in (ex: ../css/my_theme/): ";
2599 $name =~ s/[\r\n]//g;
2600 $user_theme_path[ $#user_theme_path + 1 ] = $name;
2601 } elsif ( $input =~ /^\s*-\s*[0-9]?/ ) {
2602 if ( $input =~ /[0-9]+\s*$/ ) {
2604 $rem_num =~ s/^\s*-\s*//g;
2605 $rem_num =~ s/\s*$//;
2607 $rem_num = $#user_theme_name;
2609 if ( $rem_num == $user_theme_default ) {
2610 print "You cannot remove the default theme!\n";
2613 @new_theme_name = ();
2614 @new_theme_path = ();
2615 while ( $count <= $#user_theme_name ) {
2616 if ( $count != $rem_num ) {
2617 @new_theme_name = ( @new_theme_name, $user_theme_name[$count] );
2618 @new_theme_path = ( @new_theme_path, $user_theme_path[$count] );
2622 @user_theme_name = @new_theme_name;
2623 @user_theme_path = @new_theme_path;
2624 if ( $user_theme_default > $rem_num ) {
2625 $user_theme_default--;
2628 } elsif ( $input =~ /^\s*t\s*/i ) {
2629 print "\nStarting detection...\n\n";
2631 opendir( DIR
, "../css" );
2632 @files = readdir(DIR
);
2634 while ( $cnt <= $#files ) {
2635 $filename = "../css/" . $files[$cnt] .'/';
2636 if ( $filename ne "../css/rtl.css" && -e
$filename . "default.css" ) {
2638 for ( $x = 0 ; $x <= $#user_theme_path ; $x++ ) {
2639 if ( $user_theme_path[$x] eq $filename ) {
2643 if ( $found != 1 ) {
2644 print "** Found user theme: $filename\n";
2645 print " What is its name? ";
2648 $user_theme_name[ $#user_theme_name + 1 ] = $nm;
2649 $user_theme_path[ $#user_theme_path + 1 ] = $filename;
2655 for ( $cnt = 0 ; $cnt <= $#user_theme_path ; $cnt++ ) {
2656 $filename = $user_theme_path[$cnt];
2657 if ( $filename != 'none' && !( -e
$filename ."/default.css" ) ) {
2658 print " Removing $filename (file not found)\n";
2660 @new_user_theme_name = ();
2661 @new_user_theme_path = ();
2662 for ( $x = 0 ; $x < $#user_theme_path ; $x++ ) {
2663 if ( $user_theme_path[$x] eq $filename ) {
2666 if ( $offset == 1 ) {
2667 $new_user_theme_name[$x] = $user_theme_name[ $x + 1 ];
2668 $new_user_theme_path[$x] = $user_theme_path[ $x + 1 ];
2670 $new_user_theme_name[$x] = $user_theme_name[$x];
2671 $new_user_theme_path[$x] = $user_theme_path[$x];
2674 @user_theme_name = @new_user_theme_name;
2675 @user_theme_path = @new_user_theme_path;
2678 print "\nDetection complete!\n\n";
2681 } elsif ( $input =~ /^\s*\?\s*/ ) {
2682 print ".------------------------------------.\n";
2683 print "| t (detect user themes) |\n";
2684 print "| + (add user theme) |\n";
2685 print "| - N (remove user theme) |\n";
2686 print "| m N (mark default user theme) |\n";
2687 print "| l (list user themes) |\n";
2688 print "| d (done) |\n";
2689 print "`------------------------------------'\n";
2691 print "[user_themes] command (?=help) > ";
2693 $input =~ s/[\r\n]//g;
2697 sub command_iconSets
{
2698 print "\nDefine the icon themes that you wish to use. If you have added\n";
2699 print "a theme of your own, just follow the instructions (?) about\n";
2700 print "how to add them. You can also change the default theme.\n\n";
2701 print "[icon_themes] command (?=help) > ";
2703 $input =~ s/[\r\n]//g;
2704 while ( $input ne "d" ) {
2705 if ( $input =~ /^\s*l\s*/i ) {
2707 while ( $count <= $#icon_theme_name ) {
2708 if ( $count == $icon_theme_def ) {
2713 if ( $count < 10 ) {
2716 $name = $icon_theme_name[$count];
2717 $num_spaces = 35 - length($name);
2718 for ( $i = 0 ; $i < $num_spaces ; $i++ ) {
2719 $name = $name . " ";
2722 print " $count. $name";
2723 print "($icon_theme_path[$count])\n";
2727 } elsif ( $input =~ /^\s*m\s*[0-9]+/i ) {
2728 $old_def = $icon_theme_def;
2729 $icon_theme_def = $input;
2730 $icon_theme_def =~ s/^\s*m\s*//;
2731 if ( ( $icon_theme_default > $#icon_theme_name ) || ( $icon_theme_default < 0 ) ) {
2732 print "Cannot set default icon theme to $icon_theme_default. That theme does not exist.\n";
2733 $icon_theme_def = $old_def;
2735 } elsif ( $input =~ /^\s*\+/ ) {
2736 print "What is the name of this icon theme? ";
2738 $name =~ s/[\r\n]//g;
2739 $icon_theme_name[ $#icon_theme_name + 1 ] = $name;
2740 print "Be sure to put ../images/themes/ before the filename.\n";
2741 print "What directory is this icon theme stored in (ex: ../images/themes/my_theme/)? ";
2743 $name =~ s/[\r\n]//g;
2744 $icon_theme_path[ $#icon_theme_path + 1 ] = $name;
2745 } elsif ( $input =~ /^\s*-\s*[0-9]?/ ) {
2746 if ( $input =~ /[0-9]+\s*$/ ) {
2748 $rem_num =~ s/^\s*-\s*//g;
2749 $rem_num =~ s/\s*$//;
2751 $rem_num = $#icon_theme_name;
2753 if ( $rem_num == $icon_theme_def ) {
2754 print "You cannot remove the default icon theme!\n";
2757 @new_theme_name = ();
2758 @new_theme_path = ();
2759 while ( $count <= $#icon_theme_name ) {
2760 if ( $count != $rem_num ) {
2761 @new_theme_name = ( @new_theme_name, $icon_theme_name[$count] );
2762 @new_theme_path = ( @new_theme_path, $icon_theme_path[$count] );
2766 @icon_theme_name = @new_theme_name;
2767 @icon_theme_path = @new_theme_path;
2768 if ( $icon_theme_def > $rem_num ) {
2772 } elsif ( $input =~ /^\s*t\s*/i ) {
2773 print "\nStarting detection...\n\n";
2775 opendir( DIR
, "../images/themes/" );
2776 @files = readdir(DIR
);
2778 while ( $cnt <= $#files ) {
2779 $filename = "../images/themes/" . $files[$cnt] .'/';
2780 if ( -d
"../images/themes/" . $files[$cnt] && $files[$cnt] !~ /^\
./ && $files[$cnt] ne "CVS" ) {
2782 for ( $x = 0 ; $x <= $#icon_theme_path ; $x++ ) {
2783 if ( $icon_theme_path[$x] eq $filename ) {
2787 if ( $found != 1 ) {
2788 print "** Found icon theme: $filename\n";
2789 print " What is its name? ";
2792 $icon_theme_name[ $#icon_theme_name + 1 ] = $nm;
2793 $icon_theme_path[ $#icon_theme_path + 1 ] = $filename;
2799 for ( $cnt = 0 ; $cnt <= $#icon_theme_path ; $cnt++ ) {
2800 $filename = $icon_theme_path[$cnt];
2801 if ( $filename ne "none" && $filename ne "template" && ! -d
$filename ) {
2802 print " Removing $filename (file not found)\n";
2804 @new_icon_theme_name = ();
2805 @new_icon_theme_path = ();
2806 for ( $x = 0 ; $x < $#icon_theme_path ; $x++ ) {
2807 if ( $icon_theme_path[$x] eq $filename ) {
2810 if ( $offset == 1 ) {
2811 $new_icon_theme_name[$x] = $icon_theme_name[ $x + 1 ];
2812 $new_icon_theme_path[$x] = $icon_theme_path[ $x + 1 ];
2814 $new_icon_theme_name[$x] = $icon_theme_name[$x];
2815 $new_icon_theme_path[$x] = $icon_theme_path[$x];
2818 @icon_theme_name = @new_icon_theme_name;
2819 @icon_theme_path = @new_icon_theme_path;
2822 print "\nDetection complete!\n\n";
2825 } elsif ( $input =~ /^\s*\?\s*/ ) {
2826 print ".------------------------------------.\n";
2827 print "| t (detect icon themes) |\n";
2828 print "| + (add icon theme) |\n";
2829 print "| - N (remove icon theme) |\n";
2830 print "| m N (mark default icon theme) |\n";
2831 print "| l (list icon themes) |\n";
2832 print "| d (done) |\n";
2833 print "`------------------------------------'\n";
2835 print "[icon_themes] command (?=help) > ";
2837 $input =~ s/[\r\n]//g;
2841 sub command_templates
{
2842 print "\nDefine the template sets that you wish to use. If you have added ";
2843 print "a template set of your own, just follow the instructions (?) about how to add ";
2844 print "them. You can also change the default template.\n";
2846 print "\n Available Templates:\n";
2849 while ( $count <= $#templateset_name ) {
2850 if ( $count == $templateset_default ) {
2855 if ( $count < 10 ) {
2858 $name = $templateset_name[$count];
2859 $num_spaces = 35 - length($name);
2860 for ( $i = 0 ; $i < $num_spaces ; $i++ ) {
2861 $name = $name . " ";
2864 print " $count. $name";
2865 print "($templateset_id[$count])\n";
2870 # FIXME: what is this stuff? it is commented out, can we just blast it?
2871 # opendir( DIR, "../templates" );
2872 # @files = readdir(DIR);
2875 # while ( $cnt <= $#files ) {
2876 # if ( -d "../templates/" . $files[$i] && $files[$i] !~ /^\./ && $files[$i] ne "CVS" ) {
2877 # $filename = "../templates/" . $files[$cnt];
2879 # for ( $x = 0 ; $x <= $#templateset_id ; $x++ ) {
2880 # if ( $theme_path[$x] eq $filename ) {
2887 # for ( $i = 0 ; $i <= $#files ; $i++ ) {
2888 # if ( -d "../templates/" . $files[$i] && $files[$i] !~ /^\./ && $files[$i] ne "CVS" ) {
2890 # for ( $k = 0 ; $k <= $#aTemplateSets ; $k++ ) {
2891 # if ( $aTemplateSets[$chosen] eq $files[$i] ) {
2895 # if ( $match == 0 ) {
2896 # $unused_plugins[$pos] = $files[$i];
2902 # for ( $i = 0 ; $i <= $#unused_plugins ; $i++ ) {
2904 # print " $num. $unused_plugins[$i]\n";
2908 $menu_text = ".-------------------------------------.\n"
2909 . "| t (detect template set) |\n"
2910 . "| + (add template set) |\n"
2911 . "| - N (remove template set) |\n"
2912 . "| m N (mark default template set) |\n"
2913 . "| l (list template sets) |\n"
2915 . "|-------------------------------------|\n"
2916 . "| where N is a template set number |\n"
2917 . "`-------------------------------------'\n";
2920 print "\n[template set] command (?=help) > ";
2923 $input =~ s/[\r\n]//g;
2924 while ( $input ne "d" ) {
2926 # list template sets
2928 if ( $input =~ /^\s*l\s*/i ) {
2930 while ( $count <= $#templateset_name ) {
2931 if ( $count == $templateset_default ) {
2936 if ( $count < 10 ) {
2939 $name = $templateset_name[$count];
2940 $num_spaces = 35 - length($name);
2941 for ( $i = 0 ; $i < $num_spaces ; $i++ ) {
2942 $name = $name . " ";
2945 print " $count. $name";
2946 print "($templateset_id[$count])\n";
2951 # mark default template set
2953 } elsif ( $input =~ /^\s*m\s*[0-9]+/i ) {
2954 $old_def = $templateset_default;
2955 $templateset_default = $input;
2956 $templateset_default =~ s/^\s*m\s*//;
2957 if ( ( $templateset_default > $#templateset_name ) || ( $templateset_default < 0 ) ) {
2958 print "Cannot set default template set to $templateset_default. That template set does not exist.\n";
2959 $templateset_default = $old_def;
2964 } elsif ( $input =~ /^\s*\+/ ) {
2965 print "\nWhat is the name of this template (as shown to your users): ";
2967 $name =~ s/[\r\n]//g;
2968 $templateset_name[ $#templateset_name + 1 ] = $name;
2969 print "\n\nThe directory name should not contain any path information\n"
2970 . "or slashes, and should be the name of the directory that the\n"
2971 . "template set is found in within the SquirrelMail templates\n"
2973 print "What directory is this stored in (ex: default_advanced): ";
2975 $name =~ s/[\r\n]//g;
2976 $templateset_id[ $#templateset_id + 1 ] = $name;
2978 # detect template sets
2980 } elsif ( $input =~ /^\s*t\s*/i ) {
2981 print "\nStarting detection...\n\n";
2982 opendir( DIR
, "../templates" );
2983 @files = readdir(DIR
);
2985 while ( $cnt <= $#files ) {
2986 if ( -d
"../templates/" . $files[$cnt] && $files[$cnt] !~ /^\./ && $files[$cnt] ne "CVS" ) {
2987 $filename = $files[$cnt];
2989 for ( $x = 0 ; $x <= $#templateset_id ; $x++ ) {
2990 if ( $templateset_id[$x] eq $filename ) {
2996 print "** Found template set: $filename\n";
2997 print " What is it's name (as shown to your users)? ";
3000 $templateset_id[ $#templateset_id + 1 ] = $filename;
3001 $templateset_name[ $#templateset_name + 1 ] = $nm;
3002 # FIXME: why are these two lines here?
3003 # $aTemplateSet[ $#templateset_name + 1 ] = $nm;
3004 # $aTemplateSet[ $#templateset_id + 1 ] = $filename;
3010 for ( $cnt= 0 ; $cnt <= $#templateset_id ; ) {
3011 $filename = $templateset_id[$cnt];
3012 if ( !(-d change_to_rel_path
('SM_PATH . \'templates/' . $filename)) ) {
3013 print " Removing \"$filename\" (template set directory not found)\n";
3014 if ( $templateset_default gt $cnt ) { $templateset_default--; }
3015 elsif ( $templateset_default eq $cnt ) { $templateset_default = 0; }
3017 @new_templateset_name = ();
3018 @new_templateset_id = ();
3019 for ( $x = 0 ; $x < $#templateset_id ; $x++ ) {
3020 if ( $templateset_id[$x] eq $filename ) {
3023 if ( $offset == 1 ) {
3024 $new_templateset_name[$x] = $templateset_name[ $x + 1 ];
3025 $new_templateset_id[$x] = $templateset_id[ $x + 1 ];
3027 $new_templateset_name[$x] = $templateset_name[$x];
3028 $new_templateset_id[$x] = $templateset_id[$x];
3031 @templateset_name = @new_templateset_name;
3032 @templateset_id = @new_templateset_id;
3035 print "\nDetection complete!\n\n";
3039 # remove template set
3041 # undocumented functionality of removing last template set isn't that great
3042 #} elsif ( $input =~ /^\s*-\s*[0-9]?/ ) {
3043 } elsif ( $input =~ /^\s*-\s*[0-9]+/ ) {
3044 if ( $input =~ /[0-9]+\s*$/ ) {
3046 $rem_num =~ s/^\s*-\s*//g;
3047 $rem_num =~ s/\s*$//;
3049 $rem_num = $#templateset_name;
3051 if ( $rem_num == $templateset_default ) {
3052 print "You cannot remove the default template set!\n";
3055 @new_templateset_name = ();
3056 @new_templateset_id = ();
3057 while ( $count <= $#templateset_name ) {
3058 if ( $count != $rem_num ) {
3059 @new_templateset_name = ( @new_templateset_name, $templateset_name[$count] );
3060 @new_templateset_id = ( @new_templateset_id, $templateset_id[$count] );
3064 @templateset_name = @new_templateset_name;
3065 @templateset_id = @new_templateset_id;
3066 if ( $templateset_default > $rem_num ) {
3067 $templateset_default--;
3073 } elsif ( $input =~ /^\s*\?\s*/ ) {
3076 print "[template set] command (?=help) > ";
3078 $input =~ s/[\r\n]//g;
3080 return $templateset_default;
3084 # sets default font size option
3085 sub command_default_fontsize
{
3086 print "Enter default font size [$WHT$$default_fontsize$NRM]: $WHT";
3087 $new_size = <STDIN
>;
3088 if ( $new_size eq "\n" ) {
3091 $new_size =~ s/[\r\n]//g;
3096 # controls available fontsets
3097 sub command_fontsets
{
3099 print "You can control fontsets available to end users here.\n";
3100 # set initial $input value
3102 while ( $input ne "x" ) {
3103 if ( $input =~ /^\s*a\s*/i ) {
3105 print "\nFontset name: ";
3107 if (! $fontsets{trim
($name)}) {
3108 print "Fontset string: ";
3110 $fontsets{trim
($name)} = trim
($value);
3112 print "\nERROR: Such fontset already exists.\n";