By request, SASL PLAIN for IMAP and SMTP.
[squirrelmail.git] / config / conf.pl
CommitLineData
23afd0bd 1#!/usr/bin/env perl
bbd30ac8 2# conf.pl
bbd30ac8 3#
6614128e 4# Copyright (c) 1999-2003 The SquirrelMail Project Team
5# Licensed under the GNU GPL. For full terms see COPYING.
6#
7# A simple configure script to configure SquirrelMail
245a6892 8#
9# $Id$
ccfb2029 10############################################################
6614128e 11$conf_pl_version = "1.4.0";
bbd30ac8 12
38b69acb 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############################################################
8bd9e0dd 19my $dir;
eaace00e 20if ( eval q{require "File/Basename.pm"} ) {
8bd9e0dd 21 $dir = File::Basename::dirname($0);
38b69acb 22 chdir($dir);
23}
24
d595e32e 25############################################################
26# Some people try to run this as a CGI. That's wrong!
27############################################################
eaace00e 28if ( defined( $ENV{'PATH_INFO'} )
29 || defined( $ENV{'QUERY_STRING'} )
30 || defined( $ENV{'REQUEST_METHOD'} ) ) {
31 print "Content-Type: text/html\n\n";
32 print "You must run this script from the command line.";
33 exit;
34 }
d595e32e 35
8bd9e0dd 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############################################################
41use Cwd;
42$dir = cwd();
25be56ab 43
8bd9e0dd 44
ccfb2029 45############################################################
bbd30ac8 46# First, lets read in the data already in there...
ccfb2029 47############################################################
eaace00e 48if ( -e "config.php" ) {
49 open( FILE, "config.php" );
50 while ( $line = <FILE> ) {
51 $line =~ s/^\s+//;
52 $line =~ s/^\$//;
53 $var = $line;
54
55 $var =~ s/=/EQUALS/;
56 if ( $var =~ /^([a-z]|[A-Z])/ ) {
57 @o = split ( /\s*EQUALS\s*/, $var );
58 if ( $o[0] eq "config_version" ) {
59 $o[1] =~ s/[\n|\r]//g;
60 $o[1] =~ s/[\'|\"];\s*$//;
61 $o[1] =~ s/;$//;
62 $o[1] =~ s/^[\'|\"]//;
63
64 $config_version = $o[1];
65 close(FILE);
66 }
67 }
68 }
69 close(FILE);
70
71 if ( $config_version ne $conf_pl_version ) {
f8c17cdd 72 clear_screen();
eaace00e 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";
80 print "\n";
81 print "Continue loading with the old config.php [y/N]? ";
82 $ctu = <STDIN>;
83
84 if ( ( $ctu !~ /^y\n/i ) || ( $ctu =~ /^\n/ ) ) {
85 exit;
86 }
87
88 print "\nDo you want me to stop warning you [y/N]? ";
89 $ctu = <STDIN>;
90 if ( $ctu =~ /^y\n/i ) {
91 $print_config_version = $conf_pl_version;
92 } else {
93 $print_config_version = $config_version;
94 }
95 } else {
96 $print_config_version = $config_version;
97 }
98
99 $config = 1;
100 open( FILE, "config.php" );
101} elsif ( -e "config_default.php" ) {
102 open( FILE, "config_default.php" );
103 while ( $line = <FILE> ) {
104 $line =~ s/^\s+//;
105 $line =~ s/^\$//;
106 $var = $line;
107
108 $var =~ s/=/EQUALS/;
109 if ( $var =~ /^([a-z]|[A-Z])/ ) {
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*$//;
114 $o[1] =~ s/;$//;
115 $o[1] =~ s/^[\'|\"]//;
116
117 $config_version = $o[1];
118 close(FILE);
119 }
120 }
121 }
122 close(FILE);
123
124 if ( $config_version ne $conf_pl_version ) {
f8c17cdd 125 clear_screen();
eaace00e 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";
133 print "\n";
134 print "Continue loading with old config_default.php (a bad idea) [y/N]? ";
135 $ctu = <STDIN>;
136
137 if ( ( $ctu !~ /^y\n/i ) || ( $ctu =~ /^\n/ ) ) {
138 exit;
139 }
140
141 print "\nDo you want me to stop warning you [y/N]? ";
142 $ctu = <STDIN>;
143 if ( $ctu =~ /^y\n/i ) {
144 $print_config_version = $conf_pl_version;
145 } else {
146 $print_config_version = $config_version;
147 }
148 } else {
149 $print_config_version = $config_version;
150 }
151 $config = 2;
152 open( FILE, "config_default.php" );
1e0628fb 153} else {
eaace00e 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";
157 exit;
bbd30ac8 158}
159
a3439b27 160# Read and parse the current configuration file
161# (either config.php or config_default.php).
eaace00e 162while ( $line = <FILE> ) {
8bd9e0dd 163 $line =~ s/^\s+//;
eaace00e 164 $line =~ s/^\$//;
165 $var = $line;
166
167 $var =~ s/=/EQUALS/;
168 if ( $var =~ /^([a-z]|[A-Z])/ ) {
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
175 if ( $options[0] =~ /^theme\[[0-9]+\]\[['|"]PATH['|"]\]/ ) {
176 $sub = $options[0];
177 $sub =~ s/\]\[['|"]PATH['|"]\]//;
178 $sub =~ s/.*\[//;
179 if ( -e "../themes" ) {
180 $options[1] =~ s/^\.\.\/config/\.\.\/themes/;
a3439b27 181 }
8bd9e0dd 182 $theme_path[$sub] = &change_to_rel_path($options[1]);
eaace00e 183 } elsif ( $options[0] =~ /^theme\[[0-9]+\]\[['|"]NAME['|"]\]/ ) {
184 $sub = $options[0];
185 $sub =~ s/\]\[['|"]NAME['|"]\]//;
186 $sub =~ s/.*\[//;
187 $theme_name[$sub] = $options[1];
188 } elsif ( $options[0] =~ /^plugins\[[0-9]+\]/ ) {
189 $sub = $options[0];
190 $sub =~ s/\]//;
191 $sub =~ s/^plugins\[//;
192 $plugins[$sub] = $options[1];
193 } elsif ( $options[0] =~ /^ldap_server\[[0-9]+\]/ ) {
194 $sub = $options[0];
195 $sub =~ s/\]//;
196 $sub =~ s/^ldap_server\[//;
197 $continue = 0;
198 while ( ( $tmp = <FILE> ) && ( $continue != 1 ) ) {
199 if ( $tmp =~ /\);\s*$/ ) {
200 $continue = 1;
201 }
202
203 if ( $tmp =~ /^\s*[\'|\"]host[\'|\"]/i ) {
204 $tmp =~ s/^\s*[\'|\"]host[\'|\"]\s*=>\s*[\'|\"]//i;
205 $tmp =~ s/[\'|\"],?\s*$//;
206 $tmp =~ s/[\'|\"]\);\s*$//;
207 $host = $tmp;
208 } elsif ( $tmp =~ /^\s*[\'|\"]base[\'|\"]/i ) {
209 $tmp =~ s/^\s*[\'|\"]base[\'|\"]\s*=>\s*[\'|\"]//i;
210 $tmp =~ s/[\'|\"],?\s*$//;
211 $tmp =~ s/[\'|\"]\);\s*$//;
212 $base = $tmp;
213 } elsif ( $tmp =~ /^\s*[\'|\"]charset[\'|\"]/i ) {
214 $tmp =~ s/^\s*[\'|\"]charset[\'|\"]\s*=>\s*[\'|\"]//i;
215 $tmp =~ s/[\'|\"],?\s*$//;
216 $tmp =~ s/[\'|\"]\);\s*$//;
217 $charset = $tmp;
218 } elsif ( $tmp =~ /^\s*[\'|\"]port[\'|\"]/i ) {
748c796b 219 $tmp =~ s/^\s*[\'|\"]port[\'|\"]\s*=>\s*[\'|\"]?//i;
220 $tmp =~ s/[\'|\"]?,?\s*$//;
221 $tmp =~ s/[\'|\"]?\);\s*$//;
eaace00e 222 $port = $tmp;
223 } elsif ( $tmp =~ /^\s*[\'|\"]maxrows[\'|\"]/i ) {
748c796b 224 $tmp =~ s/^\s*[\'|\"]maxrows[\'|\"]\s*=>\s*[\'|\"]?//i;
225 $tmp =~ s/[\'|\"]?,?\s*$//;
226 $tmp =~ s/[\'|\"]?\);\s*$//;
eaace00e 227 $maxrows = $tmp;
228 } elsif ( $tmp =~ /^\s*[\'|\"]name[\'|\"]/i ) {
229 $tmp =~ s/^\s*[\'|\"]name[\'|\"]\s*=>\s*[\'|\"]//i;
230 $tmp =~ s/[\'|\"],?\s*$//;
231 $tmp =~ s/[\'|\"]\);\s*$//;
232 $name = $tmp;
233 }
a3439b27 234 }
eaace00e 235 $ldap_host[$sub] = $host;
236 $ldap_base[$sub] = $base;
237 $ldap_name[$sub] = $name;
238 $ldap_port[$sub] = $port;
239 $ldap_maxrows[$sub] = $maxrows;
240 $ldap_charset[$sub] = $charset;
8bd9e0dd 241 } elsif ( $options[0] =~ /^(data_dir|attachment_dir|theme_css|org_logo|signout_page)$/ ) {
242 ${ $options[0] } = &change_to_rel_path($options[1]);
eaace00e 243 } else {
244 ${ $options[0] } = $options[1];
245 }
246 }
bbd30ac8 247}
1a7a2fcc 248close FILE;
8fb817e1 249if ( lc($useSendmail) ne "true" ) {
eaace00e 250 $useSendmail = "false";
828b4753 251}
eaace00e 252if ( !$sendmail_path ) {
253 $sendmail_path = "/usr/sbin/sendmail";
828b4753 254}
254ded61 255if ( !$pop_before_smtp ) {
256 $pop_before_smtp = "false";
257}
eaace00e 258if ( !$default_unseen_notify ) {
259 $default_unseen_notify = 2;
24fc5dd2 260}
eaace00e 261if ( !$default_unseen_type ) {
262 $default_unseen_type = 1;
24fc5dd2 263}
eaace00e 264if ( !$config_use_color ) {
265 $config_use_color = 0;
0ecb47e5 266}
eaace00e 267if ( !$invert_time ) {
268 $invert_time = "false";
a1f1f9bc 269}
eaace00e 270if ( !$force_username_lowercase ) {
a3439b27 271 $force_username_lowercase = "false";
23a8095f 272}
eaace00e 273if ( !$optional_delimiter ) {
a3439b27 274 $optional_delimiter = "detect";
40ba4d36 275}
eaace00e 276if ( !$auto_create_special ) {
a3439b27 277 $auto_create_special = "false";
f7bfc9de 278}
eaace00e 279if ( !$default_use_priority ) {
a3439b27 280 $default_use_priority = "true";
0d15cd19 281}
eaace00e 282if ( !$hide_sm_attributions ) {
a3439b27 283 $hide_sm_attributions = "false";
826b7f71 284}
eaace00e 285if ( !$default_use_mdn ) {
8c21da0c 286 $default_use_mdn = "true";
287}
6517cfd0 288if ( !$delete_folder ) {
289 $delete_folder = "false";
290}
ca85aabe 291if ( !$noselect_fix_enable ) {
292 $noselect_fix_enable = "false";
293}
eaace00e 294if ( !$frame_top ) {
3d043efc 295 $frame_top = "_top";
296}
0ae4c1f2 297
298if ( !$provider_uri ) {
299 $provider_uri = "http://www.squirrelmail.org/";
300}
301
302if ( !$provider_name ) {
303 $provider_name = "SquirrelMail";
304}
305
eaace00e 306if ( !$edit_identity ) {
8a7d0669 307 $edit_identity = "true";
308}
eaace00e 309if ( !$edit_name ) {
8a7d0669 310 $edit_name = "true";
311}
7c612fdd 312if ( !$allow_thread_sort ) {
313 $allow_thread_sort = 'false';
314}
aa0da530 315if ( !$allow_server_sort ) {
316 $allow_server_sort = 'false';
317}
3c7ee482 318if ( !$uid_support ) {
bb425d06 319 $uid_support = 'true';
3c7ee482 320}
69ea91ae 321if ( !$no_list_for_subscribe ) {
322 $no_list_for_subscribe = 'false';
323}
296f4c20 324if ( !$allow_charset_search ) {
325 $allow_charset_search = 'true';
326}
99a6c222 327if ( !$prefs_user_field ) {
328 $prefs_user_field = 'user';
329}
330if ( !$prefs_key_field ) {
331 $prefs_key_field = 'prefkey';
332}
333if ( !$prefs_val_field ) {
334 $prefs_val_field = 'prefval';
335}
bbd30ac8 336
47a29326 337if ( !$use_smtp_tls) {
338 $use_smtp_tls= 'false';
339}
340
341if ( !$smtp_auth_mech ) {
342 $smtp_auth_mech = 'none';
343}
344
345if ( !$use_imap_tls ) {
346 $use_imap_tls = 'false';
347}
348
349if ( !$imap_auth_mech ) {
fe0b18b3 350 $imap_auth_mech = 'login';
47a29326 351}
352
6c499577 353if (!$session_name ) {
354 $session_name = 'SQMSESSID';
355}
356
eaace00e 357if ( $ARGV[0] eq '--install-plugin' ) {
358 print "Activating plugin " . $ARGV[1] . "\n";
ebd13f55 359 push @plugins, $ARGV[1];
360 save_data();
361 exit(0);
eaace00e 362} elsif ( $ARGV[0] eq '--remove-plugin' ) {
363 print "Removing plugin " . $ARGV[1] . "\n";
ebd13f55 364 foreach $plugin (@plugins) {
eaace00e 365 if ( $plugin ne $ARGV[1] ) {
366 push @newplugins, $plugin;
ebd13f55 367 }
368 }
369 @plugins = @newplugins;
370 save_data();
371 exit(0);
372}
373
5b6ae78a 374#####################################################################################
eaace00e 375if ( $config_use_color == 1 ) {
376 $WHT = "\x1B[37;1m";
377 $NRM = "\x1B[0m";
0ecb47e5 378} else {
eaace00e 379 $WHT = "";
380 $NRM = "";
381 $config_use_color = 2;
382}
383
384while ( ( $command ne "q" ) && ( $command ne "Q" ) ) {
f8c17cdd 385 clear_screen();
eaace00e 386 print $WHT. "SquirrelMail Configuration : " . $NRM;
387 if ( $config == 1 ) { print "Read: config.php"; }
388 elsif ( $config == 2 ) { print "Read: config_default.php"; }
389 print " ($print_config_version)\n";
390 print "---------------------------------------------------------\n";
391
392 if ( $menu == 0 ) {
393 print $WHT. "Main Menu --\n" . $NRM;
394 print "1. Organization Preferences\n";
395 print "2. Server Settings\n";
396 print "3. Folder Defaults\n";
397 print "4. General Options\n";
398 print "5. Themes\n";
399 print "6. Address Books (LDAP)\n";
400 print "7. Message of the Day (MOTD)\n";
401 print "8. Plugins\n";
402 print "9. Database\n";
403 print "\n";
404 print "D. Set pre-defined settings for specific IMAP servers\n";
405 print "\n";
406 } elsif ( $menu == 1 ) {
407 print $WHT. "Organization Preferences\n" . $NRM;
b6e0c3b6 408 print "1. Organization Name : $WHT$org_name$NRM\n";
409 print "2. Organization Logo : $WHT$org_logo$NRM\n";
410 print "3. Org. Logo Width/Height : $WHT($org_logo_width/$org_logo_height)$NRM\n";
411 print "4. Organization Title : $WHT$org_title$NRM\n";
412 print "5. Signout Page : $WHT$signout_page$NRM\n";
413 print "6. Default Language : $WHT$squirrelmail_default_language$NRM\n";
414 print "7. Top Frame : $WHT$frame_top$NRM\n";
0ae4c1f2 415 print "8. Provider link : $WHT$provider_uri$NRM\n";
416 print "9. Provider name : $WHT$provider_name$NRM\n";
417
eaace00e 418 print "\n";
419 print "R Return to Main Menu\n";
420 } elsif ( $menu == 2 ) {
47a29326 421 print $WHT. "Server Settings\n\n" . $NRM;
422 print $WHT . "General" . $NRM . "\n";
423 print "-------\n";
424 print "1. Domain : $WHT$domain$NRM\n";
425 print "2. Invert Time : $WHT$invert_time$NRM\n";
426 print "3. Sendmail or SMTP : $WHT";
eaace00e 427 if ( lc($useSendmail) eq "true" ) {
428 print "Sendmail";
429 } else {
430 print "SMTP";
431 }
432 print "$NRM\n";
47a29326 433 print "\n";
434
435 if ( $show_imap_settings ) {
436 print $WHT . "IMAP Settings". $NRM . "\n--------------\n";
437 print "4. IMAP Server : $WHT$imapServerAddress$NRM\n";
438 print "5. IMAP Port : $WHT$imapPort$NRM\n";
439 print "6. Authentication type : $WHT$imap_auth_mech$NRM\n";
440 print "7. Secure IMAP (TLS) : $WHT$use_imap_tls$NRM\n";
441 print "8. Server software : $WHT$imap_server_type$NRM\n";
442 print "9. Delimiter : $WHT$optional_delimiter$NRM\n";
443 print "\n";
444 } elsif ( $show_smtp_settings ) {
445 if ( lc($useSendmail) eq "true" ) {
446 print $WHT . "Sendmail" . $NRM . "\n--------\n";
447 print "4. Sendmail Path : $WHT$sendmail_path$NRM\n";
448 print "\n";
449 } else {
450 print $WHT . "SMTP Settings" . $NRM . "\n-------------\n";
451 print "4. SMTP Server : $WHT$smtpServerAddress$NRM\n";
452 print "5. SMTP Port : $WHT$smtpPort$NRM\n";
453 print "6. POP before SMTP : $WHT$pop_before_smtp$NRM\n";
454 print "7. SMTP Authentication : $WHT$smtp_auth_mech$NRM\n";
455 print "8. Secure SMTP (TLS) : $WHT$use_smtp_tls$NRM\n";
456 print "\n";
457 }
eaace00e 458 }
47a29326 459
460 if ($show_imap_settings == 0) {
461 print "A. Update IMAP Settings : ";
462 print "$WHT$imapServerAddress$NRM:";
463 print "$WHT$imapPort$NRM ";
464 print "($WHT$imap_server_type$NRM)\n";
465 }
466 if ($show_smtp_settings == 0) {
467 if ( lc($useSendmail) eq "true" ) {
468 print "B. Change Sendmail Config : $WHT$sendmail_path$NRM\n";
469 } else {
470 print "B. Update SMTP Settings : ";
471 print "$WHT$smtpServerAddress$NRM:";
472 print "$WHT$smtpPort$NRM\n";
473 }
474 }
475 if ( $show_smtp_settings || $show_imap_settings )
476 {
477 print "H. Hide " .
478 ($show_imap_settings ? "IMAP Server" :
479 (lc($useSendmail) eq "true") ? "Sendmail" : "SMTP") . " Settings\n";
480 }
481
eaace00e 482 print "\n";
483 print "R Return to Main Menu\n";
484 } elsif ( $menu == 3 ) {
485 print $WHT. "Folder Defaults\n" . $NRM;
486 print "1. Default Folder Prefix : $WHT$default_folder_prefix$NRM\n";
487 print "2. Show Folder Prefix Option : $WHT$show_prefix_option$NRM\n";
488 print "3. Trash Folder : $WHT$trash_folder$NRM\n";
489 print "4. Sent Folder : $WHT$sent_folder$NRM\n";
490 print "5. Drafts Folder : $WHT$draft_folder$NRM\n";
491 print "6. By default, move to trash : $WHT$default_move_to_trash$NRM\n";
492 print "7. By default, move to sent : $WHT$default_move_to_sent$NRM\n";
493 print "8. By default, save as draft : $WHT$default_save_as_draft$NRM\n";
494 print "9. List Special Folders First : $WHT$list_special_folders_first$NRM\n";
495 print "10. Show Special Folders Color : $WHT$use_special_folder_color$NRM\n";
496 print "11. Auto Expunge : $WHT$auto_expunge$NRM\n";
497 print "12. Default Sub. of INBOX : $WHT$default_sub_of_inbox$NRM\n";
498 print "13. Show 'Contain Sub.' Option : $WHT$show_contain_subfolders_option$NRM\n";
499 print "14. Default Unseen Notify : $WHT$default_unseen_notify$NRM\n";
500 print "15. Default Unseen Type : $WHT$default_unseen_type$NRM\n";
501 print "16. Auto Create Special Folders : $WHT$auto_create_special$NRM\n";
2eec12b5 502 print "17. Folder Delete Bypasses Trash : $WHT$delete_folder$NRM\n";
ca85aabe 503 print "18. Enable /NoSelect folder fix : $WHT$noselect_fix_enable$NRM\n";
eaace00e 504 print "\n";
505 print "R Return to Main Menu\n";
506 } elsif ( $menu == 4 ) {
507 print $WHT. "General Options\n" . $NRM;
6c499577 508 print "1. Default Charset : $WHT$default_charset$NRM\n";
509 print "2. Data Directory : $WHT$data_dir$NRM\n";
510 print "3. Attachment Directory : $WHT$attachment_dir$NRM\n";
511 print "4. Directory Hash Level : $WHT$dir_hash_level$NRM\n";
512 print "5. Default Left Size : $WHT$default_left_size$NRM\n";
513 print "6. Usernames in Lowercase : $WHT$force_username_lowercase$NRM\n";
514 print "7. Allow use of priority : $WHT$default_use_priority$NRM\n";
515 print "8. Hide SM attributions : $WHT$hide_sm_attributions$NRM\n";
516 print "9. Allow use of receipts : $WHT$default_use_mdn$NRM\n";
2eec12b5 517 print "10. Allow editing of identity : $WHT$edit_identity$NRM/$WHT$edit_name$NRM\n";
6c499577 518 print "11. Allow server thread sort : $WHT$allow_thread_sort$NRM\n";
519 print "12. Allow server-side sorting : $WHT$allow_server_sort$NRM\n";
2eec12b5 520 print "13. Allow server charset search : $WHT$allow_charset_search$NRM\n";
521 print "14. Enable UID support : $WHT$uid_support$NRM\n";
522 print "15. PHP session name : $WHT$session_name$NRM\n";
eaace00e 523 print "\n";
524 print "R Return to Main Menu\n";
525 } elsif ( $menu == 5 ) {
526 print $WHT. "Themes\n" . $NRM;
527 print "1. Change Themes\n";
2eec12b5 528 for ( $count = 0 ; $count <= $#theme_name/2 ; $count++ ) {
529 $temp_name = $theme_name[$count*2];
530 printf " %s%*s %s\n", $temp_name,
531 40 - length($temp_name), " ",
532 $theme_name[($count*2)+1];
eaace00e 533 }
534 print "2. CSS File : $WHT$theme_css$NRM\n";
535 print "\n";
536 print "R Return to Main Menu\n";
537 } elsif ( $menu == 6 ) {
538 print $WHT. "Address Books (LDAP)\n" . $NRM;
539 print "1. Change Servers\n";
540 for ( $count = 0 ; $count <= $#ldap_host ; $count++ ) {
541 print " > $ldap_host[$count]\n";
542 }
543 print
544 "2. Use Javascript Address Book Search : $WHT$default_use_javascript_addr_book$NRM\n";
545 print "\n";
546 print "R Return to Main Menu\n";
547 } elsif ( $menu == 7 ) {
548 print $WHT. "Message of the Day (MOTD)\n" . $NRM;
549 print "\n$motd\n";
550 print "\n";
551 print "1 Edit the MOTD\n";
552 print "\n";
553 print "R Return to Main Menu\n";
554 } elsif ( $menu == 8 ) {
555 print $WHT. "Plugins\n" . $NRM;
556 print " Installed Plugins\n";
557 $num = 0;
558 for ( $count = 0 ; $count <= $#plugins ; $count++ ) {
559 $num = $count + 1;
560 print " $num. $plugins[$count]\n";
561 }
562 print "\n Available Plugins:\n";
563 opendir( DIR, "../plugins" );
564 @files = readdir(DIR);
565 $pos = 0;
566 @unused_plugins = ();
567 for ( $i = 0 ; $i <= $#files ; $i++ ) {
568 if ( -d "../plugins/" . $files[$i] && $files[$i] !~ /^\./ && $files[$i] ne "CVS" ) {
569 $match = 0;
570 for ( $k = 0 ; $k <= $#plugins ; $k++ ) {
571 if ( $plugins[$k] eq $files[$i] ) {
572 $match = 1;
573 }
574 }
575 if ( $match == 0 ) {
576 $unused_plugins[$pos] = $files[$i];
577 $pos++;
578 }
1a7a2fcc 579 }
eaace00e 580 }
581
582 for ( $i = 0 ; $i <= $#unused_plugins ; $i++ ) {
583 $num = $num + 1;
584 print " $num. $unused_plugins[$i]\n";
585 }
586 closedir DIR;
587
eaace00e 588 print "\n";
589 print "R Return to Main Menu\n";
590 } elsif ( $menu == 9 ) {
591 print $WHT. "Database\n" . $NRM;
592 print "1. DSN for Address Book : $WHT$addrbook_dsn$NRM\n";
593 print "2. Table for Address Book : $WHT$addrbook_table$NRM\n";
99a6c222 594 print "\n";
eaace00e 595 print "3. DSN for Preferences : $WHT$prefs_dsn$NRM\n";
596 print "4. Table for Preferences : $WHT$prefs_table$NRM\n";
99a6c222 597 print "5. Field for username : $WHT$prefs_user_field$NRM\n";
598 print "6. Field for prefs key : $WHT$prefs_key_field$NRM\n";
599 print "7. Field for prefs value : $WHT$prefs_val_field$NRM\n";
eaace00e 600 print "\n";
eaace00e 601 print "R Return to Main Menu\n";
602 }
603 if ( $config_use_color == 1 ) {
604 print "C. Turn color off\n";
605 } else {
606 print "C. Turn color on\n";
607 }
608 print "S Save data\n";
609 print "Q Quit\n";
610
611 print "\n";
612 print "Command >> " . $WHT;
613 $command = <STDIN>;
614 $command =~ s/[\n|\r]//g;
615 $command =~ tr/A-Z/a-z/;
616 print "$NRM\n";
617
618 # Read the commands they entered.
619 if ( $command eq "r" ) {
620 $menu = 0;
621 } elsif ( $command eq "s" ) {
622 save_data();
623 print "Press enter to continue...";
624 $tmp = <STDIN>;
625 $saved = 1;
626 } elsif ( ( $command eq "q" ) && ( $saved == 0 ) ) {
627 print "You have not saved your data.\n";
628 print "Save? [" . $WHT . "Y" . $NRM . "/n]: ";
629 $save = <STDIN>;
630 if ( ( $save =~ /^y/i ) || ( $save =~ /^\s*$/ ) ) {
631 save_data();
632 }
633 } elsif ( $command eq "c" ) {
634 if ( $config_use_color == 1 ) {
635 $config_use_color = 2;
636 $WHT = "";
637 $NRM = "";
638 } else {
639 $config_use_color = 1;
640 $WHT = "\x1B[37;1m";
641 $NRM = "\x1B[0m";
642 }
643 } elsif ( $command eq "d" && $menu == 0 ) {
644 set_defaults();
645 } else {
646 $saved = 0;
647 if ( $menu == 0 ) {
648 if ( ( $command > 0 ) && ( $command < 10 ) ) {
649 $menu = $command;
1a7a2fcc 650 }
eaace00e 651 } elsif ( $menu == 1 ) {
652 if ( $command == 1 ) { $org_name = command1(); }
653 elsif ( $command == 2 ) { $org_logo = command2(); }
b6e0c3b6 654 elsif ( $command == 3 ) { ($org_logo_width,$org_logo_height) = command2a(); }
655 elsif ( $command == 4 ) { $org_title = command3(); }
656 elsif ( $command == 5 ) { $signout_page = command4(); }
657 elsif ( $command == 6 ) { $squirrelmail_default_language = command5(); }
658 elsif ( $command == 7 ) { $frame_top = command6(); }
0ae4c1f2 659 elsif ( $command == 8 ) { $provider_uri = command7(); }
660 elsif ( $command == 9 ) { $provider_name = command8(); }
661
eaace00e 662 } elsif ( $menu == 2 ) {
47a29326 663 if ( $command eq "a" ) { $show_imap_settings = 1; $show_smtp_settings = 0; }
664 elsif ( $command eq "b" ) { $show_imap_settings = 0; $show_smtp_settings = 1; }
665 elsif ( $command eq "h" ) { $show_imap_settings = 0; $show_smtp_settings = 0; }
666 elsif ( $command <= 3 ) {
667 if ( $command == 1 ) { $domain = command11(); }
668 elsif ( $command == 2 ) { $invert_time = command110(); }
669 elsif ( $command == 3 ) { $useSendmail = command14(); }
670 $show_imap_settings = 0; $show_smtp_settings = 0;
671 } elsif ( $show_imap_settings ) {
672 if ( $command == 4 ) { $imapServerAddress = command12(); }
673 elsif ( $command == 5 ) { $imapPort = command13(); }
b47821fb 674 elsif ( $command == 6 ) { $imap_auth_mech = command112a(); }
47a29326 675 elsif ( $command == 7 ) { $use_imap_tls = command113("IMAP",$use_imap_tls); }
676 elsif ( $command == 8 ) { $imap_server_type = command19(); }
677 elsif ( $command == 9 ) { $optional_delimiter = command111(); }
678 } elsif ( $show_smtp_settings && lc($useSendmail) eq "true" ) {
679 if ( $command == 4 ) { $sendmail_path = command15(); }
680 } elsif ( $show_smtp_settings ) {
681 if ( $command == 4 ) { $smtpServerAddress = command16(); }
682 elsif ( $command == 5 ) { $smtpPort = command17(); }
683 elsif ( $command == 6 ) { $pop_before_smtp = command18a(); }
b47821fb 684 elsif ( $command == 7 ) { $smtp_auth_mech = command112b(); }
47a29326 685 elsif ( $command == 8 ) { $use_smtp_tls = command113("SMTP",$use_smtp_tls); }
686 }
eaace00e 687 } elsif ( $menu == 3 ) {
688 if ( $command == 1 ) { $default_folder_prefix = command21(); }
689 elsif ( $command == 2 ) { $show_prefix_option = command22(); }
690 elsif ( $command == 3 ) { $trash_folder = command23a(); }
691 elsif ( $command == 4 ) { $sent_folder = command23b(); }
692 elsif ( $command == 5 ) { $draft_folder = command23c(); }
693 elsif ( $command == 6 ) { $default_move_to_trash = command24a(); }
694 elsif ( $command == 7 ) { $default_move_to_sent = command24b(); }
695 elsif ( $command == 8 ) { $default_save_as_draft = command24c(); }
696 elsif ( $command == 9 ) { $list_special_folders_first = command27(); }
697 elsif ( $command == 10 ) { $use_special_folder_color = command28(); }
698 elsif ( $command == 11 ) { $auto_expunge = command29(); }
699 elsif ( $command == 12 ) { $default_sub_of_inbox = command210(); }
700 elsif ( $command == 13 ) { $show_contain_subfolders_option = command211(); }
701 elsif ( $command == 14 ) { $default_unseen_notify = command212(); }
702 elsif ( $command == 15 ) { $default_unseen_type = command213(); }
703 elsif ( $command == 16 ) { $auto_create_special = command214(); }
704 elsif ( $command == 17 ) { $delete_folder = command215(); }
ca85aabe 705 elsif ( $command == 18 ) { $noselect_fix_enable = command216(); }
eaace00e 706 } elsif ( $menu == 4 ) {
707 if ( $command == 1 ) { $default_charset = command31(); }
708 elsif ( $command == 2 ) { $data_dir = command33a(); }
709 elsif ( $command == 3 ) { $attachment_dir = command33b(); }
710 elsif ( $command == 4 ) { $dir_hash_level = command33c(); }
711 elsif ( $command == 5 ) { $default_left_size = command35(); }
712 elsif ( $command == 6 ) { $force_username_lowercase = command36(); }
713 elsif ( $command == 7 ) { $default_use_priority = command37(); }
714 elsif ( $command == 8 ) { $hide_sm_attributions = command38(); }
715 elsif ( $command == 9 ) { $default_use_mdn = command39(); }
716 elsif ( $command == 10 ) { $edit_identity = command310(); }
7c612fdd 717 elsif ( $command == 11 ) { $allow_thread_sort = command312(); }
aa0da530 718 elsif ( $command == 12 ) { $allow_server_sort = command313(); }
2eec12b5 719 elsif ( $command == 13 ) { $allow_charset_search = command314(); }
720 elsif ( $command == 14 ) { $uid_support = command315(); }
721 elsif ( $command == 15 ) { $session_name = command316(); }
eaace00e 722 } elsif ( $menu == 5 ) {
723 if ( $command == 1 ) { command41(); }
724 elsif ( $command == 2 ) { $theme_css = command42(); }
725 } elsif ( $menu == 6 ) {
726 if ( $command == 1 ) { command61(); }
727 elsif ( $command == 2 ) { command62(); }
728 } elsif ( $menu == 7 ) {
729 if ( $command == 1 ) { $motd = command71(); }
730 } elsif ( $menu == 8 ) {
731 if ( $command =~ /^[0-9]+/ ) { @plugins = command81(); }
eaace00e 732 } elsif ( $menu == 9 ) {
99a6c222 733 if ( $command == 1 ) { $addrbook_dsn = command91(); }
734 elsif ( $command == 2 ) { $addrbook_table = command92(); }
735 elsif ( $command == 3 ) { $prefs_dsn = command93(); }
736 elsif ( $command == 4 ) { $prefs_table = command94(); }
737 elsif ( $command == 5 ) { $prefs_user_field = command95(); }
738 elsif ( $command == 6 ) { $prefs_key_field = command96(); }
739 elsif ( $command == 7 ) { $prefs_val_field = command97(); }
eaace00e 740 }
741 }
828b4753 742}
743
744####################################################################################
745
5b6ae78a 746# org_name
747sub command1 {
eaace00e 748 print "We have tried to make the name SquirrelMail as transparent as\n";
749 print "possible. If you set up an organization name, most places where\n";
750 print "SquirrelMail would take credit will be credited to your organization.\n";
751 print "\n";
360ef370 752 print "If your Organization Name includes a '\$', please precede it with a \\. \n";
753 print "Other '\$' will be considered the beginning of a variable that\n";
754 print "must be defined before the \$org_name is printed.\n";
755 print "\$version, for example, is included by default, and will print the\n";
756 print "string representing the current SquirrelMail version.\n";
757 print "\n";
eaace00e 758 print "[$WHT$org_name$NRM]: $WHT";
759 $new_org_name = <STDIN>;
760 if ( $new_org_name eq "\n" ) {
761 $new_org_name = $org_name;
762 } else {
763 $new_org_name =~ s/[\r|\n]//g;
d756b071 764 $new_org_name =~ s/\"/&quot;/g;
eaace00e 765 }
766 return $new_org_name;
5b6ae78a 767}
768
769# org_logo
770sub command2 {
eaace00e 771 print "Your organization's logo is an image that will be displayed at\n";
25be56ab 772 print "different times throughout SquirrelMail. ";
773 print "\n";
774 print "Please be aware of the following: \n";
775 print " - Relative URLs are relative to the config dir\n";
776 print " to use the default logo, use ../images/sm_logo.png\n";
777 print " - To specify a logo defined outside the SquirrelMail source tree\n";
778 print " use the absolute URL the webserver would use to include the file\n";
779 print " e.g. http://some.host.com/images/mylogo.gif or /images/mylogo.jpg\n";
eaace00e 780 print "\n";
781 print "[$WHT$org_logo$NRM]: $WHT";
782 $new_org_logo = <STDIN>;
783 if ( $new_org_logo eq "\n" ) {
784 $new_org_logo = $org_logo;
785 } else {
786 $new_org_logo =~ s/[\r|\n]//g;
787 }
788 return $new_org_logo;
5b6ae78a 789}
790
b6e0c3b6 791# org_logo_width
792sub command2a {
793 print "Your organization's logo is an image that will be displayed at\n";
794 print "different times throughout SquirrelMail. Width\n";
795 print "and Height of your logo image. Use '0' to disable.\n";
796 print "\n";
797 print "Width: [$WHT$org_logo_width$NRM]: $WHT";
798 $new_org_logo_width = <STDIN>;
799 $new_org_logo_width =~ tr/0-9//cd; # only want digits!
800 if ( $new_org_logo_width eq '' ) {
801 $new_org_logo_width = $org_logo_width;
802 }
0e21688d 803 if ( $new_org_logo_width > 0 ) {
804 print "Height: [$WHT$org_logo_height$NRM]: $WHT";
805 $new_org_logo_height = <STDIN>;
806 $new_org_logo_height =~ tr/0-9//cd; # only want digits!
e03345e1 807 if( $new_org_logo_height eq '' ) {
808 $new_org_logo_height = $org_logo_height;
809 }
00c4b08d 810 } else {
0e21688d 811 $new_org_logo_height = 0;
b6e0c3b6 812 }
813 return ($new_org_logo_width, $new_org_logo_height);
814}
815
5b6ae78a 816# org_title
817sub command3 {
eaace00e 818 print "A title is what is displayed at the top of the browser window in\n";
819 print "the titlebar. Usually this will end up looking something like:\n";
820 print "\"Netscape: $org_title\"\n";
821 print "\n";
360ef370 822 print "If your Organization Title includes a '\$', please precede it with a \\. \n";
823 print "Other '\$' will be considered the beginning of a variable that\n";
824 print "must be defined before the \$org_title is printed.\n";
825 print "\$version, for example, is included by default, and will print the\n";
826 print "string representing the current SquirrelMail version.\n";
827 print "\n";
eaace00e 828 print "[$WHT$org_title$NRM]: $WHT";
829 $new_org_title = <STDIN>;
830 if ( $new_org_title eq "\n" ) {
831 $new_org_title = $org_title;
832 } else {
833 $new_org_title =~ s/[\r|\n]//g;
d756b071 834 $new_org_title =~ s/\"/\'/g;
eaace00e 835 }
836 return $new_org_title;
5b6ae78a 837}
5b6ae78a 838
f923b93d 839# signout_page
840sub command4 {
eaace00e 841 print "When users click the Sign Out button they will be logged out and\n";
842 print "then sent to signout_page. If signout_page is left empty,\n";
843 print "(hit space and then return) they will be taken, as normal,\n";
844 print "to the default and rather sparse SquirrelMail signout page.\n";
845 print "\n";
846 print "[$WHT$signout_page$NRM]: $WHT";
847 $new_signout_page = <STDIN>;
848 if ( $new_signout_page eq "\n" ) {
849 $new_signout_page = $signout_page;
850 } else {
851 $new_signout_page =~ s/[\r|\n]//g;
852 $new_signout_page =~ s/^\s+$//g;
853 }
854 return $new_signout_page;
6ef7145f 855}
856
857# Default language
858sub command5 {
eaace00e 859 print "SquirrelMail attempts to set the language in many ways. If it\n";
860 print "can not figure it out in another way, it will default to this\n";
e1e4f932 861 print "language. Please use the code for the desired language.\n";
eaace00e 862 print "\n";
863 print "[$WHT$squirrelmail_default_language$NRM]: $WHT";
864 $new_signout_page = <STDIN>;
865 if ( $new_signout_page eq "\n" ) {
866 $new_signout_page = $squirrelmail_default_language;
867 } else {
868 $new_signout_page =~ s/[\r|\n]//g;
869 $new_signout_page =~ s/^\s+$//g;
870 }
871 return $new_signout_page;
f923b93d 872}
873
80e86e94 874# Default top frame
875sub command6 {
876 print "SquirrelMail defaults to using the whole of the browser window.\n";
877 print "This allows you to keep it within a specified frame. The default\n";
878 print "is '_top'\n";
879 print "\n";
880 print "[$WHT$frame_top$NRM]: $WHT";
881 $new_frame_top = <STDIN>;
eaace00e 882 if ( $new_frame_top eq "\n" ) {
80e86e94 883 $new_frame_top = '_top';
884 } else {
885 $new_frame_top =~ s/[\r|\n]//g;
886 $new_frame_top =~ s/^\s+$//g;
887 }
888 return $new_frame_top;
889}
890
0ae4c1f2 891# Default link to provider
892sub command7 {
893 print "Here you can set the link on the right of the page.\n";
894 print "The default is 'http://www.squirrelmail.org/'\n";
895 print "\n";
896 print "[$WHT$provider_uri$NRM]: $WHT";
897 $new_provider_uri = <STDIN>;
898 if ( $new_provider_uri eq "\n" ) {
899 $new_provider_uri = 'http://www.squirrelmail.org/';
900 } else {
901 $new_provider_uri =~ s/[\r|\n]//g;
902 $new_provider_uri =~ s/^\s+$//g;
903 }
7b6563c0 904 return $new_provider_uri;
0ae4c1f2 905}
906
907sub command8 {
908 print "Here you can set the name of the link on the right of the page.\n";
909 print "The default is 'SquirrelMail/'\n";
910 print "\n";
911 print "[$WHT$provider_name$NRM]: $WHT";
912 $new_provider_name = <STDIN>;
913 if ( $new_provider_name eq "\n" ) {
914 $new_provider_name = 'SquirrelMail';
915 } else {
916 $new_provider_name =~ s/[\r|\n]//g;
917 $new_provider_name =~ s/^\s+$//g;
918 }
7b6563c0 919 return $new_provider_name;
0ae4c1f2 920}
921
828b4753 922####################################################################################
5b6ae78a 923
828b4753 924# domain
925sub command11 {
e1e4f932 926 print "The domain name is the suffix at the end of all email addresses. If\n";
eaace00e 927 print "for example, your email address is jdoe\@myorg.com, then your domain\n";
928 print "would be myorg.com.\n";
929 print "\n";
930 print "[$WHT$domain$NRM]: $WHT";
931 $new_domain = <STDIN>;
932 if ( $new_domain eq "\n" ) {
933 $new_domain = $domain;
934 } else {
935 $new_domain =~ s/[\r|\n]//g;
936 }
937 return $new_domain;
828b4753 938}
5b6ae78a 939
828b4753 940# imapServerAddress
941sub command12 {
47a29326 942 print "This is the hostname where your IMAP server can be contacted.\n";
eaace00e 943 print "[$WHT$imapServerAddress$NRM]: $WHT";
944 $new_imapServerAddress = <STDIN>;
945 if ( $new_imapServerAddress eq "\n" ) {
946 $new_imapServerAddress = $imapServerAddress;
947 } else {
948 $new_imapServerAddress =~ s/[\r|\n]//g;
949 }
950 return $new_imapServerAddress;
828b4753 951}
5b6ae78a 952
828b4753 953# imapPort
954sub command13 {
eaace00e 955 print "This is the port that your IMAP server is on. Usually this is 143.\n";
956 print "[$WHT$imapPort$NRM]: $WHT";
957 $new_imapPort = <STDIN>;
958 if ( $new_imapPort eq "\n" ) {
959 $new_imapPort = $imapPort;
960 } else {
961 $new_imapPort =~ s/[\r|\n]//g;
962 }
963 return $new_imapPort;
828b4753 964}
965
966# useSendmail
967sub command14 {
eaace00e 968 print "You now need to choose the method that you will use for sending\n";
969 print "messages in SquirrelMail. You can either connect to an SMTP server\n";
970 print "or use sendmail directly.\n";
971 if ( lc($useSendmail) eq "true" ) {
972 $default_value = "1";
973 } else {
974 $default_value = "2";
975 }
976 print "\n";
977 print " 1. Sendmail\n";
978 print " 2. SMTP\n";
979 print "Your choice [1/2] [$WHT$default_value$NRM]: $WHT";
980 $use_sendmail = <STDIN>;
981 if ( ( $use_sendmail =~ /^1\n/i )
982 || ( ( $use_sendmail =~ /^\n/ ) && ( $default_value eq "1" ) ) ) {
983 $useSendmail = "true";
984 } else {
985 $useSendmail = "false";
986 }
987 return $useSendmail;
828b4753 988}
5b6ae78a 989
828b4753 990# sendmail_path
991sub command15 {
eaace00e 992 if ( $sendmail_path[0] !~ /./ ) {
993 $sendmail_path = "/usr/sbin/sendmail";
994 }
995 print "Specify where the sendmail executable is located. Usually /usr/sbin/sendmail\n";
996 print "[$WHT$sendmail_path$NRM]: $WHT";
997 $new_sendmail_path = <STDIN>;
998 if ( $new_sendmail_path eq "\n" ) {
999 $new_sendmail_path = $sendmail_path;
1000 } else {
1001 $new_sendmail_path =~ s/[\r|\n]//g;
1002 }
1003 return $new_sendmail_path;
828b4753 1004}
5b6ae78a 1005
828b4753 1006# smtpServerAddress
1007sub command16 {
47a29326 1008 print "This is the hostname of your SMTP server.\n";
eaace00e 1009 print "[$WHT$smtpServerAddress$NRM]: $WHT";
1010 $new_smtpServerAddress = <STDIN>;
1011 if ( $new_smtpServerAddress eq "\n" ) {
1012 $new_smtpServerAddress = $smtpServerAddress;
1013 } else {
1014 $new_smtpServerAddress =~ s/[\r|\n]//g;
1015 }
1016 return $new_smtpServerAddress;
828b4753 1017}
1018
1019# smtpPort
1020sub command17 {
eaace00e 1021 print "This is the port to connect to for SMTP. Usually 25.\n";
1022 print "[$WHT$smtpPort$NRM]: $WHT";
1023 $new_smtpPort = <STDIN>;
1024 if ( $new_smtpPort eq "\n" ) {
1025 $new_smtpPort = $smtpPort;
1026 } else {
1027 $new_smtpPort =~ s/[\r|\n]//g;
1028 }
1029 return $new_smtpPort;
bbd30ac8 1030}
d2f4c914 1031
1032# authenticated server
a93b12ba 1033sub command18 {
47a29326 1034 return;
1035 # This sub disabled by tassium - it has been replaced with smtp_auth_mech
eaace00e 1036 print "Do you wish to use an authenticated SMTP server? Your server must\n";
1037 print "support this in order for SquirrelMail to work with it. We implemented\n";
1038 print "it according to RFC 2554.\n";
1039
1040 $YesNo = 'n';
1041 $YesNo = 'y' if ( lc($use_authenticated_smtp) eq "true" );
1042
1043 print "Use authenticated SMTP server (y/n) [$WHT$YesNo$NRM]: $WHT";
1044
1045 $new_use_authenticated_smtp = <STDIN>;
1046 $new_use_authenticated_smtp =~ tr/yn//cd;
1047 return "true" if ( $new_use_authenticated_smtp eq "y" );
1048 return "false" if ( $new_use_authenticated_smtp eq "n" );
1049 return $use_authenticated_smtp;
1050}
d2f4c914 1051
2044f95a 1052# pop before SMTP
1053sub command18a {
1054 print "Do you wish to use POP3 before SMTP? Your server must\n";
1055 print "support this in order for SquirrelMail to work with it.\n";
1056
1057 $YesNo = 'n';
1058 $YesNo = 'y' if ( lc($pop_before_smtp) eq "true" );
1059
1060 print "Use pop before SMTP (y/n) [$WHT$YesNo$NRM]: $WHT";
1061
1062 $new_pop_before_smtp = <STDIN>;
1063 $new_pop_before_smtp =~ tr/yn//cd;
1064 return "true" if ( $new_pop_before_smtp eq "y" );
1065 return "false" if ( $new_pop_before_smtp eq "n" );
1066 return $pop_before_smtp;
1067}
1068
d2f4c914 1069# imap_server_type
1070sub command19 {
eaace00e 1071 print "Each IMAP server has its own quirks. As much as we tried to stick\n";
1072 print "to standards, it doesn't help much if the IMAP server doesn't follow\n";
1073 print "the same principles. We have made some work-arounds for some of\n";
1074 print "these servers. If you would like to use them, please select your\n";
1075 print "IMAP server. If you do not wish to use these work-arounds, you can\n";
1076 print "set this to \"other\", and none will be used.\n";
1077 print " cyrus = Cyrus IMAP server\n";
1078 print " uw = University of Washington's IMAP server\n";
1079 print " exchange = Microsoft Exchange IMAP server\n";
1080 print " courier = Courier IMAP server\n";
d50e52d1 1081 print " macosx = Mac OS X Mailserver\n";
eaace00e 1082 print " other = Not one of the above servers\n";
1083 print "[$WHT$imap_server_type$NRM]: $WHT";
1084 $new_imap_server_type = <STDIN>;
1085
1086 if ( $new_imap_server_type eq "\n" ) {
1087 $new_imap_server_type = $imap_server_type;
1088 } else {
1089 $new_imap_server_type =~ s/[\r|\n]//g;
1090 }
1091 return $new_imap_server_type;
a93b12ba 1092}
3f8fe68e 1093
d47b2518 1094# invert_time
d2f4c914 1095sub command110 {
eaace00e 1096 print "Sometimes the date of messages sent is messed up (off by a few hours\n";
1097 print "on some machines). Typically this happens if the system doesn't support\n";
1098 print "tm_gmtoff. It will happen only if your time zone is \"negative\".\n";
1099 print "This most often occurs on Solaris 7 machines in the United States.\n";
1100 print "By default, this is off. It should be kept off unless problems surface\n";
1101 print "about the time that messages are sent.\n";
1102 print " no = Do NOT fix time -- almost always correct\n";
1103 print " yes = Fix the time for this system\n";
1104
1105 $YesNo = 'n';
1106 $YesNo = 'y' if ( lc($invert_time) eq "true" );
1107
1108 print "Fix the time for this system (y/n) [$WHT$YesNo$NRM]: $WHT";
1109
1110 $new_invert_time = <STDIN>;
1111 $new_invert_time =~ tr/yn//cd;
1112 return "true" if ( $new_invert_time eq "y" );
1113 return "false" if ( $new_invert_time eq "n" );
1114 return $invert_time;
1115}
d47b2518 1116
d2f4c914 1117sub command111 {
eaace00e 1118 print "This is the delimiter that your IMAP server uses to distinguish between\n";
1119 print "folders. For example, Cyrus uses '.' as the delimiter and a complete\n";
1120 print "folder would look like 'INBOX.Friends.Bob', while UW uses '/' and would\n";
1121 print "look like 'INBOX/Friends/Bob'. Normally this should be left at 'detect'\n";
1122 print "but if you are sure you know what delimiter your server uses, you can\n";
1123 print "specify it here.\n";
1124 print "\nTo have it autodetect the delimiter, set it to 'detect'.\n\n";
1125 print "[$WHT$optional_delimiter$NRM]: $WHT";
1126 $new_optional_delimiter = <STDIN>;
1127
1128 if ( $new_optional_delimiter eq "\n" ) {
1129 $new_optional_delimiter = $optional_delimiter;
1130 } else {
1131 $new_optional_delimiter =~ s/[\r|\n]//g;
1132 }
1133 return $new_optional_delimiter;
40ba4d36 1134}
b47821fb 1135# IMAP authentication type
33feaaec 1136# Possible values: login, plain, cram-md5, digest-md5
b47821fb 1137# Now offers to detect supported mechs, assuming server & port are set correctly
1138
1139sub command112a {
1140 print "If you have already set the hostname and port number, I can try to\n";
1c6d997a 1141 print "detect the mechanisms your IMAP server supports.\n";
b47821fb 1142 print "I will try to detect CRAM-MD5 and DIGEST-MD5 support. I can't test\n";
33feaaec 1143 print "for \"login\" or \"plain\" without knowing a username and password.\n";
1c6d997a 1144 print "Auto-detecting is optional - you can safely say \"n\" here.\n";
1145 print "\nTry to detect supported mechanisms? [y/N]: ";
b47821fb 1146 $inval=<STDIN>;
1147 chomp($inval);
1148 if ($inval =~ /^y\b/i) {
1149 # Yes, let's try to detect.
1150 print "Trying to detect IMAP capabilities...\n";
1151 my $host = $imapServerAddress . ':'. $imapPort;
1152 print "CRAM-MD5:\t";
1153 my $tmp = detect_auth_support('IMAP',$host,'CRAM-MD5');
1154 if (defined($tmp)) {
1155 if ($tmp eq 'YES') {
1156 print "$WHT SUPPORTED$NRM\n";
1157 } else {
1158 print "$WHT NOT SUPPORTED$NRM\n";
1159 }
1160 } else {
1161 print $WHT . " ERROR DETECTING$NRM\n";
1162 }
1163
1164 print "DIGEST-MD5:\t";
1165 $tmp = detect_auth_support('IMAP',$host,'DIGEST-MD5');
1166 if (defined($tmp)) {
1167 if ($tmp eq 'YES') {
1168 print "$WHT SUPPORTED$NRM\n";
1169 } else {
1170 print "$WHT NOT SUPPORTED$NRM\n";
1171 }
1172 } else {
1173 print $WHT . " ERROR DETECTING$NRM\n";
1174 }
1175
1176 }
1177 print "\nWhat authentication mechanism do you want to use for IMAP connections?\n\n";
fe0b18b3 1178 print $WHT . "login" . $NRM . " - Plaintext. If you can do better, you probably should.\n";
33feaaec 1179 print $WHT . "plain" . $NRM . " - SASL PLAIN. If you need this, you already know it.\n";
fe0b18b3 1180 print $WHT . "cram-md5" . $NRM . " - Slightly better than plaintext methods.\n";
639c7164 1181 print $WHT . "digest-md5" . $NRM . " - Privacy protection - better than cram-md5.\n";
b47821fb 1182 print "\n*** YOUR IMAP SERVER MUST SUPPORT THE MECHANISM YOU CHOOSE HERE ***\n";
fe0b18b3 1183 print "If you don't understand or are unsure, you probably want \"login\"\n\n";
33feaaec 1184 print "login, plain, cram-md5, or digest-md5 [$WHT$imap_auth_mech$NRM]: $WHT";
b47821fb 1185 $inval=<STDIN>;
1186 chomp($inval);
33feaaec 1187 if ( ($inval =~ /^cram-md5\b/i) || ($inval =~ /^digest-md5\b/i) || ($inval =~ /^login\b/i) || ($inval =~ /^plain\b/i)) {
b47821fb 1188 return lc($inval);
1189 } else {
1190 # user entered garbage or default value so nothing needs to be set
1191 return $imap_auth_mech;
1192 }
1193}
40ba4d36 1194
b47821fb 1195
1196# SMTP authentication type
1197# Possible choices: none, plain, cram-md5, digest-md5
1198sub command112b {
1199 print "If you have already set the hostname and port number, I can try to\n";
33feaaec 1200 print "automatically detect some of the mechanisms your SMTP server supports.\n";
1c6d997a 1201 print "Auto-detection is *optional* - you can safely say \"n\" here.\n";
1202 print "\nTry to detect auth mechanisms? [y/N]: ";
b47821fb 1203 $inval=<STDIN>;
1204 chomp($inval);
1205 if ($inval =~ /^y\b/i) {
1206 # Yes, let's try to detect.
1c6d997a 1207 print "Trying to detect supported methods (SMTP)...\n";
b47821fb 1208
1209 # Special case!
fe0b18b3 1210 # Check none by trying to relay to junk@microsoft.com
b47821fb 1211 $host = $smtpServerAddress . ':' . $smtpPort;
1212 use IO::Socket;
1213 my $sock = IO::Socket::INET->new($host);
1214 print "Testing none:\t\t$WHT";
1215 if (!defined($sock)) {
1216 print " ERROR TESTING\n";
1217 close $sock;
1218 } else {
1219 print $sock "mail from: tester\@squirrelmail.org\n";
1220 $got = <$sock>; # Discard
fe0b18b3 1221 print $sock "rcpt to: junk\@microsoft.com\n";
b47821fb 1222 $got = <$sock>; # This is the important line
1223 if ($got =~ /^250\b/) { # SMTP will relay without auth
1224 print "SUPPORTED$NRM\n";
1225 } else {
1226 print "NOT SUPPORTED$NRM\n";
1227 }
1228 print $sock "rset\n";
1229 print $sock "quit\n";
1230 close $sock;
1231 }
fe0b18b3 1232 # Try login (SquirrelMail default)
1233 print "Testing login:\t\t";
b47821fb 1234 $tmp=detect_auth_support('SMTP',$host,'LOGIN');
1235 if (defined($tmp)) {
1236 if ($tmp eq 'YES') {
1237 print $WHT . "SUPPORTED$NRM\n";
1238 } else {
1239 print $WHT . "NOT SUPPORTED$NRM\n";
1240 }
1241 } else {
1242 print $WHT . "ERROR DETECTING$NRM\n";
1243 }
1244
1245 # Try CRAM-MD5
1246 print "Testing CRAM-MD5:\t";
1247 $tmp=detect_auth_support('SMTP',$host,'CRAM-MD5');
1248 if (defined($tmp)) {
1249 if ($tmp eq 'YES') {
1250 print $WHT . "SUPPORTED$NRM\n";
1251 } else {
1252 print $WHT . "NOT SUPPORTED$NRM\n";
1253 }
1254 } else {
1255 print $WHT . "ERROR DETECTING$NRM\n";
1256 }
1257
1258
1259 print "Testing DIGEST-MD5:\t";
1260 $tmp=detect_auth_support('SMTP',$host,'DIGEST-MD5');
1261 if (defined($tmp)) {
1262 if ($tmp eq 'YES') {
1263 print $WHT . "SUPPORTED$NRM\n";
1264 } else {
1265 print $WHT . "NOT SUPPORTED$NRM\n";
1266 }
1267 } else {
1268 print $WHT . "ERROR DETECTING$NRM\n";
1269 }
1270 }
1271 print "\tWhat authentication mechanism do you want to use for SMTP connections?\n";
1272 print $WHT . "none" . $NRM . " - Your SMTP server does not require authorization.\n";
fe0b18b3 1273 print $WHT . "login" . $NRM . " - Plaintext. If you can do better, you probably should.\n";
33feaaec 1274 print $WHT . "plain" . $NRM . " - SASL PLAIN. You already know it if you need this.\n";
639c7164 1275 print $WHT . "cram-md5" . $NRM . " - Slightly better than plaintext.\n";
1276 print $WHT . "digest-md5" . $NRM . " - Privacy protection - better than cram-md5.\n";
fe0b18b3 1277 print $WHT . "\n*** YOUR SMTP SERVER MUST SUPPORT THE MECHANISM YOU CHOOSE HERE ***\n" . $NRM;
b47821fb 1278 print "If you don't understand or are unsure, you probably want \"none\"\n\n";
fe0b18b3 1279 print "none, login, cram-md5, or digest-md5 [$WHT$smtp_auth_mech$NRM]: $WHT";
47a29326 1280 $inval=<STDIN>;
1281 chomp($inval);
b47821fb 1282 if ($inval =~ /^none\b/i) {
47a29326 1283 # SMTP doesn't necessarily require logins
1284 return "none";
1285 }
1286 if ( ($inval =~ /^cram-md5\b/i) || ($inval =~ /^digest-md5\b/i) ||
33feaaec 1287 ($inval =~ /^login\b/i) || ($inval =~/^plain\b/i)) {
47a29326 1288 return lc($inval);
1289 } else {
b47821fb 1290 # user entered garbage, or default value so nothing needs to be set
1c6d997a 1291 return $smtp_auth_mech;
47a29326 1292 }
1293}
1294
1295# TLS
1296# This sub is reused for IMAP and SMTP
1297# Args: service name, default value
1298sub command113 {
1299 my($default_val,$service,$inval);
1300 $service=$_[0];
1301 $default_val=$_[1];
1302 print "TLS (Transport Layer Security) encrypts the traffic between server and client.\n";
1303 print "If you're familiar with SSL, you get the idea.\n";
1304 print "To use this feature, your " . $service . " server must offer TLS\n";
1305 print "capability, plus PHP 4.3.x with OpenSSL support.\n";
1306 print "\nIf your " . $service . " server is localhost, you can safely disable this.\n";
1307 print "If it is remote, you may wish to seriously consider enabling this.\n";
1308 print "Enable TLS (y/n) [$WHT";
1309 if ($default_val eq "true") {
1310 print "y";
1311 } else {
1312 print "n";
1313 }
1314 print "$NRM]: $WHT";
1315 $inval=<STDIN>;
1316 $inval =~ tr/yn//cd;
1317 return "true" if ( $inval eq "y" );
1318 return "false" if ( $inval eq "n" );
1319 return $default_val;
1320
1321
1322}
1323
1324
3f8fe68e 1325# MOTD
1326sub command71 {
eaace00e 1327 print "\nYou can now create the welcome message that is displayed\n";
1328 print "every time a user logs on. You can use HTML or just plain\n";
1329 print
1330"text. If you do not wish to have one, just make it blank.\n\n(Type @ on a blank line to exit)\n";
1331
1332 $new_motd = "";
1333 do {
1334 print "] ";
1335 $line = <STDIN>;
1336 $line =~ s/[\r|\n]//g;
1337 if ( $line ne "@" ) {
1338 $line =~ s/ /\&nbsp;\&nbsp;/g;
1339 $line =~ s/\t/\&nbsp;\&nbsp;\&nbsp;\&nbsp;/g;
1340 $line =~ s/$/ /;
d756b071 1341 $line =~ s/\"/&quot;/g;
eaace00e 1342
1343 $new_motd = $new_motd . $line;
1344 }
1345 } while ( $line ne "@" );
1346 return $new_motd;
3f8fe68e 1347}
911ad01c 1348
9d0c7bee 1349################# PLUGINS ###################
1350
1351sub command81 {
eaace00e 1352 $command =~ s/[\s|\n|\r]*//g;
1353 if ( $command > 0 ) {
1354 $command = $command - 1;
1355 if ( $command <= $#plugins ) {
1356 @newplugins = ();
1357 $ct = 0;
1358 while ( $ct <= $#plugins ) {
1359 if ( $ct != $command ) {
1360 @newplugins = ( @newplugins, $plugins[$ct] );
1361 }
1362 $ct++;
9d0c7bee 1363 }
eaace00e 1364 @plugins = @newplugins;
1365 } elsif ( $command <= $#plugins + $#unused_plugins + 1 ) {
1366 $num = $command - $#plugins - 1;
1367 @newplugins = @plugins;
1368 $ct = 0;
1369 while ( $ct <= $#unused_plugins ) {
1370 if ( $ct == $num ) {
1371 @newplugins = ( @newplugins, $unused_plugins[$ct] );
eaace00e 1372 }
1373 $ct++;
9d0c7bee 1374 }
eaace00e 1375 @plugins = @newplugins;
1376 }
1377 }
1378 return @plugins;
1379}
9d0c7bee 1380
911ad01c 1381################# FOLDERS ###################
1382
1383# default_folder_prefix
1384sub command21 {
eaace00e 1385 print "Some IMAP servers (UW, for example) store mail and folders in\n";
1386 print "your user space in a separate subdirectory. This is where you\n";
1387 print "specify what that directory is.\n";
1388 print "\n";
1389 print "EXAMPLE: mail/";
1390 print "\n";
1391 print "NOTE: If you use Cyrus, or some server that would not use this\n";
1392 print " option, you must set this to 'none'.\n";
1393 print "\n";
1394 print "[$WHT$default_folder_prefix$NRM]: $WHT";
1395 $new_default_folder_prefix = <STDIN>;
1396
1397 if ( $new_default_folder_prefix eq "\n" ) {
1398 $new_default_folder_prefix = $default_folder_prefix;
1399 } else {
d52532d5 1400 $new_default_folder_prefix =~ s/[\r\n]//g;
eaace00e 1401 }
d52532d5 1402 if ( ( $new_default_folder_prefix =~ /^\s*$/ ) || ( $new_default_folder_prefix =~ m/^none$/i ) ) {
eaace00e 1403 $new_default_folder_prefix = "";
1404 } else {
d52532d5 1405 # add the trailing delimiter only if we know what the server is.
ce9f808b 1406 if (($imap_server_type eq 'cyrus' and
1407 $optional_delimiter eq 'detect') or
1408 ($imap_server_type eq 'courier' and
1409 $optional_delimiter eq 'detect')) {
d52532d5 1410 $new_default_folder_prefix =~ s/\.*$/\./;
ce9f808b 1411 } elsif ($imap_server_type eq 'uw' and
1412 $optional_delimiter eq 'detect') {
d52532d5 1413 $new_default_folder_prefix =~ s/\/*$/\//;
0e21688d 1414 }
eaace00e 1415 }
1416 return $new_default_folder_prefix;
911ad01c 1417}
1418
1419# Show Folder Prefix
1420sub command22 {
eaace00e 1421 print "It is possible to set up the default folder prefix as a user\n";
1422 print "specific option, where each user can specify what their mail\n";
1423 print "folder is. If you set this to false, they will never see the\n";
1424 print "option, but if it is true, this option will appear in the\n";
1425 print "'options' section.\n";
1426 print "\n";
1427 print "NOTE: You set the default folder prefix in option '1' of this\n";
1428 print " section. That will be the default if the user doesn't\n";
1429 print " specify anything different.\n";
1430 print "\n";
1431
1432 if ( lc($show_prefix_option) eq "true" ) {
1433 $default_value = "y";
1434 } else {
1435 $default_value = "n";
1436 }
1437 print "\n";
1438 print "Show option (y/n) [$WHT$default_value$NRM]: $WHT";
1439 $new_show = <STDIN>;
1440 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1441 $show_prefix_option = "true";
1442 } else {
1443 $show_prefix_option = "false";
1444 }
1445 return $show_prefix_option;
911ad01c 1446}
1447
1448# Trash Folder
f7b1b3b1 1449sub command23a {
eaace00e 1450 print "You can now specify where the default trash folder is located.\n";
1451 print "On servers where you do not want this, you can set it to anything\n";
1452 print "and set option 6 to false.\n";
1453 print "\n";
1454 print "This is relative to where the rest of your email is kept. You do\n";
1455 print "not need to worry about their mail directory. If this folder\n";
1456 print "would be ~/mail/trash on the filesystem, you only need to specify\n";
1457 print "that this is 'trash', and be sure to put 'mail/' in option 1.\n";
1458 print "\n";
1459
1460 print "[$WHT$trash_folder$NRM]: $WHT";
1461 $new_trash_folder = <STDIN>;
1462 if ( $new_trash_folder eq "\n" ) {
1463 $new_trash_folder = $trash_folder;
1464 } else {
1465 $new_trash_folder =~ s/[\r|\n]//g;
1466 }
1467 return $new_trash_folder;
911ad01c 1468}
1469
1470# Sent Folder
f7b1b3b1 1471sub command23b {
eaace00e 1472 print "This is where messages that are sent will be stored. SquirrelMail\n";
1473 print "by default puts a copy of all outgoing messages in this folder.\n";
1474 print "\n";
1475 print "This is relative to where the rest of your email is kept. You do\n";
1476 print "not need to worry about their mail directory. If this folder\n";
1477 print "would be ~/mail/sent on the filesystem, you only need to specify\n";
1478 print "that this is 'sent', and be sure to put 'mail/' in option 1.\n";
1479 print "\n";
1480
1481 print "[$WHT$sent_folder$NRM]: $WHT";
1482 $new_sent_folder = <STDIN>;
1483 if ( $new_sent_folder eq "\n" ) {
1484 $new_sent_folder = $sent_folder;
1485 } else {
1486 $new_sent_folder =~ s/[\r|\n]//g;
1487 }
1488 return $new_sent_folder;
911ad01c 1489}
1490
f7b1b3b1 1491# Draft Folder
1492sub command23c {
eaace00e 1493 print "You can now specify where the default draft folder is located.\n";
1494 print "On servers where you do not want this, you can set it to anything\n";
1495 print "and set option 9 to false.\n";
1496 print "\n";
1497 print "This is relative to where the rest of your email is kept. You do\n";
1498 print "not need to worry about their mail directory. If this folder\n";
1499 print "would be ~/mail/drafts on the filesystem, you only need to specify\n";
1500 print "that this is 'drafts', and be sure to put 'mail/' in option 1.\n";
1501 print "\n";
1502
1503 print "[$WHT$draft_folder$NRM]: $WHT";
1504 $new_draft_folder = <STDIN>;
1505 if ( $new_draft_folder eq "\n" ) {
1506 $new_draft_folder = $draft_folder;
1507 } else {
1508 $new_draft_folder =~ s/[\r|\n]//g;
1509 }
1510 return $new_draft_folder;
f7b1b3b1 1511}
1512
2f287147 1513# default move to trash
f7b1b3b1 1514sub command24a {
eaace00e 1515 print "By default, should messages get moved to the trash folder? You\n";
1516 print "can specify the default trash folder in option 3. If this is set\n";
1517 print "to false, messages will get deleted immediately without moving\n";
1518 print "to the trash folder.\n";
1519 print "\n";
1520 print "Trash folder is currently: $trash_folder\n";
1521 print "\n";
1522
1523 if ( lc($default_move_to_trash) eq "true" ) {
1524 $default_value = "y";
1525 } else {
1526 $default_value = "n";
1527 }
1528 print "By default, move to trash (y/n) [$WHT$default_value$NRM]: $WHT";
1529 $new_show = <STDIN>;
1530 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1531 $default_move_to_trash = "true";
1532 } else {
1533 $default_move_to_trash = "false";
1534 }
1535 return $default_move_to_trash;
2f287147 1536}
1537
1538# default move to sent
f7b1b3b1 1539sub command24b {
eaace00e 1540 print "By default, should messages get moved to the sent folder? You\n";
1541 print "can specify the default sent folder in option 4. If this is set\n";
1542 print "to false, messages will get sent and no copy will be made.\n";
1543 print "\n";
6517cfd0 1544 print "Sent folder is currently: $sent_folder\n";
eaace00e 1545 print "\n";
1546
1547 if ( lc($default_move_to_sent) eq "true" ) {
1548 $default_value = "y";
1549 } else {
1550 $default_value = "n";
1551 }
1552 print "By default, move to sent (y/n) [$WHT$default_value$NRM]: $WHT";
1553 $new_show = <STDIN>;
1554 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1555 $default_move_to_sent = "true";
1556 } else {
1557 $default_move_to_sent = "false";
1558 }
1559 return $default_move_to_sent;
2f287147 1560}
1561
f7b1b3b1 1562# default save as draft
1563sub command24c {
eaace00e 1564 print "By default, should the save to draft option be shown? You can\n";
1565 print "specify the default drafts folder in option 5. If this is set\n";
1566 print "to false, users will not be shown the save to draft option.\n";
1567 print "\n";
1568 print "Drafts folder is currently: $draft_folder\n";
1569 print "\n";
1570
1571 if ( lc($default_move_to_draft) eq "true" ) {
1572 $default_value = "y";
1573 } else {
1574 $default_value = "n";
1575 }
1576 print "By default, save as draft (y/n) [$WHT$default_value$NRM]: $WHT";
1577 $new_show = <STDIN>;
1578 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1579 $default_save_as_draft = "true";
1580 } else {
1581 $default_save_as_draft = "false";
1582 }
1583 return $default_save_as_draft;
f7b1b3b1 1584}
1585
2f287147 1586# List special folders first
1587sub command27 {
eaace00e 1588 print "SquirrelMail has what we call 'special folders' that are not\n";
1589 print "manipulated and viewed like normal folders. Some examples of\n";
1590 print "these folders would be INBOX, Trash, Sent, etc. This option\n";
1591 print "Simply asks if you want these folders listed first in the folder\n";
1592 print "listing.\n";
1593 print "\n";
1594
1595 if ( lc($list_special_folders_first) eq "true" ) {
1596 $default_value = "y";
1597 } else {
1598 $default_value = "n";
1599 }
1600 print "\n";
1601 print "List first (y/n) [$WHT$default_value$NRM]: $WHT";
1602 $new_show = <STDIN>;
1603 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1604 $list_special_folders_first = "true";
1605 } else {
1606 $list_special_folders_first = "false";
1607 }
1608 return $list_special_folders_first;
911ad01c 1609}
1610
1611# Show special folders color
2f287147 1612sub command28 {
eaace00e 1613 print "SquirrelMail has what we call 'special folders' that are not\n";
1614 print "manipulated and viewed like normal folders. Some examples of\n";
1615 print "these folders would be INBOX, Trash, Sent, etc. This option\n";
1616 print "wants to know if we should display special folders in a\n";
1617 print "color than the other folders.\n";
1618 print "\n";
1619
1620 if ( lc($use_special_folder_color) eq "true" ) {
1621 $default_value = "y";
1622 } else {
1623 $default_value = "n";
1624 }
1625 print "\n";
1626 print "Show color (y/n) [$WHT$default_value$NRM]: $WHT";
1627 $new_show = <STDIN>;
1628 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1629 $use_special_folder_color = "true";
1630 } else {
1631 $use_special_folder_color = "false";
1632 }
1633 return $use_special_folder_color;
911ad01c 1634}
1635
911ad01c 1636# Auto expunge
2f287147 1637sub command29 {
eaace00e 1638 print "The way that IMAP handles deleting messages is as follows. You\n";
1639 print "mark the message as deleted, and then to 'really' delete it, you\n";
1640 print "expunge it. This option asks if you want to just have messages\n";
1641 print "marked as deleted, or if you want SquirrelMail to expunge the \n";
1642 print "messages too.\n";
1643 print "\n";
1644
1645 if ( lc($auto_expunge) eq "true" ) {
1646 $default_value = "y";
1647 } else {
1648 $default_value = "n";
1649 }
1650 print "Auto expunge (y/n) [$WHT$default_value$NRM]: $WHT";
1651 $new_show = <STDIN>;
1652 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1653 $auto_expunge = "true";
1654 } else {
1655 $auto_expunge = "false";
1656 }
1657 return $auto_expunge;
911ad01c 1658}
1659
1660# Default sub of inbox
2f287147 1661sub command210 {
eaace00e 1662 print "Some IMAP servers (Cyrus) have all folders as subfolders of INBOX.\n";
1663 print "This can cause some confusion in folder creation for users when\n";
1664 print "they try to create folders and don't put it as a subfolder of INBOX\n";
1665 print "and get permission errors. This option asks if you want folders\n";
1666 print "to be subfolders of INBOX by default.\n";
1667 print "\n";
1668
1669 if ( lc($default_sub_of_inbox) eq "true" ) {
1670 $default_value = "y";
1671 } else {
1672 $default_value = "n";
1673 }
1674 print "Default sub of INBOX (y/n) [$WHT$default_value$NRM]: $WHT";
1675 $new_show = <STDIN>;
1676 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1677 $default_sub_of_inbox = "true";
1678 } else {
1679 $default_sub_of_inbox = "false";
1680 }
1681 return $default_sub_of_inbox;
911ad01c 1682}
1683
1684# Show contain subfolder option
2f287147 1685sub command211 {
eaace00e 1686 print "Some IMAP servers (UW) make it so that there are two types of\n";
1687 print "folders. Those that contain messages, and those that contain\n";
1688 print "subfolders. If this is the case for your server, set this to\n";
1689 print "true, and it will ask the user whether the folder they are\n";
1690 print "creating contains subfolders or messages.\n";
1691 print "\n";
1692
1693 if ( lc($show_contain_subfolders_option) eq "true" ) {
1694 $default_value = "y";
1695 } else {
1696 $default_value = "n";
1697 }
1698 print "Show option (y/n) [$WHT$default_value$NRM]: $WHT";
1699 $new_show = <STDIN>;
1700 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1701 $show_contain_subfolders_option = "true";
1702 } else {
1703 $show_contain_subfolders_option = "false";
1704 }
1705 return $show_contain_subfolders_option;
911ad01c 1706}
1707
24fc5dd2 1708# Default Unseen Notify
1709sub command212 {
eaace00e 1710 print "This option specifies where the users will receive notification\n";
1711 print "about unseen messages by default. This is of course an option that\n";
1712 print "can be changed on a user level.\n";
1713 print " 1 = No notification\n";
1714 print " 2 = Only on the INBOX\n";
1715 print " 3 = On all folders\n";
1716 print "\n";
1717
1718 print "Which one should be default (1,2,3)? [$WHT$default_unseen_notify$NRM]: $WHT";
1719 $new_show = <STDIN>;
1720 if ( $new_show =~ /^[1|2|3]\n/i ) {
1721 $default_unseen_notify = $new_show;
1722 }
1723 $default_unseen_notify =~ s/[\r|\n]//g;
1724 return $default_unseen_notify;
24fc5dd2 1725}
1726
1727# Default Unseen Type
1728sub command213 {
eaace00e 1729 print "Here you can define the default way that unseen messages will be displayed\n";
1730 print "to the user in the folder listing on the left side.\n";
1731 print " 1 = Only unseen messages (4)\n";
1732 print " 2 = Unseen and Total messages (4/27)\n";
1733 print "\n";
1734
1735 print "Which one should be default (1,2)? [$WHT$default_unseen_type$NRM]: $WHT";
1736 $new_show = <STDIN>;
1737 if ( $new_show =~ /^[1|2]\n/i ) {
1738 $default_unseen_type = $new_show;
1739 }
1740 $default_unseen_type =~ s/[\r|\n]//g;
1741 return $default_unseen_type;
24fc5dd2 1742}
1743
f7bfc9de 1744# Auto create special folders
1745sub command214 {
eaace00e 1746 print "Would you like the Sent, Trash, and Drafts folders to be created\n";
1747 print "automatically print for you when a user logs in? If the user\n";
1748 print "accidentally deletes their special folders, this option will\n";
1749 print "automatically create it again for them.\n";
1750 print "\n";
1751
1752 if ( lc($auto_create_special) eq "true" ) {
1753 $default_value = "y";
1754 } else {
1755 $default_value = "n";
1756 }
1757 print "Auto create special folders? (y/n) [$WHT$default_value$NRM]: $WHT";
1758 $new_show = <STDIN>;
1759 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1760 $auto_create_special = "true";
1761 } else {
1762 $auto_create_special = "false";
1763 }
1764 return $auto_create_special;
f7bfc9de 1765}
1766
2eec12b5 1767# Automatically delete folders
4e85a37f 1768sub command215 {
d04165f3 1769 if ( $imap_server_type eq "uw" ) {
1770 print "UW IMAP servers will not allow folders containing mail to also contain folders.\n";
1771 print "Deleting folders will bypass the trash folder and be immediately deleted\n\n";
98468fba 1772 print "If this is not the correct value for your server,\n";
1773 print "please use option D on the Main Menu to configure your server correctly.\n\n";
2eec12b5 1774 print "Press any key to continue...\n";
1775 $new_delete = <STDIN>;
1776 $delete_folder = "true";
1777 } else {
d04165f3 1778 if ( $imap_server_type eq "courier" ) {
1779 print "Courier (or Courier-IMAP) IMAP servers may not support ";
1780 print "subfolders of Trash. \n";
1781 print "Specifically, if Courier is set to always move messages to Trash, \n";
1782 print "Trash will be treated by Courier as a special folder that does not \n";
1783 print "allow subfolders. \n\n";
1784 print "Please verify your Courier configuration, and test folder deletion \n";
1785 print "when changing this setting.\n\n";
1786 }
1787
1788 print "Are subfolders of the Trash supported by your IMAP server?\n";
1789 print "If so, should deleted folders be sent to Trash?\n";
1790 print "If not, say no (deleted folders should not be sent to Trash)\n\n";
1791 # reversal of logic.
1792 # question was: Should folders be automatically deleted instead of sent to trash..
1793 # we've changed the question to make it more clear,
1794 # and are here handling that to avoid changing the answers..
2eec12b5 1795 if ( lc($delete_folder) eq "true" ) {
2eec12b5 1796 $default_value = "n";
d04165f3 1797 } else {
1798 $default_value = "y";
2eec12b5 1799 }
d04165f3 1800 print "Send deleted folders to Trash? (y/n) [$WHT$default_value$NRM]: $WHT";
2eec12b5 1801 $new_delete = <STDIN>;
1802 if ( ( $new_delete =~ /^y\n/i ) || ( ( $new_delete =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2eec12b5 1803 $delete_folder = "false";
d04165f3 1804 } else {
1805 $delete_folder = "true";
2eec12b5 1806 }
eaace00e 1807 }
1808 return $delete_folder;
1809}
24fc5dd2 1810
ca85aabe 1811#noselect fix
1812sub command216 {
1813 print "Some IMAP server allow subfolders to exist even if the parent\n";
1814 print "folders do not. This fixes some problems with the folder list\n";
1815 print "when this is the case, causing the /NoSelect folders to be displayed\n";
1816 print "\n";
1817
1818 if ( lc($noselect_fix_enable) eq "true" ) {
1819 $default_value = "y";
1820 } else {
1821 $default_value = "n";
1822 }
1823 print "enable noselect fix? (y/n) [$WHT$noselect_fix_enable$NRM]: $WHT";
1824 $noselect_fix_enable = <STDIN>;
1825 if ( ( $noselect_fix_enable =~ /^y\n/i ) || ( ( $noselect_fix_enable =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1826 $noselect_fix_enable = "true";
1827 } else {
1828 $noselect_fix_enable = "false";
1829 }
1830 return $noselect_fix_enable;
1831}
ccfb2029 1832############# GENERAL OPTIONS #####################
1833
1834# Default Charset
1835sub command31 {
eaace00e 1836 print "This option controls what character set is used when sending\n";
1837 print "mail and when sending HTML to the browser. Do not set this\n";
1838 print "to US-ASCII, use ISO-8859-1 instead. For cyrillic, it is best\n";
1839 print "to use KOI8-R, since this implementation is faster than most\n";
1840 print "of the alternatives\n";
1841 print "\n";
1842
1843 print "[$WHT$default_charset$NRM]: $WHT";
1844 $new_default_charset = <STDIN>;
1845 if ( $new_default_charset eq "\n" ) {
1846 $new_default_charset = $default_charset;
1847 } else {
1848 $new_default_charset =~ s/[\r|\n]//g;
1849 }
1850 return $new_default_charset;
ccfb2029 1851}
1852
ccfb2029 1853# Data directory
3392dc86 1854sub command33a {
e6566358 1855 print "Specify the location for your data directory.\n";
1856 print "The path name can be absolute or relative (to the config directory).\n";
1857 print "It doesn't matter. Here are two examples:\n";
1858 print " Absolute: /var/spool/data/\n";
1859 print " Relative: ../data/\n";
8bd9e0dd 1860 print "Relative paths to directories outside of the SquirrelMail distribution\n";
e6566358 1861 print "will be converted to their absolute path equivalents in config.php.\n\n";
1862 print "Note: There are potential security risks with having a writable directory\n";
1863 print "under the web server's root directory (ex: /home/httpd/html).\n";
1864 print "For this reason, it is recommended to put the data directory\n";
2eec12b5 1865 print "in an alternate location of your choice. \n";
1866 print "\n";
1867
eaace00e 1868 print "[$WHT$data_dir$NRM]: $WHT";
1869 $new_data_dir = <STDIN>;
1870 if ( $new_data_dir eq "\n" ) {
1871 $new_data_dir = $data_dir;
1872 } else {
1873 $new_data_dir =~ s/[\r|\n]//g;
1874 }
1875 if ( $new_data_dir =~ /^\s*$/ ) {
1876 $new_data_dir = "";
1877 } else {
1878 $new_data_dir =~ s/\/*$//g;
1879 $new_data_dir =~ s/$/\//g;
1880 }
1881 return $new_data_dir;
ccfb2029 1882}
1883
1884# Attachment directory
3392dc86 1885sub command33b {
eaace00e 1886 print "Path to directory used for storing attachments while a mail is\n";
e6566358 1887 print "being sent. The path name can be absolute or relative (to the config directory).\n";
1888 print "It doesn't matter. Here are two examples:\n";
1889 print " Absolute: /var/spool/attach/\n";
1890 print " Relative: ../attach/\n";
1891 print "Relative paths to directories outside of the SquirrelMail distribution\n";
1892 print "will be converted to their absolute path equivalents in config.php.\n\n";
1893 print "Note: There are a few security considerations regarding this\n";
eaace00e 1894 print "directory:\n";
1895 print " 1. It should have the permission 733 (rwx-wx-wx) to make it\n";
1896 print " impossible for a random person with access to the webserver\n";
1897 print " to list files in this directory. Confidential data might\n";
1898 print " be laying around in there.\n";
e6566358 1899 print " Depending on your user:group assignments, 730 (rwx-wx---)\n";
1900 print " may be possible, and more secure (e.g. root:apache)\n";
eaace00e 1901 print " 2. Since the webserver is not able to list the files in the\n";
1902 print " content is also impossible for the webserver to delete files\n";
1903 print " lying around there for too long.\n";
1904 print " 3. It should probably be another directory than the data\n";
1905 print " directory specified in option 3.\n";
1906 print "\n";
1907
1908 print "[$WHT$attachment_dir$NRM]: $WHT";
1909 $new_attachment_dir = <STDIN>;
1910 if ( $new_attachment_dir eq "\n" ) {
1911 $new_attachment_dir = $attachment_dir;
1912 } else {
1913 $new_attachment_dir =~ s/[\r|\n]//g;
1914 }
1915 if ( $new_attachment_dir =~ /^\s*$/ ) {
1916 $new_attachment_dir = "";
1917 } else {
1918 $new_attachment_dir =~ s/\/*$//g;
1919 $new_attachment_dir =~ s/$/\//g;
1920 }
1921 return $new_attachment_dir;
ccfb2029 1922}
1923
3392dc86 1924sub command33c {
eaace00e 1925 print "The directory hash level setting allows you to configure the level\n";
1926 print "of hashing that Squirremail employs in your data and attachment\n";
1927 print "directories. This value must be an integer ranging from 0 to 4.\n";
1928 print "When this value is set to 0, Squirrelmail will simply store all\n";
1929 print "files as normal in the data and attachment directories. However,\n";
1930 print "when set to a value from 1 to 4, a simple hashing scheme will be\n";
1931 print "used to organize the files in this directory. In short, the crc32\n";
1932 print "value for a username will be computed. Then, up to the first 4\n";
1933 print "digits of the hash, as set by this configuration value, will be\n";
1934 print "used to directory hash the files for that user in the data and\n";
1935 print "attachment directory. This allows for better performance on\n";
1936 print "servers with larger numbers of users.\n";
1937 print "\n";
1938
1939 print "[$WHT$dir_hash_level$NRM]: $WHT";
1940 $new_dir_hash_level = <STDIN>;
1941 if ( $new_dir_hash_level eq "\n" ) {
1942 $new_dir_hash_level = $dir_hash_level;
1943 } else {
1944 $new_dir_hash_level =~ s/[\r|\n]//g;
1945 }
1946 if ( ( int($new_dir_hash_level) < 0 )
1947 || ( int($new_dir_hash_level) > 4 )
1948 || !( int($new_dir_hash_level) eq $new_dir_hash_level ) ) {
1949 print "Invalid Directory Hash Level.\n";
1950 print "Value must be an integer ranging from 0 to 4\n";
1951 print "Hit enter to continue.\n";
1952 $enter_key = <STDIN>;
1953
1954 $new_dir_hash_level = $dir_hash_level;
1955 }
1956
1957 return $new_dir_hash_level;
3392dc86 1958}
ccfb2029 1959
1960sub command35 {
eaace00e 1961 print "This is the default size (in pixels) of the left folder list.\n";
1962 print "Default is 200, but you can set it to whatever you wish. This\n";
1963 print "is a user preference, so this will only show up as their default.\n";
1964 print "\n";
1965 print "[$WHT$default_left_size$NRM]: $WHT";
1966 $new_default_left_size = <STDIN>;
1967 if ( $new_default_left_size eq "\n" ) {
1968 $new_default_left_size = $default_left_size;
1969 } else {
1970 $new_default_left_size =~ s/[\r|\n]//g;
1971 }
1972 return $new_default_left_size;
ccfb2029 1973}
1974
985f7c88 1975sub command36 {
eaace00e 1976 print "Some IMAP servers only have lowercase letters in the usernames\n";
1977 print "but they still allow people with uppercase to log in. This\n";
1978 print "causes a problem with the user's preference files. This option\n";
1979 print "transparently changes all usernames to lowercase.";
1980 print "\n";
1981
1982 if ( lc($force_username_lowercase) eq "true" ) {
1983 $default_value = "y";
1984 } else {
1985 $default_value = "n";
1986 }
1987 print "Convert usernames to lowercase (y/n) [$WHT$default_value$NRM]: $WHT";
1988 $new_show = <STDIN>;
1989 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1990 return "true";
1991 }
1992 return "false";
985f7c88 1993}
1994
0d15cd19 1995sub command37 {
eaace00e 1996 print "";
1997 print "\n";
985f7c88 1998
eaace00e 1999 if ( lc($default_use_priority) eq "true" ) {
2000 $default_value = "y";
2001 } else {
2002 $default_value = "n";
2003 }
2004
2005 print "Allow users to specify priority of outgoing mail (y/n) [$WHT$default_value$NRM]: $WHT";
2006 $new_show = <STDIN>;
2007 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2008 return "true";
2009 }
2010 return "false";
826b7f71 2011}
2012
eaace00e 2013sub command38 {
2014 print "";
2015 print "\n";
2016
2017 if ( lc($default_hide_attribution) eq "true" ) {
2018 $default_value = "y";
2019 } else {
2020 $default_value = "n";
2021 }
2022
2023 print "Hide SM attributions (y/n) [$WHT$default_value$NRM]: $WHT";
2024 $new_show = <STDIN>;
2025 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2026 return "true";
2027 }
2028 return "false";
2029}
826b7f71 2030
8c21da0c 2031sub command39 {
eaace00e 2032 print "";
2033 print "\n";
2034
2035 if ( lc($default_use_mdn) eq "true" ) {
2036 $default_value = "y";
2037 } else {
2038 $default_value = "n";
2039 }
2040
2041 print "Enable support for read/delivery receipt support (y/n) [$WHT$default_value$NRM]: $WHT";
2042 $new_show = <STDIN>;
2043 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2044 return "true";
2045 }
2046 return "false";
8c21da0c 2047}
2048
8a7d0669 2049sub command310 {
2eec12b5 2050 print "This allows you to prevent the editing of the user's name and ";
2051 print "email address. This is mainly useful when used with the ";
8a7d0669 2052 print "retrieveuserdata plugin\n";
2053 print "\n";
eaace00e 2054
2055 if ( lc($edit_identity) eq "true" ) {
8a7d0669 2056 $default_value = "y";
2057 } else {
2058 $default_value = "n";
2059 }
2eec12b5 2060 print "Allow editing of user's identity? (y/n) [$WHT$default_value$NRM]: $WHT";
8a7d0669 2061 $new_edit = <STDIN>;
eaace00e 2062 if ( ( $new_edit =~ /^y\n/i ) || ( ( $new_edit =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
8a7d0669 2063 $edit_identity = "true";
2eec12b5 2064 $edit_name = "true";
8a7d0669 2065 } else {
2066 $edit_identity = "false";
2eec12b5 2067 $edit_name = command311();
8a7d0669 2068 }
2069 return $edit_identity;
2070}
2071
2072sub command311 {
2eec12b5 2073 print "As a follow-up, this option allows you to choose if the user ";
2074 print "can edit their full name even when you don't want them to ";
2075 print "change their username\n";
8a7d0669 2076 print "\n";
2077
eaace00e 2078 if ( lc($edit_name) eq "true" ) {
8a7d0669 2079 $default_value = "y";
2080 } else {
2081 $default_value = "n";
2082 }
2083 print "Allow editing of the users full name? (y/n) [$WHT$default_value$NRM]: $WHT";
2084 $new_edit = <STDIN>;
eaace00e 2085 if ( ( $new_edit =~ /^y\n/i ) || ( ( $new_edit =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
8a7d0669 2086 $edit_name = "true";
2087 } else {
2088 $edit_name = "false";
2089 }
2090 return $edit_name;
2091}
8c21da0c 2092
7c612fdd 2093sub command312 {
2094 print "This option allows you to choose if users can use thread sorting\n";
2095 print "Your IMAP server must support the THREAD command for this to work\n";
aa0da530 2096 print "PHP versions later than 4.0.3 recommended\n";
7c612fdd 2097 print "\n";
2098
2099 if ( lc($allow_thread_sort) eq "true" ) {
2100 $default_value = "y";
2101 } else {
2102 $default_value = "n";
2103 }
2104 print "Allow server side thread sorting? (y/n) [$WHT$default_value$NRM]: $WHT";
2105 $allow_thread_sort = <STDIN>;
2106 if ( ( $allow_thread_sort =~ /^y\n/i ) || ( ( $allow_thread_sort =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2107 $allow_thread_sort = "true";
2108 } else {
2109 $allow_thread_sort = "false";
2110 }
2111 return $allow_thread_sort;
2112}
2113
aa0da530 2114sub command313 {
2115 print "This option allows you to choose if SM uses server-side sorting\n";
2116 print "Your IMAP server must support the SORT command for this to work\n";
2117 print "\n";
2118
2119 if ( lc($allow_server_sort) eq "true" ) {
2120 $default_value = "y";
2121 } else {
2122 $default_value = "n";
2123 }
2124 print "Allow server-side sorting? (y/n) [$WHT$default_value$NRM]: $WHT";
2125 $allow_server_sort = <STDIN>;
2126 if ( ( $allow_server_sort =~ /^y\n/i ) || ( ( $allow_server_sort =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2127 $allow_server_sort = "true";
2128 } else {
2129 $allow_server_sort = "false";
2130 }
2131 return $allow_server_sort;
2132}
2133
65ffb3ce 2134sub command314 {
2135 print "This option allows you to choose if SM uses charset search\n";
2136 print "Your IMAP server must support the SEARCH CHARSET command for this to work\n";
2137 print "\n";
2138
2139 if ( lc($allow_charset_search) eq "true" ) {
2140 $default_value = "y";
2141 } else {
2142 $default_value = "n";
2143 }
2144 print "Allow charset searching? (y/n) [$WHT$default_value$NRM]: $WHT";
2145 $allow_charset_search = <STDIN>;
2146 if ( ( $allow_charset_search =~ /^y\n/i ) || ( ( $allow_charset_search =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2147 $allow_charset_search = "true";
2148 } else {
2149 $allow_charset_search = "false";
2150 }
2151 return $allow_charset_search;
2152}
2153
3c7ee482 2154sub command315 {
2155 print "This option allows you to enable unique identifier (UID) support.\n";
2156 print "\n";
2157
2158 if ( lc($uid_support) eq "true" ) {
2159 $default_value = "y";
2160 } else {
2161 $default_value = "n";
2162 }
2163 print "Enable Unique identifier (UID) support? (y/n) [$WHT$default_value$NRM]: $WHT";
2164 $uid_support = <STDIN>;
2165 if ( ( $uid_support =~ /^y\n/i ) || ( ( $uid_support =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2166 $uid_support = "true";
2167 } else {
2168 $uid_support = "false";
2169 }
2170 return $uid_support;
2171}
2172
6c499577 2173sub command316 {
2174 print "This option allows you to change the name of the PHP session used\n";
2175 print "by SquirrelMail. Unless you know what you are doing, you probably\n";
2176 print "don't need or want to change this from the default of SQMSESSID.\n";
2177 print "[$WHT$session_name$NRM]: $WHT";
2178 $new_session_name = <STDIN>;
2179 chomp($new_session_name);
6614128e 2180 if ( $new_session_name eq "" ) {
6c499577 2181 $new_session_name = $session_name;
2182 }
2183 return $new_session_name;
2184}
2185
2186
65ffb3ce 2187
ccfb2029 2188sub command41 {
2eec12b5 2189 print "\nDefine the themes that you wish to use. If you have added ";
2190 print "a theme of your own, just follow the instructions (?) about how to add ";
eaace00e 2191 print "them. You can also change the default theme.\n";
2192 print "[theme] command (?=help) > ";
2193 $input = <STDIN>;
2194 $input =~ s/[\r|\n]//g;
2195 while ( $input ne "d" ) {
2196 if ( $input =~ /^\s*l\s*/i ) {
2197 $count = 0;
2198 while ( $count <= $#theme_name ) {
2199 if ( $count == $theme_default ) {
2200 print " *";
2201 } else {
2202 print " ";
2203 }
2eec12b5 2204 if ( $count < 10 ) {
2205 print " ";
2206 }
eaace00e 2207 $name = $theme_name[$count];
2eec12b5 2208 $num_spaces = 35 - length($name);
eaace00e 2209 for ( $i = 0 ; $i < $num_spaces ; $i++ ) {
2210 $name = $name . " ";
2211 }
2212
2213 print " $count. $name";
2214 print "($theme_path[$count])\n";
2215
2216 $count++;
ccfb2029 2217 }
eaace00e 2218 } elsif ( $input =~ /^\s*m\s*[0-9]+/i ) {
2219 $old_def = $theme_default;
2220 $theme_default = $input;
2221 $theme_default =~ s/^\s*m\s*//;
2222 if ( ( $theme_default > $#theme_name ) || ( $theme_default < 0 ) ) {
2223 print "Cannot set default theme to $theme_default. That theme does not exist.\n";
2224 $theme_default = $old_def;
ccfb2029 2225 }
eaace00e 2226 } elsif ( $input =~ /^\s*\+/ ) {
2227 print "What is the name of this theme: ";
2228 $name = <STDIN>;
2229 $name =~ s/[\r|\n]//g;
2230 $theme_name[ $#theme_name + 1 ] = $name;
2231 print "Be sure to put ../themes/ before the filename.\n";
2232 print "What file is this stored in (ex: ../themes/default_theme.php): ";
2233 $name = <STDIN>;
2234 $name =~ s/[\r|\n]//g;
2235 $theme_path[ $#theme_path + 1 ] = $name;
2236 } elsif ( $input =~ /^\s*-\s*[0-9]?/ ) {
2237 if ( $input =~ /[0-9]+\s*$/ ) {
2238 $rem_num = $input;
2239 $rem_num =~ s/^\s*-\s*//g;
2240 $rem_num =~ s/\s*$//;
2241 } else {
2242 $rem_num = $#theme_name;
ccfb2029 2243 }
eaace00e 2244 if ( $rem_num == $theme_default ) {
2245 print "You cannot remove the default theme!\n";
2246 } else {
2247 $count = 0;
2248 @new_theme_name = ();
2249 @new_theme_path = ();
2250 while ( $count <= $#theme_name ) {
2251 if ( $count != $rem_num ) {
2252 @new_theme_name = ( @new_theme_name, $theme_name[$count] );
2253 @new_theme_path = ( @new_theme_path, $theme_path[$count] );
2254 }
2255 $count++;
2256 }
2257 @theme_name = @new_theme_name;
2258 @theme_path = @new_theme_path;
2259 if ( $theme_default > $rem_num ) {
2260 $theme_default--;
2261 }
8442ac08 2262 }
eaace00e 2263 } elsif ( $input =~ /^\s*t\s*/i ) {
2264 print "\nStarting detection...\n\n";
2265
2266 opendir( DIR, "../themes" );
2267 @files = grep { /\.php$/i } readdir(DIR);
2268 $cnt = 0;
2269 while ( $cnt <= $#files ) {
2270 $filename = "../themes/" . $files[$cnt];
2271 if ( $filename ne "../themes/index.php" ) {
2272 $found = 0;
2273 for ( $x = 0 ; $x <= $#theme_path ; $x++ ) {
2274 if ( $theme_path[$x] eq $filename ) {
2275 $found = 1;
2276 }
2277 }
2278 if ( $found != 1 ) {
2279 print "** Found theme: $filename\n";
2280 print " What is its name? ";
2281 $nm = <STDIN>;
2282 $nm =~ s/[\n|\r]//g;
2283 $theme_name[ $#theme_name + 1 ] = $nm;
2284 $theme_path[ $#theme_path + 1 ] = $filename;
2285 }
2286 }
2287 $cnt++;
8442ac08 2288 }
eaace00e 2289 print "\n";
2290 for ( $cnt = 0 ; $cnt <= $#theme_path ; $cnt++ ) {
2291 $filename = $theme_path[$cnt];
2292 if ( !( -e $filename ) ) {
2293 print " Removing $filename (file not found)\n";
2294 $offset = 0;
2295 @new_theme_name = ();
2296 @new_theme_path = ();
2297 for ( $x = 0 ; $x < $#theme_path ; $x++ ) {
2298 if ( $theme_path[$x] eq $filename ) {
2299 $offset = 1;
2300 }
2301 if ( $offset == 1 ) {
2302 $new_theme_name[$x] = $theme_name[ $x + 1 ];
2303 $new_theme_path[$x] = $theme_path[ $x + 1 ];
2304 } else {
2305 $new_theme_name[$x] = $theme_name[$x];
2306 $new_theme_path[$x] = $theme_path[$x];
2307 }
2308 }
2309 @theme_name = @new_theme_name;
2310 @theme_path = @new_theme_path;
2311 }
2312 }
2313 print "\nDetection complete!\n\n";
2314
2315 closedir DIR;
2316 } elsif ( $input =~ /^\s*\?\s*/ ) {
2317 print ".-------------------------.\n";
2318 print "| t (detect themes) |\n";
2319 print "| + (add theme) |\n";
2320 print "| - N (remove theme) |\n";
2321 print "| m N (mark default) |\n";
2322 print "| l (list themes) |\n";
2323 print "| d (done) |\n";
2324 print "`-------------------------'\n";
2325 }
2326 print "[theme] command (?=help) > ";
2327 $input = <STDIN>;
2328 $input =~ s/[\r|\n]//g;
2329 }
2330}
ccfb2029 2331
6f3bfa54 2332# Theme - CSS file
2333sub command42 {
eaace00e 2334 print "You may specify a cascading style-sheet (CSS) file to be included\n";
2335 print "on each html page generated by SquirrelMail. The CSS file is useful\n";
2336 print "for specifying a site-wide font. If you're not familiar with CSS\n";
2337 print "files, leave this blank.\n";
2338 print "\n";
2339 print "To clear out an existing value, just type a space for the input.\n";
2340 print "\n";
25be56ab 2341 print "Please be aware of the following: \n";
2342 print " - Relative URLs are relative to the config dir\n";
2343 print " to use the themes directory, use ../themes/css/newdefault.css\n";
2344 print " - To specify a css file defined outside the SquirrelMail source tree\n";
2345 print " use the absolute URL the webserver would use to include the file\n";
2346 print " e.g. http://some.host.com/css/mystyle.css or /css/mystyle.css\n";
8bd9e0dd 2347 print "\n";
eaace00e 2348 print "[$WHT$theme_css$NRM]: $WHT";
2349 $new_theme_css = <STDIN>;
6f3bfa54 2350
eaace00e 2351 if ( $new_theme_css eq "\n" ) {
2352 $new_theme_css = $theme_css;
2353 } else {
2354 $new_theme_css =~ s/[\r|\n]//g;
2355 }
2356 $new_theme_css =~ s/^\s*//;
2357 return $new_theme_css;
2358}
6f3bfa54 2359
1e0628fb 2360sub command61 {
eaace00e 2361 print "You can now define different LDAP servers.\n";
2362 print "[ldap] command (?=help) > ";
2363 $input = <STDIN>;
2364 $input =~ s/[\r|\n]//g;
2365 while ( $input ne "d" ) {
2366 if ( $input =~ /^\s*l\s*/i ) {
2367 $count = 0;
2368 while ( $count <= $#ldap_host ) {
2369 print "$count. $ldap_host[$count]\n";
2370 print " base: $ldap_base[$count]\n";
2371 if ( $ldap_charset[$count] ) {
2372 print " charset: $ldap_charset[$count]\n";
2373 }
2374 if ( $ldap_port[$count] ) {
2375 print " port: $ldap_port[$count]\n";
2376 }
2377 if ( $ldap_name[$count] ) {
2378 print " name: $ldap_name[$count]\n";
2379 }
2380 if ( $ldap_maxrows[$count] ) {
2381 print " maxrows: $ldap_maxrows[$count]\n";
2382 }
2383 print "\n";
2384 $count++;
a93b12ba 2385 }
eaace00e 2386 } elsif ( $input =~ /^\s*\+/ ) {
2387 $sub = $#ldap_host + 1;
2388
2389 print "First, we need to have the hostname or the IP address where\n";
2390 print "this LDAP server resides. Example: ldap.bigfoot.com\n";
2391 print "hostname: ";
2392 $name = <STDIN>;
2393 $name =~ s/[\r|\n]//g;
2394 $ldap_host[$sub] = $name;
2395
2396 print "\n";
2397
2398 print "Next, we need the server root (base dn). For this, an empty\n";
2399 print "string is allowed.\n";
2400 print "Example: ou=member_directory,o=netcenter.com\n";
2401 print "base: ";
2402 $name = <STDIN>;
2403 $name =~ s/[\r|\n]//g;
2404 $ldap_base[$sub] = $name;
2405
2406 print "\n";
2407
2408 print "This is the TCP/IP port number for the LDAP server. Default\n";
2409 print "port is 389. This is optional. Press ENTER for default.\n";
2410 print "port: ";
2411 $name = <STDIN>;
2412 $name =~ s/[\r|\n]//g;
2413 $ldap_port[$sub] = $name;
2414
2415 print "\n";
2416
2417 print "This is the charset for the server. Default is utf-8. This\n";
2418 print "is also optional. Press ENTER for default.\n";
2419 print "charset: ";
2420 $name = <STDIN>;
2421 $name =~ s/[\r|\n]//g;
2422 $ldap_charset[$sub] = $name;
2423
2424 print "\n";
2425
2426 print "This is the name for the server, used to tag the results of\n";
2427 print "the search. Default it \"LDAP: hostname\". Press ENTER for default\n";
2428 print "name: ";
2429 $name = <STDIN>;
2430 $name =~ s/[\r|\n]//g;
2431 $ldap_name[$sub] = $name;
2432
2433 print "\n";
2434
2435 print "You can specify the maximum number of rows in the search result.\n";
2436 print "Default is unlimited. Press ENTER for default.\n";
2437 print "maxrows: ";
2438 $name = <STDIN>;
2439 $name =~ s/[\r|\n]//g;
2440 $ldap_maxrows[$sub] = $name;
2441
a93b12ba 2442 print "\n";
eaace00e 2443
2444 } elsif ( $input =~ /^\s*-\s*[0-9]?/ ) {
2445 if ( $input =~ /[0-9]+\s*$/ ) {
2446 $rem_num = $input;
2447 $rem_num =~ s/^\s*-\s*//g;
2448 $rem_num =~ s/\s*$//;
2449 } else {
2450 $rem_num = $#ldap_host;
2451 }
2452 $count = 0;
2453 @new_ldap_host = ();
2454 @new_ldap_base = ();
2455 @new_ldap_port = ();
2456 @new_ldap_name = ();
2457 @new_ldap_charset = ();
2458 @new_ldap_maxrows = ();
2459
2460 while ( $count <= $#ldap_host ) {
2461 if ( $count != $rem_num ) {
2462 @new_ldap_host = ( @new_ldap_host, $ldap_host[$count] );
2463 @new_ldap_base = ( @new_ldap_base, $ldap_base[$count] );
2464 @new_ldap_port = ( @new_ldap_port, $ldap_port[$count] );
2465 @new_ldap_name = ( @new_ldap_name, $ldap_name[$count] );
2466 @new_ldap_charset = ( @new_ldap_charset, $ldap_charset[$count] );
2467 @new_ldap_maxrows = ( @new_ldap_maxrows, $ldap_maxrows[$count] );
2468 }
2469 $count++;
1e0628fb 2470 }
eaace00e 2471 @ldap_host = @new_ldap_host;
2472 @ldap_base = @new_ldap_base;
2473 @ldap_port = @new_ldap_port;
2474 @ldap_name = @new_ldap_name;
2475 @ldap_charset = @new_ldap_charset;
2476 @ldap_maxrows = @new_ldap_maxrows;
2477 } elsif ( $input =~ /^\s*\?\s*/ ) {
2478 print ".-------------------------.\n";
2479 print "| + (add host) |\n";
2480 print "| - N (remove host) |\n";
2481 print "| l (list hosts) |\n";
2482 print "| d (done) |\n";
2483 print "`-------------------------'\n";
2484 }
2485 print "[ldap] command (?=help) > ";
2486 $input = <STDIN>;
2487 $input =~ s/[\r|\n]//g;
2488 }
2489}
1e0628fb 2490
3806fa52 2491sub command62 {
eaace00e 2492 print "Some of our developers have come up with very good javascript interface\n";
2493 print "for searching through address books, however, our original goals said\n";
2494 print "that we would be 100% HTML. In order to make it possible to use their\n";
2495 print "interface, and yet stick with our goals, we have also written a plain\n";
2496 print "HTML version of the search. Here, you can choose which version to use.\n";
2497 print "\n";
2498 print "This is just the default value. It is also a user option that each\n";
2499 print "user can configure individually\n";
2500 print "\n";
2501
2502 if ( lc($default_use_javascript_addr_book) eq "true" ) {
2503 $default_value = "y";
2504 } else {
2505 $default_use_javascript_addr_book = "false";
2506 $default_value = "n";
2507 }
2508 print "Use javascript version by default (y/n) [$WHT$default_value$NRM]: $WHT";
2509 $new_show = <STDIN>;
2510 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2511 $default_use_javascript_addr_book = "true";
2512 } else {
2513 $default_use_javascript_addr_book = "false";
2514 }
2515 return $default_use_javascript_addr_book;
3806fa52 2516}
1e0628fb 2517
497203d4 2518sub command91 {
eaace00e 2519 print "If you want to store your users address book details in a database then\n";
2520 print "you need to set this DSN to a valid value. The format for this is:\n";
2521 print "mysql://user:pass\@hostname/dbname\n";
2522 print "Where mysql can be one of the databases PHP supports, the most common\n";
2523 print "of these are mysql, msql and pgsql\n";
2524 print "If the DSN is left empty (hit space and then return) the database\n";
2525 print "related code for address books will not be used\n";
2526 print "\n";
2527
2528 if ( $addrbook_dsn eq "" ) {
2529 $default_value = "Disabled";
2530 } else {
2531 $default_value = $addrbook_dsn;
2532 }
2533 print "[$WHT$addrbook_dsn$NRM]: $WHT";
2534 $new_dsn = <STDIN>;
2535 if ( $new_dsn eq "\n" ) {
2536 $new_dsn = "";
2537 } else {
2538 $new_dsn =~ s/[\r|\n]//g;
2539 $new_dsn =~ s/^\s+$//g;
2540 }
2541 return $new_dsn;
497203d4 2542}
ccfb2029 2543
4f40a59d 2544sub command92 {
eaace00e 2545 print "This is the name of the table you want to store the address book\n";
2546 print "data in, it defaults to 'address'\n";
2547 print "\n";
2548 print "[$WHT$addrbook_table$NRM]: $WHT";
2549 $new_table = <STDIN>;
2550 if ( $new_table eq "\n" ) {
2551 $new_table = $addrbook_table;
2552 } else {
2553 $new_table =~ s/[\r|\n]//g;
2554 }
2555 return $new_table;
4f40a59d 2556}
2557
3499f99f 2558sub command93 {
2559 print "If you want to store your users preferences in a database then\n";
2560 print "you need to set this DSN to a valid value. The format for this is:\n";
2561 print "mysql://user:pass\@hostname/dbname\n";
2562 print "Where mysql can be one of the databases PHP supports, the most common\n";
2563 print "of these are mysql, msql and pgsql\n";
2564 print "If the DSN is left empty (hit space and then return) the database\n";
2565 print "related code for address books will not be used\n";
2566 print "\n";
2567
eaace00e 2568 if ( $prefs_dsn eq "" ) {
3499f99f 2569 $default_value = "Disabled";
2570 } else {
2571 $default_value = $prefs_dsn;
2572 }
2573 print "[$WHT$prefs_dsn$NRM]: $WHT";
2574 $new_dsn = <STDIN>;
eaace00e 2575 if ( $new_dsn eq "\n" ) {
3499f99f 2576 $new_dsn = "";
2577 } else {
2578 $new_dsn =~ s/[\r|\n]//g;
2579 $new_dsn =~ s/^\s+$//g;
2580 }
2581 return $new_dsn;
2582}
2583
2584sub command94 {
2585 print "This is the name of the table you want to store the preferences\n";
99a6c222 2586 print "data in, it defaults to 'userprefs'\n";
3499f99f 2587 print "\n";
2588 print "[$WHT$prefs_table$NRM]: $WHT";
2589 $new_table = <STDIN>;
eaace00e 2590 if ( $new_table eq "\n" ) {
3499f99f 2591 $new_table = $prefs_table;
2592 } else {
2593 $new_table =~ s/[\r|\n]//g;
2594 }
2595 return $new_table;
eaace00e 2596}
3499f99f 2597
99a6c222 2598sub command95 {
2599 print "This is the name of the field in which you want to store the\n";
2600 print "username of the person the prefs are for. It default to 'user'\n";
2601 print "which clashes with a reserved keyword in PostgreSQL so this\n";
2602 print "will need to be changed for that database at least\n";
2603 print "\n";
2604 print "[$WHT$prefs_user_field$NRM]: $WHT";
2605 $new_field = <STDIN>;
2606 if ( $new_field eq "\n" ) {
2607 $new_field = $prefs_user_field;
2608 } else {
2609 $new_field =~ s/[\r|\n]//g;
2610 }
2611 return $new_field;
2612}
2613
2614sub command96 {
2615 print "This is the name of the field in which you want to store the\n";
2616 print "preferences keyword. It defaults to 'prefkey'\n";
2617 print "\n";
2618 print "[$WHT$prefs_key_field$NRM]: $WHT";
2619 $new_field = <STDIN>;
2620 if ( $new_field eq "\n" ) {
2621 $new_field = $prefs_key_field;
2622 } else {
2623 $new_field =~ s/[\r|\n]//g;
2624 }
2625 return $new_field;
2626}
2627
2628sub command97 {
2629 print "This is the name of the field in which you want to store the\n";
2630 print "preferences value. It defaults to 'prefval'\n";
2631 print "\n";
2632 print "[$WHT$prefs_val_field$NRM]: $WHT";
2633 $new_field = <STDIN>;
2634 if ( $new_field eq "\n" ) {
2635 $new_field = $prefs_val_field;
2636 } else {
2637 $new_field =~ s/[\r|\n]//g;
2638 }
2639 return $new_field;
2640}
2641
ccfb2029 2642sub save_data {
ebd13f55 2643 $tab = " ";
eaace00e 2644 if ( open( CF, ">config.php" ) ) {
ebd13f55 2645 print CF "<?php\n";
2646 print CF "\n";
eaace00e 2647
ebd13f55 2648 print CF "/**\n";
2649 print CF " * SquirrelMail Configuration File\n";
2650 print CF " * Created using the configure script, conf.pl\n";
2651 print CF " */\n";
2652 print CF "\n";
93c06fa2 2653 print CF "global \$version;\n";
2654
ebd13f55 2655 if ($print_config_version) {
eaace00e 2656 print CF "\$config_version = '$print_config_version';\n";
ebd13f55 2657 }
254ded61 2658 # integer
2659 print CF "\$config_use_color = $config_use_color;\n";
ebd13f55 2660 print CF "\n";
254ded61 2661
2662 # string
d756b071 2663 print CF "\$org_name = \"$org_name\";\n";
254ded61 2664 # string
8bd9e0dd 2665 print CF "\$org_logo = " . &change_to_SM_path($org_logo) . ";\n";
b6e0c3b6 2666 $org_logo_width |= 0;
2667 $org_logo_height |= 0;
254ded61 2668 # string
80519ece 2669 print CF "\$org_logo_width = '$org_logo_width';\n";
254ded61 2670 # string
2671 print CF "\$org_logo_height = '$org_logo_height';\n";
2672 # string that can contain variables.
12947430 2673 print CF "\$org_title = \"$org_title\";\n";
254ded61 2674 # string
8bd9e0dd 2675 print CF "\$signout_page = " . &change_to_SM_path($signout_page) . ";\n";
254ded61 2676 # string
3d043efc 2677 print CF "\$frame_top = '$frame_top';\n";
ebd13f55 2678 print CF "\n";
eaace00e 2679
0ae4c1f2 2680 print CF "\$provider_uri = '$provider_uri';\n";
2681 print CF "\n";
2682
2683 print CF "\$provider_name = '$provider_name';\n";
2684 print CF "\n";
2685
254ded61 2686 # string that can contain variables
2687 print CF "\$motd = \"$motd\";\n";
ebd13f55 2688 print CF "\n";
254ded61 2689
2690 # string
ebd13f55 2691 print CF "\$squirrelmail_default_language = '$squirrelmail_default_language';\n";
2692 print CF "\n";
eaace00e 2693
254ded61 2694 # string
ebd13f55 2695 print CF "\$domain = '$domain';\n";
254ded61 2696 # string
ebd13f55 2697 print CF "\$imapServerAddress = '$imapServerAddress';\n";
254ded61 2698 # integer
2699 print CF "\$imapPort = $imapPort;\n";
2700 # boolean
2701 print CF "\$useSendmail = $useSendmail;\n";
2702 # string
ebd13f55 2703 print CF "\$smtpServerAddress = '$smtpServerAddress';\n";
254ded61 2704 # integer
2705 print CF "\$smtpPort = $smtpPort;\n";
2706 # string
ebd13f55 2707 print CF "\$sendmail_path = '$sendmail_path';\n";
254ded61 2708 # boolean
47a29326 2709# print CF "\$use_authenticated_smtp = $use_authenticated_smtp;\n";
254ded61 2710 # boolean
2711 print CF "\$pop_before_smtp = $pop_before_smtp;\n";
2712 # string
ebd13f55 2713 print CF "\$imap_server_type = '$imap_server_type';\n";
254ded61 2714 # boolean
374726c9 2715 print CF "\$invert_time = $invert_time;\n";
254ded61 2716 # string
ebd13f55 2717 print CF "\$optional_delimiter = '$optional_delimiter';\n";
2718 print CF "\n";
eaace00e 2719
254ded61 2720 # string
ebd13f55 2721 print CF "\$default_folder_prefix = '$default_folder_prefix';\n";
254ded61 2722 # string
ebd13f55 2723 print CF "\$trash_folder = '$trash_folder';\n";
254ded61 2724 # string
ebd13f55 2725 print CF "\$sent_folder = '$sent_folder';\n";
254ded61 2726 # string
ebd13f55 2727 print CF "\$draft_folder = '$draft_folder';\n";
254ded61 2728 # boolean
2729 print CF "\$default_move_to_trash = $default_move_to_trash;\n";
2730 # boolean
2731 print CF "\$default_move_to_sent = $default_move_to_sent;\n";
2732 # boolean
2733 print CF "\$default_save_as_draft = $default_save_as_draft;\n";
2734 # boolean
2735 print CF "\$show_prefix_option = $show_prefix_option;\n";
2736 # boolean
2737 print CF "\$list_special_folders_first = $list_special_folders_first;\n";
2738 # boolean
2739 print CF "\$use_special_folder_color = $use_special_folder_color;\n";
2740 # boolean
2741 print CF "\$auto_expunge = $auto_expunge;\n";
2742 # boolean
2743 print CF "\$default_sub_of_inbox = $default_sub_of_inbox;\n";
2744 # boolean
2745 print CF "\$show_contain_subfolders_option = $show_contain_subfolders_option;\n";
2746 # integer
2747 print CF "\$default_unseen_notify = $default_unseen_notify;\n";
2748 # integer
2749 print CF "\$default_unseen_type = $default_unseen_type;\n";
2750 # boolean
2751 print CF "\$auto_create_special = $auto_create_special;\n";
2752 # boolean
2753 print CF "\$delete_folder = $delete_folder;\n";
ca85aabe 2754 # boolean
2755 print CF "\$noselect_fix_enable = $noselect_fix_enable;\n";
2756
ebd13f55 2757 print CF "\n";
eaace00e 2758
254ded61 2759 # string
ebd13f55 2760 print CF "\$default_charset = '$default_charset';\n";
254ded61 2761 # string
8bd9e0dd 2762 print CF "\$data_dir = " . &change_to_SM_path($data_dir) . ";\n";
254ded61 2763 # string that can contain a variable
8bd9e0dd 2764 print CF "\$attachment_dir = " . &change_to_SM_path($attachment_dir) . ";\n";
254ded61 2765 # integer
2766 print CF "\$dir_hash_level = $dir_hash_level;\n";
2767 # string
80519ece 2768 print CF "\$default_left_size = '$default_left_size';\n";
254ded61 2769 # boolean
2770 print CF "\$force_username_lowercase = $force_username_lowercase;\n";
2771 # boolean
2772 print CF "\$default_use_priority = $default_use_priority;\n";
2773 # boolean
2774 print CF "\$hide_sm_attributions = $hide_sm_attributions;\n";
2775 # boolean
2776 print CF "\$default_use_mdn = $default_use_mdn;\n";
2777 # boolean
2778 print CF "\$edit_identity = $edit_identity;\n";
2779 # boolean
2780 print CF "\$edit_name = $edit_name;\n";
2781 # boolean
2782 print CF "\$allow_thread_sort = $allow_thread_sort;\n";
2783 # boolean
2784 print CF "\$allow_server_sort = $allow_server_sort;\n";
65ffb3ce 2785 # boolean
3c7ee482 2786 print CF "\$allow_charset_search = $allow_charset_search;\n";
2787 # boolean
2788 print CF "\$uid_support = $uid_support;\n";
ebd13f55 2789 print CF "\n";
254ded61 2790
2791 # all plugins are strings
eaace00e 2792 for ( $ct = 0 ; $ct <= $#plugins ; $ct++ ) {
2793 print CF "\$plugins[$ct] = '$plugins[$ct]';\n";
ebd13f55 2794 }
2795 print CF "\n";
eaace00e 2796
254ded61 2797 # strings
8bd9e0dd 2798 print CF "\$theme_css = " . &change_to_SM_path($theme_css) . ";\n";
a73af766 2799 if ( $theme_default eq '' ) { $theme_default = '0'; }
57c6fabc 2800 print CF "\$theme_default = $theme_default;\n";
2801
eaace00e 2802 for ( $count = 0 ; $count <= $#theme_name ; $count++ ) {
8bd9e0dd 2803 print CF "\$theme[$count]['PATH'] = " . &change_to_SM_path($theme_path[$count]) . ";\n";
eaace00e 2804 print CF "\$theme[$count]['NAME'] = '$theme_name[$count]';\n";
ebd13f55 2805 }
2806 print CF "\n";
eaace00e 2807
2808 if ( $default_use_javascript_addr_book ne "true" ) {
2809 $default_use_javascript_addr_book = "false";
2810 }
254ded61 2811
2812 # boolean
ebd13f55 2813 print CF "\$default_use_javascript_addr_book = $default_use_javascript_addr_book;\n";
eaace00e 2814 for ( $count = 0 ; $count <= $#ldap_host ; $count++ ) {
2815 print CF "\$ldap_server[$count] = array(\n";
254ded61 2816 # string
eaace00e 2817 print CF " 'host' => '$ldap_host[$count]',\n";
254ded61 2818 # string
eaace00e 2819 print CF " 'base' => '$ldap_base[$count]'";
2820 if ( $ldap_name[$count] ) {
2821 print CF ",\n";
254ded61 2822 # string
eaace00e 2823 print CF " 'name' => '$ldap_name[$count]'";
2824 }
2825 if ( $ldap_port[$count] ) {
2826 print CF ",\n";
254ded61 2827 # integer
2828 print CF " 'port' => $ldap_port[$count]";
eaace00e 2829 }
2830 if ( $ldap_charset[$count] ) {
2831 print CF ",\n";
254ded61 2832 # string
eaace00e 2833 print CF " 'charset' => '$ldap_charset[$count]'";
2834 }
2835 if ( $ldap_maxrows[$count] ) {
2836 print CF ",\n";
254ded61 2837 # integer
2838 print CF " 'maxrows' => $ldap_maxrows[$count]";
eaace00e 2839 }
2840 print CF "\n";
2841 print CF ");\n";
2842 print CF "\n";
ebd13f55 2843 }
b622e1b8 2844
254ded61 2845 # string
4f40a59d 2846 print CF "\$addrbook_dsn = '$addrbook_dsn';\n";
254ded61 2847 # string
4f40a59d 2848 print CF "\$addrbook_table = '$addrbook_table';\n\n";
254ded61 2849 # string
3499f99f 2850 print CF "\$prefs_dsn = '$prefs_dsn';\n";
254ded61 2851 # string
99a6c222 2852 print CF "\$prefs_table = '$prefs_table';\n";
254ded61 2853 # string
99a6c222 2854 print CF "\$prefs_user_field = '$prefs_user_field';\n";
254ded61 2855 # string
99a6c222 2856 print CF "\$prefs_key_field = '$prefs_key_field';\n";
254ded61 2857 # string
99a6c222 2858 print CF "\$prefs_val_field = '$prefs_val_field';\n";
52ed2f88 2859 # boolean
3d01b823 2860 print CF "\$no_list_for_subscribe = $no_list_for_subscribe;\n";
47a29326 2861
2862 # string
3d01b823 2863 print CF "\$smtp_auth_mech = '$smtp_auth_mech';\n";
2864 print CF "\$imap_auth_mech = '$imap_auth_mech';\n";
47a29326 2865 # boolean
3d01b823 2866 print CF "\$use_imap_tls = $use_imap_tls;\n";
2867 print CF "\$use_smtp_tls = $use_smtp_tls;\n";
2868
6c499577 2869 print CF "\$session_name = '$session_name';\n";
2870
3d01b823 2871 print CF "\n";
4a809164 2872 print CF "\@include SM_PATH . 'config/config_local.php';\n";
3d01b823 2873
2874 print CF "\n/**\n";
2875 print CF " * Make sure there are no characters after the PHP closing\n";
2876 print CF " * tag below (including newline characters and whitespace).\n";
2877 print CF " * Otherwise, that character will cause the headers to be\n";
2878 print CF " * sent and regular output to begin, which will majorly screw\n";
2879 print CF " * things up when we try to send more headers later.\n";
2880 print CF " */\n";
2881 print CF "?>";
2882
2883 close CF;
ebd13f55 2884
3d01b823 2885 print "Data saved in config.php\n";
ebd13f55 2886 } else {
2887 print "Error saving config.php: $!\n";
2888 }
911ad01c 2889}
a93b12ba 2890
2891sub set_defaults {
f8c17cdd 2892 clear_screen();
eaace00e 2893 print $WHT. "SquirrelMail Configuration : " . $NRM;
2894 if ( $config == 1 ) { print "Read: config.php"; }
2895 elsif ( $config == 2 ) { print "Read: config_default.php"; }
2896 print "\n";
2897 print "---------------------------------------------------------\n";
2898
2899 print "While we have been building SquirrelMail, we have discovered some\n";
2900 print "preferences that work better with some servers that don't work so\n";
2901 print "well with others. If you select your IMAP server, this option will\n";
2902 print "set some pre-defined settings for that server.\n";
2903 print "\n";
2904 print "Please note that you will still need to go through and make sure\n";
2905 print "everything is correct. This does not change everything. There are\n";
2906 print "only a few settings that this will change.\n";
2907 print "\n";
2908
2909 $continue = 0;
2910 while ( $continue != 1 ) {
2911 print "Please select your IMAP server:\n";
2912 print " cyrus = Cyrus IMAP server\n";
2913 print " uw = University of Washington's IMAP server\n";
2914 print " exchange = Microsoft Exchange IMAP server\n";
2915 print " courier = Courier IMAP server\n";
cfe486a7 2916 print " macosx = Mac OS X Mailserver\n";
063ed2b1 2917 print " mercury32 = Mercury/32\n";
eaace00e 2918 print " quit = Do not change anything\n";
2919 print "Command >> ";
2920 $server = <STDIN>;
2921 $server =~ s/[\r|\n]//g;
2922
2923 print "\n";
2924 if ( $server eq "cyrus" ) {
2925 $imap_server_type = "cyrus";
2926 $default_folder_prefix = "";
2927 $trash_folder = "INBOX.Trash";
2928 $sent_folder = "INBOX.Sent";
2929 $draft_folder = "INBOX.Drafts";
2930 $show_prefix_option = false;
2931 $default_sub_of_inbox = true;
2932 $show_contain_subfolders_option = false;
2933 $optional_delimiter = ".";
2934 $disp_default_folder_prefix = "<none>";
b79b84c2 2935 $force_username_lowercase = false;
eaace00e 2936
2937 $continue = 1;
2938 } elsif ( $server eq "uw" ) {
2939 $imap_server_type = "uw";
2940 $default_folder_prefix = "mail/";
2941 $trash_folder = "Trash";
2942 $sent_folder = "Sent";
2943 $draft_folder = "Drafts";
2944 $show_prefix_option = true;
2945 $default_sub_of_inbox = false;
2946 $show_contain_subfolders_option = true;
2947 $optional_delimiter = "/";
2948 $disp_default_folder_prefix = $default_folder_prefix;
2eec12b5 2949 $delete_folder = true;
b79b84c2 2950 $force_username_lowercase = true;
2eec12b5 2951
eaace00e 2952 $continue = 1;
2953 } elsif ( $server eq "exchange" ) {
2954 $imap_server_type = "exchange";
2955 $default_folder_prefix = "";
2956 $default_sub_of_inbox = true;
2957 $trash_folder = "INBOX/Deleted Items";
2958 $sent_folder = "INBOX/Sent Items";
2959 $drafts_folder = "INBOX/Drafts";
2960 $show_prefix_option = false;
2961 $show_contain_subfolders_option = false;
2962 $optional_delimiter = "detect";
2963 $disp_default_folder_prefix = "<none>";
b79b84c2 2964 $force_username_lowercase = true;
eaace00e 2965
2966 $continue = 1;
2967 } elsif ( $server eq "courier" ) {
2968 $imap_server_type = "courier";
2969 $default_folder_prefix = "INBOX.";
2970 $trash_folder = "Trash";
2971 $sent_folder = "Sent";
2972 $draft_folder = "Drafts";
2973 $show_prefix_option = false;
2974 $default_sub_of_inbox = false;
2975 $show_contain_subfolders_option = false;
2976 $optional_delimiter = ".";
2977 $disp_default_folder_prefix = $default_folder_prefix;
2eec12b5 2978 $delete_folder = true;
b79b84c2 2979 $force_username_lowercase = false;
2eec12b5 2980
cfe486a7 2981 $continue = 1;
2982 } elsif ( $server eq "macosx" ) {
2983 $imap_server_type = "macosx";
2984 $default_folder_prefix = "INBOX/";
2985 $trash_folder = "Trash";
2986 $sent_folder = "Sent";
2987 $draft_folder = "Drafts";
2988 $show_prefix_option = false;
2989 $default_sub_of_inbox = true;
2990 $show_contain_subfolders_option = false;
2991 $optional_delimiter = "detect";
2992 $allow_charset_search = false;
2993 $disp_default_folder_prefix = $default_folder_prefix;
eaace00e 2994
063ed2b1 2995 $continue = 1;
2996 } elsif ( $server eq "mercury32" ) {
2997 $imap_server_type = "mercury32";
2998 $default_folder_prefix = "";
2999 $trash_folder = "INBOX.Trash";
3000 $sent_folder = "INBOX.Sent";
3001 $draft_folder = "INBOX.Drafts";
3002 $show_prefix_option = false;
3003 $default_sub_of_inbox = true;
3004 $show_contain_subfolders_option = true;
3005 $optional_delimiter = "detect";
3006 $delete_folder = true;
3007 $force_username_lowercase = true;
3008
eaace00e 3009 $continue = 1;
3010 } elsif ( $server eq "quit" ) {
3011 $continue = 1;
3012 } else {
3013 $disp_default_folder_prefix = $default_folder_prefix;
3014 print "Unrecognized server: $server\n";
3015 print "\n";
3016 }
3017
3018 print " imap_server_type = $imap_server_type\n";
3019 print " default_folder_prefix = $disp_default_folder_prefix\n";
3020 print " trash_folder = $trash_folder\n";
3021 print " sent_folder = $sent_folder\n";
3022 print " draft_folder = $draft_folder\n";
3023 print " show_prefix_option = $show_prefix_option\n";
3024 print " default_sub_of_inbox = $default_sub_of_inbox\n";
3025 print "show_contain_subfolders_option = $show_contain_subfolders_option\n";
3026 print " optional_delimiter = $optional_delimiter\n";
2eec12b5 3027 print " delete_folder = $delete_folder\n";
b79b84c2 3028 print " force_username_lowercase = $force_username_lowercase\n";
eaace00e 3029 }
b79b84c2 3030 print "\nPress enter to continue...";
eaace00e 3031 $tmp = <STDIN>;
a93b12ba 3032}
8bd9e0dd 3033
8bd9e0dd 3034# This subroutine corrects relative paths to ensure they
3035# will work within the SM space. If the path falls within
3036# the SM directory tree, the SM_PATH variable will be
3037# prepended to the path, if not, then the path will be
e6566358 3038# converted to an absolute path, e.g.
2222aed0 3039# '../images/logo.gif' --> SM_PATH . 'images/logo.gif'
a2a74376 3040# '../../someplace/data' --> '/absolute/path/someplace/data'
2222aed0 3041# 'images/logo.gif' --> SM_PATH . 'config/images/logo.gif'
3042# '/absolute/path/logo.gif' --> '/absolute/path/logo.gif'
3043# 'http://whatever/' --> 'http://whatever'
b72da239 3044# $some_var/path --> "$some_var/path"
8bd9e0dd 3045sub change_to_SM_path() {
3046 my ($old_path) = @_;
3047 my $new_path = '';
3048 my @rel_path;
3049 my @abs_path;
3050 my $subdir;
3051
3052 # If the path is absolute, don't bother.
3053 return "\'" . $old_path . "\'" if ( $old_path eq '');
a28a56da 3054 return "\'" . $old_path . "\'" if ( $old_path =~ /^(\/|http)/ );
d3fb3870 3055 return "\'" . $old_path . "\'" if ( $old_path =~ /^\w:\// );
25be56ab 3056 return $old_path if ( $old_path =~ /^\'(\/|http)/ );
d3fb3870 3057 return $old_path if ( $old_path =~ /^\'\w:\// );
b72da239 3058 return $old_path if ( $old_path =~ /^SM_PATH/);
3059
3060 if ( $old_path =~ /^\$/ ) {
3061 # check if it's a single var, or a $var/path combination
3062 # if it's $var/path, enclose in ""
3063 if ( $old_path =~ /\// ) {
3064 return '"'.$old_path.'"';
3065 }
3066 return $old_path;
3067 }
93c06fa2 3068
25be56ab 3069 # Remove remaining '
3070 $old_path =~ s/\'//g;
3071
8bd9e0dd 3072 # For relative paths, split on '../'
3073 @rel_path = split(/\.\.\//, $old_path);
3074
3075 if ( $#rel_path > 1 ) {
3076 # more than two levels away. Make it absolute.
a2a74376 3077 @abs_path = split(/\//, $dir);
3078
3079 # Lop off the relative pieces of the absolute path..
3080 for ( $i = 0; $i <= $#rel_path; $i++ ) {
3081 pop @abs_path;
3082 shift @rel_path;
3083 }
3084 push @abs_path, @rel_path;
1df76076 3085 $new_path = "\'" . join('/', @abs_path) . "\'";
8bd9e0dd 3086 } elsif ( $#rel_path > 0 ) {
3087 # it's within the SM tree, prepend SM_PATH
3088 $new_path = $old_path;
3089 $new_path =~ s/^\.\.\//SM_PATH . \'/;
25be56ab 3090 $new_path .= "\'";
8bd9e0dd 3091 } else {
3092 # Last, it's a relative path without any leading '.'
e6566358 3093 # Prepend SM_PATH and config, since the paths are
3094 # relative to the config directory
3095 $new_path = "SM_PATH . \'config/" . $old_path . "\'";
8bd9e0dd 3096 }
8bd9e0dd 3097 return $new_path;
3098}
3099
e6566358 3100
3101# Change SM_PATH to admin-friendly version, e.g.:
3102# SM_PATH . 'images/logo.gif' --> '../images/logo.gif'
3103# SM_PATH . 'config/some.php' --> 'some.php'
3104# '/absolute/path/logo.gif' --> '/absolute/path/logo.gif'
3105# 'http://whatever/' --> 'http://whatever'
8bd9e0dd 3106sub change_to_rel_path() {
3107 my ($old_path) = @_;
e6566358 3108 my $new_path = $old_path;
8bd9e0dd 3109
3110 if ( $old_path =~ /^SM_PATH/ ) {
8bd9e0dd 3111 $new_path =~ s/^SM_PATH . \'/\.\.\//;
b72da239 3112 $new_path =~ s/\.\.\/config\///;
8bd9e0dd 3113 }
3114
3115 return $new_path;
3116}
b47821fb 3117
3118sub detect_auth_support {
3119# Attempts to auto-detect if a specific auth mechanism is supported.
3120# Called by 'command112a' and 'command112b'
3121# ARGS: service-name (IMAP or SMTP), host:port, mech-name (ie. CRAM-MD5)
3122
3123 # Misc setup
3124 use IO::Socket;
3125 my $service = shift;
3126 my $host = shift;
3127 my $mech = shift;
3128 # Sanity checks
3129 if ((!defined($service)) or (!defined($host)) or (!defined($mech))) {
3130 # Error - wrong # of args
3131 print "BAD ARGS!\n";
3132 return undef;
3133 }
3134
3135 if ($service eq 'SMTP') {
3136 $cmd = "AUTH $mech\n";
3137 $logout = "QUIT\n";
3138 } elsif ($service eq 'IMAP') {
3139 $cmd = "A01 AUTHENTICATE $mech\n";
3140 $logout = "C01 LOGOUT\n";
3141 } else {
3142 # unknown service - whoops.
3143 return undef;
3144 }
3145
3146 # Get this show on the road
3147 my $sock=IO::Socket::INET->new($host);
3148 if (!defined($sock)) {
3149 # Connect failed
3150 return undef;
3151 }
3152 my $discard = <$sock>; # Server greeting/banner - who cares..
fe0b18b3 3153
3154 if ($service eq 'SMTP') {
3155 # Say hello first..
3156 print $sock "helo $domain\n";
3157 $discard = <$sock>; # Yeah yeah, you're happy to see me..
3158 }
b47821fb 3159 print $sock $cmd;
3160
3161 my $response = <$sock>;
fe0b18b3 3162 chomp($response);
b47821fb 3163 if (!defined($response)) {
3164 return undef;
3165 }
3166
3167 # So at this point, we have a response, and it is (hopefully) valid.
3168 if ($service eq 'SMTP') {
3169 if (($response =~ /^535/) or ($response =~/^502/)) {
3170 # Not supported
3171 close $sock;
3172 return 'NO';
fe0b18b3 3173 } elsif ($response =~ /^503/) {
3174 #Something went wrong
3175 return undef;
b47821fb 3176 }
3177 } elsif ($service eq 'IMAP') {
3178 if ($response =~ /^A01/) {
3179 # Not supported
3180 close $sock;
3181 return 'NO';
3182 }
3183 } else {
3184 # Unknown service - this shouldn't be able to happen.
3185 close $sock;
3186 return undef;
3187 }
3188
3189 # If it gets here, the mech is supported
3190 print $sock "*\n"; # Attempt to cancel authentication
3191 print $sock $logout; # Try to log out, but we don't really care if this fails
3192 close $sock;
3193 return 'YES';
3194}
f8c17cdd 3195
3196sub clear_screen() {
3197 if ( $^O =~ /^mswin/i) {
3198 system "cls";
3199 } else {
3200 system "clear";
3201 }
3202}