Changed some things (duh)
[squirrelmail.git] / config / conf.pl
CommitLineData
23afd0bd 1#!/usr/bin/env perl
bbd30ac8 2# conf.pl
8beafbbc 3# Luke Ehresman (luke@squirrelmail.org)
bbd30ac8 4#
5# A simple configure script to configure squirrelmail
245a6892 6#
7# $Id$
ccfb2029 8############################################################
a3439b27 9$conf_pl_version = "1.2.0";
bbd30ac8 10
38b69acb 11############################################################
12# Check what directory we're supposed to be running in, and
13# change there if necessary. File::Basename has been in
14# Perl since at least 5.003_7, and nobody sane runs anything
15# before that, but just in case.
16############################################################
17
18if (eval q{require "File/Basename.pm"}) {
19 my $dir = File::Basename::dirname($0);
20 chdir($dir);
21}
22
23
d595e32e 24############################################################
25# Some people try to run this as a CGI. That's wrong!
26############################################################
27if(defined($ENV{'PATH_INFO'}) || defined($ENV{'QUERY_STRING'}) ||
28 defined($ENV{'REQUEST_METHOD'})) {
29 print "Content-Type: text/html\n\n";
30 print "You must run this script from the command line.";
31 exit;
32}
33
ccfb2029 34############################################################
bbd30ac8 35# First, lets read in the data already in there...
ccfb2029 36############################################################
bbd30ac8 37if ( -e "config.php") {
4011c3ca 38 open (FILE, "config.php");
39 while ($line = <FILE>) {
a3439b27 40 $line =~ s/^\s+//;
41 $line =~ s/^\$//;
42 $var = $line;
4011c3ca 43
a3439b27 44 $var =~ s/=/EQUALS/;
45 if ($var =~ /^([a-z]|[A-Z])/) {
46 @o = split(/\s*EQUALS\s*/, $var);
47 if ($o[0] eq "config_version") {
48 $o[1] =~ s/[\n|\r]//g;
49 $o[1] =~ s/[\'|\"];\s*$//;
50 $o[1] =~ s/;$//;
51 $o[1] =~ s/^[\'|\"]//;
52
53 $config_version = $o[1];
54 close (FILE);
4011c3ca 55 }
56 }
57 }
58 close (FILE);
59
60 if ($config_version ne $conf_pl_version) {
61 system "clear";
62 print $WHT."WARNING:\n".$NRM;
a3439b27 63 print " The file \"config/config.php\" was found, but it is for\n";
64 print " an older version of SquirrelMail. It is possible to still\n";
65 print " read the defaults from this file but be warned that many\n";
66 print " preferences change between versions. It is recommended that\n";
67 print " you start with a clean config.php for each upgrade that you\n";
68 print " do. To do this, just move config/config.php out of the way.\n";
69 print "\n";
f0bc4d36 70 print "Continue loading with the old config.php [y/N]? ";
4011c3ca 71 $ctu = <STDIN>;
f0bc4d36 72 if (($ctu !~ /^y\n/i) || ($ctu =~ /^\n/)) {
4011c3ca 73 exit;
74 }
75
f0bc4d36 76 print "\nDo you want me to stop warning you [y/N]? ";
4011c3ca 77 $ctu = <STDIN>;
78 if ($ctu =~ /^y\n/i) {
79 $print_config_version = $conf_pl_version;
80 } else {
81 $print_config_version = $config_version;
82 }
83 } else {
84 $print_config_version = $config_version;
85 }
86
a93b12ba 87 $config = 1;
ccfb2029 88 open (FILE, "config.php");
1e0628fb 89} elsif (-e "config_default.php") {
4011c3ca 90 open (FILE, "config_default.php");
91 while ($line = <FILE>) {
a3439b27 92 $line =~ s/^\s+//;
93 $line =~ s/^\$//;
94 $var = $line;
4011c3ca 95
a3439b27 96 $var =~ s/=/EQUALS/;
97 if ($var =~ /^([a-z]|[A-Z])/) {
98 @o = split(/\s*EQUALS\s*/, $var);
99 if ($o[0] eq "config_version") {
100 $o[1] =~ s/[\n|\r]//g;
101 $o[1] =~ s/[\'|\"];\s*$//;
102 $o[1] =~ s/;$//;
103 $o[1] =~ s/^[\'|\"]//;
104
105 $config_version = $o[1];
106 close (FILE);
4011c3ca 107 }
108 }
109 }
110 close (FILE);
111
112 if ($config_version ne $conf_pl_version) {
113 system "clear";
114 print $WHT."WARNING:\n".$NRM;
a3439b27 115 print " You are trying to use a 'config_default.php' from an older\n";
116 print " version of SquirrelMail. This is HIGHLY unrecommended. You\n";
117 print " should get the 'config_default.php' that matches the version\n";
118 print " of SquirrelMail that you are running. You can get this from\n";
119 print " the SquirrelMail web page by going to the following URL:\n";
120 print " http://www.squirrelmail.org.\n";
121 print "\n";
122 print "Continue loading with old config_default.php (a bad idea) [y/N]? ";
4011c3ca 123 $ctu = <STDIN>;
f0bc4d36 124 if (($ctu !~ /^y\n/i) || ($ctu =~ /^\n/)) {
4011c3ca 125 exit;
126 }
127
f0bc4d36 128 print "\nDo you want me to stop warning you [y/N]? ";
4011c3ca 129 $ctu = <STDIN>;
130 if ($ctu =~ /^y\n/i) {
131 $print_config_version = $conf_pl_version;
132 } else {
133 $print_config_version = $config_version;
134 }
135 } else {
136 $print_config_version = $config_version;
137 }
a93b12ba 138 $config = 2;
ccfb2029 139 open (FILE, "config_default.php");
1e0628fb 140} else {
a3439b27 141 print "No configuration file found. Please get config_default.php\n";
142 print "or config.php before running this again. This program needs\n";
143 print "a default config file to get default values.\n";
a93b12ba 144 exit;
bbd30ac8 145}
146
a3439b27 147# Read and parse the current configuration file
148# (either config.php or config_default.php).
bbd30ac8 149while ($line = <FILE>) {
a3439b27 150 $line =~ s/^\s+//;
151 $line =~ s/^\$//;
152 $var = $line;
ccfb2029 153
a3439b27 154 $var =~ s/=/EQUALS/;
155 if ($var =~ /^([a-z]|[A-Z])/) {
156 @options = split(/\s*EQUALS\s*/, $var);
157 $options[1] =~ s/[\n|\r]//g;
158 $options[1] =~ s/[\'|\"];\s*$//;
159 $options[1] =~ s/;$//;
160 $options[1] =~ s/^[\'|\"]//;
161
162 if ($options[0] =~ /^theme\[[0-9]+\]\[['|"]PATH['|"]\]/) {
163 $sub = $options[0];
164 $sub =~ s/\]\[['|"]PATH['|"]\]//;
165 $sub =~ s/.*\[//;
166 if (-e "../themes") {
167 $options[1] =~ s/^\.\.\/config/\.\.\/themes/;
ccfb2029 168 }
a3439b27 169 $theme_path[$sub] = $options[1];
170 } elsif ($options[0] =~ /^theme\[[0-9]+\]\[['|"]NAME['|"]\]/) {
171 $sub = $options[0];
172 $sub =~ s/\]\[['|"]NAME['|"]\]//;
173 $sub =~ s/.*\[//;
174 $theme_name[$sub] = $options[1];
175 } elsif ($options[0] =~ /^plugins\[[0-9]+\]/) {
176 $sub = $options[0];
177 $sub =~ s/\]//;
178 $sub =~ s/^plugins\[//;
179 $plugins[$sub] = $options[1];
180 } elsif ($options[0] =~ /^ldap_server\[[0-9]+\]/) {
181 $sub = $options[0];
182 $sub =~ s/\]//;
183 $sub =~ s/^ldap_server\[//;
184 $continue = 0;
185 while (($tmp = <FILE>) && ($continue != 1)) {
186 if ($tmp =~ /\);\s*$/) {
187 $continue = 1;
188 }
189
190 if ($tmp =~ /^\s*[\'|\"]host[\'|\"]/i) {
191 $tmp =~ s/^\s*[\'|\"]host[\'|\"]\s*=>\s*[\'|\"]//i;
192 $tmp =~ s/[\'|\"],?\s*$//;
193 $tmp =~ s/[\'|\"]\);\s*$//;
194 $host = $tmp;
195 } elsif ($tmp =~ /^\s*[\'|\"]base[\'|\"]/i) {
196 $tmp =~ s/^\s*[\'|\"]base[\'|\"]\s*=>\s*[\'|\"]//i;
197 $tmp =~ s/[\'|\"],?\s*$//;
198 $tmp =~ s/[\'|\"]\);\s*$//;
199 $base = $tmp;
200 } elsif ($tmp =~ /^\s*[\'|\"]charset[\'|\"]/i) {
201 $tmp =~ s/^\s*[\'|\"]charset[\'|\"]\s*=>\s*[\'|\"]//i;
202 $tmp =~ s/[\'|\"],?\s*$//;
203 $tmp =~ s/[\'|\"]\);\s*$//;
204 $charset = $tmp;
205 } elsif ($tmp =~ /^\s*[\'|\"]port[\'|\"]/i) {
206 $tmp =~ s/^\s*[\'|\"]port[\'|\"]\s*=>\s*[\'|\"]//i;
207 $tmp =~ s/[\'|\"],?\s*$//;
208 $tmp =~ s/[\'|\"]\);\s*$//;
209 $port = $tmp;
210 } elsif ($tmp =~ /^\s*[\'|\"]maxrows[\'|\"]/i) {
211 $tmp =~ s/^\s*[\'|\"]maxrows[\'|\"]\s*=>\s*[\'|\"]//i;
212 $tmp =~ s/[\'|\"],?\s*$//;
213 $tmp =~ s/[\'|\"]\);\s*$//;
214 $maxrows = $tmp;
215 } elsif ($tmp =~ /^\s*[\'|\"]name[\'|\"]/i) {
216 $tmp =~ s/^\s*[\'|\"]name[\'|\"]\s*=>\s*[\'|\"]//i;
217 $tmp =~ s/[\'|\"],?\s*$//;
218 $tmp =~ s/[\'|\"]\);\s*$//;
219 $name = $tmp;
220 }
221 }
222 $ldap_host[$sub] = $host;
223 $ldap_base[$sub] = $base;
224 $ldap_name[$sub] = $name;
225 $ldap_port[$sub] = $port;
226 $ldap_maxrows[$sub] = $maxrows;
227 $ldap_charset[$sub] = $charset;
228 } else {
229 ${$options[0]} = $options[1];
ccfb2029 230 }
a3439b27 231 }
bbd30ac8 232}
1a7a2fcc 233close FILE;
828b4753 234if ($useSendmail ne "true") {
ccfb2029 235 $useSendmail = "false";
828b4753 236}
237if (!$sendmail_path) {
ccfb2029 238 $sendmail_path = "/usr/sbin/sendmail";
828b4753 239}
24fc5dd2 240if (!$default_unseen_notify) {
241 $default_unseen_notify = 2;
242}
243if (!$default_unseen_type) {
244 $default_unseen_type = 1;
245}
0ecb47e5 246if (!$config_use_color) {
a15af05b 247 $config_use_color = 0;
0ecb47e5 248}
a1f1f9bc 249if (!$invert_time) {
250 $invert_time = "false";
251}
23a8095f 252if (!$force_username_lowercase) {
a3439b27 253 $force_username_lowercase = "false";
23a8095f 254}
40ba4d36 255if (!$optional_delimiter) {
a3439b27 256 $optional_delimiter = "detect";
40ba4d36 257}
d2f4c914 258if (!$use_authenticated_smtp) {
259 $use_authenticated_smtp = "false";
260}
f7bfc9de 261if (!$auto_create_special) {
a3439b27 262 $auto_create_special = "false";
f7bfc9de 263}
0d15cd19 264if(!$default_use_priority) {
a3439b27 265 $default_use_priority = "true";
0d15cd19 266}
826b7f71 267if(!$hide_sm_attributions) {
a3439b27 268 $hide_sm_attributions = "false";
826b7f71 269}
bbd30ac8 270
ebd13f55 271if ($ARGV[0] eq '--install-plugin') {
272 print "Activating plugin " . $ARGV[1]
273 . "\n";
274 push @plugins, $ARGV[1];
275 save_data();
276 exit(0);
277}
278elsif ($ARGV[0] eq '--remove-plugin') {
279 print "Removing plugin " . $ARGV[1]
280 . "\n";
281 foreach $plugin (@plugins) {
282 if ($plugin ne $ARGV[1]) {
283 push @newplugins, $plugin;
284 }
285 }
286 @plugins = @newplugins;
287 save_data();
288 exit(0);
289}
290
291
5b6ae78a 292#####################################################################################
0ecb47e5 293if ($config_use_color == 1) {
294 $WHT = "\x1B[37;1m";
295 $NRM = "\x1B[0m";
296} else {
297 $WHT = "";
298 $NRM = "";
299 $config_use_color = 2;
300}
5b6ae78a 301
828b4753 302while (($command ne "q") && ($command ne "Q")) {
ccfb2029 303 system "clear";
612eda0a 304 print $WHT."SquirrelMail Configuration : ".$NRM;
305 if ($config == 1) { print "Read: config.php"; }
306 elsif ($config == 2) { print "Read: config_default.php"; }
a3439b27 307 print " ($print_config_version)\n";
612eda0a 308 print "---------------------------------------------------------\n";
1e0628fb 309
612eda0a 310 if ($menu == 0) {
ccfb2029 311 print $WHT."Main Menu --\n".$NRM;
312 print "1. Organization Preferences\n";
313 print "2. Server Settings\n";
314 print "3. Folder Defaults\n";
315 print "4. General Options\n";
316 print "5. Themes\n";
317 print "6. Address Books (LDAP)\n";
318 print "7. Message of the Day (MOTD)\n";
9d0c7bee 319 print "8. Plugins\n";
ccfb2029 320 print "\n";
a93b12ba 321 print "D. Set pre-defined settings for specific IMAP servers\n";
322 print "\n";
ccfb2029 323 } elsif ($menu == 1) {
324 print $WHT."Organization Preferences\n".$NRM;
325 print "1. Organization Name : $WHT$org_name$NRM\n";
326 print "2. Organization Logo : $WHT$org_logo$NRM\n";
327 print "3. Organization Title : $WHT$org_title$NRM\n";
f923b93d 328 print "4. Signout Page : $WHT$signout_page$NRM\n";
6ef7145f 329 print "5. Default Language : $WHT$squirrelmail_default_language$NRM\n";
ccfb2029 330 print "\n";
331 print "R Return to Main Menu\n";
332 } elsif ($menu == 2) {
333 print $WHT."Server Settings\n".$NRM;
334 print "1. Domain : $WHT$domain$NRM\n";
335 print "2. IMAP Server : $WHT$imapServerAddress$NRM\n";
336 print "3. IMAP Port : $WHT$imapPort$NRM\n";
996d34de 337 print "4. Use Sendmail/SMTP : $WHT";
338 if ($useSendmail eq "true") {
339 print "Sendmail";
340 } else {
341 print "SMTP";
342 }
343 print "$NRM\n";
ccfb2029 344 if ($useSendmail eq "true") {
345 print "5. Sendmail Path : $WHT$sendmail_path$NRM\n";
346 } else {
347 print "6. SMTP Server : $WHT$smtpServerAddress$NRM\n";
348 print "7. SMTP Port : $WHT$smtpPort$NRM\n";
d2f4c914 349 print "8. Authenticated SMTP : $WHT$use_authenticated_smtp$NRM\n";
ccfb2029 350 }
d2f4c914 351 print "9. Server : $WHT$imap_server_type$NRM\n";
352 print "10. Invert Time : $WHT$invert_time$NRM\n";
353 print "11. Delimiter : $WHT$optional_delimiter$NRM\n";
ccfb2029 354 print "\n";
355 print "R Return to Main Menu\n";
356 } elsif ($menu == 3) {
357 print $WHT."Folder Defaults\n".$NRM;
f7b1b3b1 358 print "1. Default Folder Prefix : $WHT$default_folder_prefix$NRM\n";
359 print "2. Show Folder Prefix Option : $WHT$show_prefix_option$NRM\n";
360 print "3. Trash Folder : $WHT$trash_folder$NRM\n";
361 print "4. Sent Folder : $WHT$sent_folder$NRM\n";
362 print "5. Drafts Folder : $WHT$draft_folder$NRM\n";
363 print "6. By default, move to trash : $WHT$default_move_to_trash$NRM\n";
364 print "7. By default, move to sent : $WHT$default_move_to_sent$NRM\n";
365 print "8. By default, save as draft : $WHT$default_save_as_draft$NRM\n";
366 print "9. List Special Folders First : $WHT$list_special_folders_first$NRM\n";
367 print "10. Show Special Folders Color : $WHT$use_special_folder_color$NRM\n";
368 print "11. Auto Expunge : $WHT$auto_expunge$NRM\n";
369 print "12. Default Sub. of INBOX : $WHT$default_sub_of_inbox$NRM\n";
370 print "13. Show 'Contain Sub.' Option : $WHT$show_contain_subfolders_option$NRM\n";
371 print "14. Default Unseen Notify : $WHT$default_unseen_notify$NRM\n";
372 print "15. Default Unseen Type : $WHT$default_unseen_type$NRM\n";
373 print "16. Auto Create Special Folders : $WHT$auto_create_special$NRM\n";
ccfb2029 374 print "\n";
375 print "R Return to Main Menu\n";
376 } elsif ($menu == 4) {
377 print $WHT."General Options\n".$NRM;
985f7c88 378 print "1. Default Charset : $WHT$default_charset$NRM\n";
379 print "2. Data Directory : $WHT$data_dir$NRM\n";
380 print "3. Attachment Directory : $WHT$attachment_dir$NRM\n";
3392dc86 381 print "4. Directory Hash Level : $WHT$dir_hash_level$NRM\n";
382 print "5. Default Left Size : $WHT$default_left_size$NRM\n";
383 print "6. Usernames in Lowercase : $WHT$force_username_lowercase$NRM\n";
384 print "7. Allow use of priority : $WHT$default_use_priority$NRM\n";
385 print "8. Hide SM attributions : $WHT$hide_sm_attributions$NRM\n";
ccfb2029 386 print "\n";
387 print "R Return to Main Menu\n";
388 } elsif ($menu == 5) {
389 print $WHT."Themes\n".$NRM;
390 print "1. Change Themes\n";
391 for ($count = 0; $count <= $#theme_name; $count++) {
70391dd0 392 print " > $theme_name[$count]\n";
ccfb2029 393 }
6f3bfa54 394 print "2. CSS File : $WHT$theme_css$NRM\n";
ccfb2029 395 print "\n";
396 print "R Return to Main Menu\n";
397 } elsif ($menu == 6) {
398 print $WHT."Address Books (LDAP)\n".$NRM;
1e0628fb 399 print "1. Change Servers\n";
400 for ($count = 0; $count <= $#ldap_host; $count++) {
401 print " > $ldap_host[$count]\n";
402 }
3806fa52 403 print "2. Use Javascript Address Book Search : $WHT$default_use_javascript_addr_book$NRM\n";
ccfb2029 404 print "\n";
405 print "R Return to Main Menu\n";
406 } elsif ($menu == 7) {
407 print $WHT."Message of the Day (MOTD)\n".$NRM;
408 print "\n$motd\n";
409 print "\n";
410 print "1 Edit the MOTD\n";
411 print "\n";
412 print "R Return to Main Menu\n";
9d0c7bee 413 } elsif ($menu == 8) {
414 print $WHT."Plugins\n".$NRM;
1a7a2fcc 415 print " Installed Plugins\n";
416 $num = 0;
9d0c7bee 417 for ($count = 0; $count <= $#plugins; $count++) {
1a7a2fcc 418 $num = $count + 1;
419 print " $num. $plugins[$count]\n";
9d0c7bee 420 }
1a7a2fcc 421 print "\n Available Plugins:\n";
422 opendir(DIR, "../plugins");
423 @files = readdir(DIR);
424 $pos=0;
425 @unused_plugins = ();
1a7a2fcc 426 for ($i=0; $i <= $#files; $i++) {
f0bc4d36 427 if ( -d "../plugins/" . $files[$i] &&
2a15d00c 428 $files[$i] !~ /^\./ && $files[$i] ne "CVS") {
1a7a2fcc 429 $match = 0;
430 for ($k=0; $k<=$#plugins; $k++) {
431 if ($plugins[$k] eq $files[$i]) {
432 $match = 1;
433 }
434 }
435 if ($match == 0) {
436 $unused_plugins[$pos] = $files[$i];
437 $pos++;
438 }
439 }
440 }
1a7a2fcc 441
442 for ($i=0; $i<=$#unused_plugins; $i++) {
443 $num = $num + 1;
444 print " $num. $unused_plugins[$i]\n";
445 }
446 closedir DIR;
447
f526c4fe 448 print "\n";
449 print "A Sanitize all plugins for use with Squirrelmail 1.2\n";
9d0c7bee 450 print "\n";
451 print "R Return to Main Menu\n";
ccfb2029 452 }
3ed2faff 453 if ($config_use_color == 1) {
454 print "C. Turn color off\n";
455 } else {
456 print "C. Turn color on\n";
457 }
ccfb2029 458 print "S Save data\n";
459 print "Q Quit\n";
460
461 print "\n";
462 print "Command >> ".$WHT;
463 $command = <STDIN>;
f0bc4d36 464 $command =~ s/[\n|\r]//g;
465 $command =~ tr/A-Z/a-z/;
ccfb2029 466 print "$NRM\n";
467
468 # Read the commands they entered.
f0bc4d36 469 if ($command eq "r") {
ccfb2029 470 $menu = 0;
f0bc4d36 471 } elsif ($command eq "s") {
ccfb2029 472 save_data ();
f0bc4d36 473 print "Press enter to continue...";
ccfb2029 474 $tmp = <STDIN>;
475 $saved = 1;
f0bc4d36 476 } elsif (($command eq "q") && ($saved == 0)) {
ccfb2029 477 print "You have not saved your data.\n";
f0bc4d36 478 print "Save? [".$WHT."Y".$NRM."/n]: ";
ccfb2029 479 $save = <STDIN>;
480 if (($save =~ /^y/i) || ($save =~ /^\s*$/)) {
481 save_data ();
482 }
f0bc4d36 483 } elsif ($command eq "c") {
0ecb47e5 484 if ($config_use_color == 1) {
485 $config_use_color = 2;
486 $WHT = "";
487 $NRM = "";
488 } else {
489 $config_use_color = 1;
490 $WHT = "\x1B[37;1m";
491 $NRM = "\x1B[0m";
492 }
f0bc4d36 493 } elsif ($command eq "d" && $menu == 0) {
a93b12ba 494 set_defaults ();
ccfb2029 495 } else {
496 $saved = 0;
497 if ($menu == 0) {
9d0c7bee 498 if (($command > 0) && ($command < 9)) {
ccfb2029 499 $menu = $command;
500 }
501 } elsif ($menu == 1) {
502 if ($command == 1) { $org_name = command1 (); }
503 elsif ($command == 2) { $org_logo = command2 (); }
504 elsif ($command == 3) { $org_title = command3 (); }
f923b93d 505 elsif ($command == 4) { $signout_page = command4 (); }
6ef7145f 506 elsif ($command == 5) { $squirrelmail_default_language = command5(); }
ccfb2029 507 } elsif ($menu == 2) {
f7b1b3b1 508 if ($command == 1) { $domain = command11 (); }
509 elsif ($command == 2) { $imapServerAddress = command12 (); }
510 elsif ($command == 3) { $imapPort = command13 (); }
511 elsif ($command == 4) { $useSendmail = command14 (); }
512 elsif ($command == 5) { $sendmail_path = command15 (); }
513 elsif ($command == 6) { $smtpServerAddress = command16 (); }
514 elsif ($command == 7) { $smtpPort = command17 (); }
515 elsif ($command == 8) { $use_authenticated_smtp = command18 (); }
516 elsif ($command == 9) { $imap_server_type = command19 (); }
517 elsif ($command == 10) { $invert_time = command110 (); }
518 elsif ($command == 11) { $optional_delimiter = command111 (); }
ccfb2029 519 } elsif ($menu == 3) {
f7b1b3b1 520 if ($command == 1) { $default_folder_prefix = command21 (); }
521 elsif ($command == 2) { $show_prefix_option = command22 (); }
522 elsif ($command == 3) { $trash_folder = command23a (); }
523 elsif ($command == 4) { $sent_folder = command23b (); }
524 elsif ($command == 5) { $draft_folder = command23c (); }
525 elsif ($command == 6) { $default_move_to_trash = command24a (); }
526 elsif ($command == 7) { $default_move_to_sent = command24b (); }
527 elsif ($command == 8) { $default_save_as_draft = command24c (); }
528 elsif ($command == 9) { $list_special_folders_first = command27 (); }
529 elsif ($command == 10) { $use_special_folder_color = command28 (); }
530 elsif ($command == 11) { $auto_expunge = command29 (); }
531 elsif ($command == 12) { $default_sub_of_inbox = command210(); }
532 elsif ($command == 13) { $show_contain_subfolders_option = command211(); }
533 elsif ($command == 14) { $default_unseen_notify = command212(); }
534 elsif ($command == 15) { $default_unseen_type = command213(); }
535 elsif ($command == 16) { $auto_create_special = command214(); }
ccfb2029 536 } elsif ($menu == 4) {
985f7c88 537 if ($command == 1) { $default_charset = command31 (); }
3392dc86 538 elsif ($command == 2) { $data_dir = command33a (); }
539 elsif ($command == 3) { $attachment_dir = command33b (); }
540 elsif ($command == 4) { $dir_hash_level = command33c (); }
541 elsif ($command == 5) { $default_left_size = command35 (); }
542 elsif ($command == 6) { $force_username_lowercase = command36 (); }
543 elsif ($command == 7) { $default_use_priority = command37 (); }
544 elsif ($command == 8) { $hide_sm_attributions = command38 (); }
ccfb2029 545 } elsif ($menu == 5) {
6f3bfa54 546 if ($command == 1) { command41 (); }
547 elsif ($command == 2) { $theme_css = command42 (); }
ccfb2029 548 } elsif ($menu == 6) {
3806fa52 549 if ($command == 1) { command61(); }
550 elsif ($command == 2) { command62(); }
ccfb2029 551 } elsif ($menu == 7) {
a37f3771 552 if ($command == 1) { $motd = command71(); }
9d0c7bee 553 } elsif ($menu == 8) {
1a7a2fcc 554 if ($command =~ /^[0-9]+/) { @plugins = command81(); }
f526c4fe 555 elsif ($command eq "a") { command8s(); }
ccfb2029 556 }
557 }
828b4753 558}
559
560####################################################################################
561
5b6ae78a 562# org_name
563sub command1 {
564 print "We have tried to make the name SquirrelMail as transparent as\n";
565 print "possible. If you set up an organization name, most places where\n";
566 print "SquirrelMail would take credit will be credited to your organization.\n";
567 print "\n";
828b4753 568 print "[$WHT$org_name$NRM]: $WHT";
569 $new_org_name = <STDIN>;
570 if ($new_org_name eq "\n") {
571 $new_org_name = $org_name;
572 } else {
573 $new_org_name =~ s/[\r|\n]//g;
574 }
5b6ae78a 575 return $new_org_name;
576}
577
828b4753 578
5b6ae78a 579# org_logo
580sub command2 {
581 print "Your organization's logo is an image that will be displayed at\n";
582 print "different times throughout SquirrelMail. This is asking for the\n";
583 print "literal (/usr/local/squirrelmail/images/logo.jpg) or relative\n";
584 print "(../images/logo.jpg) path to your logo.\n";
585 print "\n";
828b4753 586 print "[$WHT$org_logo$NRM]: $WHT";
5b6ae78a 587 $new_org_logo = <STDIN>;
588 if ($new_org_logo eq "\n") {
589 $new_org_logo = $org_logo;
bbd30ac8 590 } else {
5b6ae78a 591 $new_org_logo =~ s/[\r|\n]//g;
bbd30ac8 592 }
5b6ae78a 593 return $new_org_logo;
594}
595
596# org_title
597sub command3 {
598 print "A title is what is displayed at the top of the browser window in\n";
599 print "the titlebar. Usually this will end up looking something like:\n";
600 print "\"Netscape: $org_title\"\n";
601 print "\n";
828b4753 602 print "[$WHT$org_title$NRM]: $WHT";
5b6ae78a 603 $new_org_title = <STDIN>;
604 if ($new_org_title eq "\n") {
605 $new_org_title = $org_title;
bbd30ac8 606 } else {
5b6ae78a 607 $new_org_title =~ s/[\r|\n]//g;
bbd30ac8 608 }
5b6ae78a 609 return $new_org_title;
610}
5b6ae78a 611
f923b93d 612# signout_page
613sub command4 {
614 print "When users click the Sign Out button they will be logged out and\n";
615 print "then sent to signout_page. If signout_page is left empty,\n";
616 print "(hit space and then return) they will be taken, as normal,\n";
617 print "to the default and rather sparse SquirrelMail signout page.\n";
618 print "\n";
619 print "[$WHT$signout_page$NRM]: $WHT";
620 $new_signout_page = <STDIN>;
621 if ($new_signout_page eq "\n") {
622 $new_signout_page = $signout_page;
623 } else {
6ef7145f 624 $new_signout_page =~ s/[\r|\n]//g;
625 $new_signout_page =~ s/^\s+$//g;
626 }
627 return $new_signout_page;
628}
629
630# Default language
631sub command5 {
632 print "SquirrelMail attempts to set the language in many ways. If it\n";
633 print "can not figure it out in another way, it will default to this\n";
634 print "language. Please use the two-letter code for the desired language.\n";
635 print "\n";
636 print "[$WHT$squirrelmail_default_language$NRM]: $WHT";
637 $new_signout_page = <STDIN>;
638 if ($new_signout_page eq "\n") {
639 $new_signout_page = $squirrelmail_default_language;
640 } else {
f923b93d 641 $new_signout_page =~ s/[\r|\n]//g;
642 $new_signout_page =~ s/^\s+$//g;
643 }
644 return $new_signout_page;
645}
646
828b4753 647####################################################################################
5b6ae78a 648
828b4753 649# domain
650sub command11 {
ccfb2029 651 print "The domain name is the suffix at the end of all email messages. If\n";
652 print "for example, your email address is jdoe\@myorg.com, then your domain\n";
653 print "would be myorg.com.\n";
654 print "\n";
655 print "[$WHT$domain$NRM]: $WHT";
656 $new_domain = <STDIN>;
657 if ($new_domain eq "\n") {
658 $new_domain = $domain;
659 } else {
660 $new_domain =~ s/[\r|\n]//g;
661 }
662 return $new_domain;
828b4753 663}
5b6ae78a 664
828b4753 665# imapServerAddress
666sub command12 {
ccfb2029 667 print "This is the address where your IMAP server resides.\n";
668 print "[$WHT$imapServerAddress$NRM]: $WHT";
669 $new_imapServerAddress = <STDIN>;
670 if ($new_imapServerAddress eq "\n") {
671 $new_imapServerAddress = $imapServerAddress;
672 } else {
673 $new_imapServerAddress =~ s/[\r|\n]//g;
674 }
675 return $new_imapServerAddress;
828b4753 676}
5b6ae78a 677
828b4753 678# imapPort
679sub command13 {
ccfb2029 680 print "This is the port that your IMAP server is on. Usually this is 143.\n";
681 print "[$WHT$imapPort$NRM]: $WHT";
682 $new_imapPort = <STDIN>;
683 if ($new_imapPort eq "\n") {
684 $new_imapPort = $imapPort;
685 } else {
686 $new_imapPort =~ s/[\r|\n]//g;
687 }
688 return $new_imapPort;
828b4753 689}
690
691# useSendmail
692sub command14 {
ccfb2029 693 print "You now need to choose the method that you will use for sending\n";
694 print "messages in SquirrelMail. You can either connect to an SMTP server\n";
695 print "or use sendmail directly.\n";
696 if ($useSendmail eq "true") {
996d34de 697 $default_value = "1";
ccfb2029 698 } else {
996d34de 699 $default_value = "2";
ccfb2029 700 }
701 print "\n";
996d34de 702 print " 1. Sendmail\n";
703 print " 2. SMTP\n";
704 print "Your choice [1/2] [$WHT$default_value$NRM]: $WHT";
ccfb2029 705 $use_sendmail = <STDIN>;
996d34de 706 if (($use_sendmail =~ /^1\n/i) || (($use_sendmail =~ /^\n/) && ($default_value eq "1"))) {
ccfb2029 707 $useSendmail = "true";
708 } else {
709 $useSendmail = "false";
710 }
711 return $useSendmail;
828b4753 712}
5b6ae78a 713
828b4753 714# sendmail_path
715sub command15 {
716 if ($sendmail_path[0] !~ /./) {
717 $sendmail_path = "/usr/sbin/sendmail";
718 }
ccfb2029 719 print "Specify where the sendmail executable is located. Usually /usr/sbin/sendmail\n";
828b4753 720 print "[$WHT$sendmail_path$NRM]: $WHT";
721 $new_sendmail_path = <STDIN>;
722 if ($new_sendmail_path eq "\n") {
723 $new_sendmail_path = $sendmail_path;
724 } else {
725 $new_sendmail_path =~ s/[\r|\n]//g;
726 }
ccfb2029 727 return $new_sendmail_path;
828b4753 728}
5b6ae78a 729
828b4753 730# smtpServerAddress
731sub command16 {
ccfb2029 732 print "This is the location of your SMTP server.\n";
828b4753 733 print "[$WHT$smtpServerAddress$NRM]: $WHT";
734 $new_smtpServerAddress = <STDIN>;
735 if ($new_smtpServerAddress eq "\n") {
736 $new_smtpServerAddress = $smtpServerAddress;
737 } else {
738 $new_smtpServerAddress =~ s/[\r|\n]//g;
739 }
ccfb2029 740 return $new_smtpServerAddress;
828b4753 741}
742
743# smtpPort
744sub command17 {
ccfb2029 745 print "This is the port to connect to for SMTP. Usually 25.\n";
828b4753 746 print "[$WHT$smtpPort$NRM]: $WHT";
747 $new_smtpPort = <STDIN>;
748 if ($new_smtpPort eq "\n") {
749 $new_smtpPort = $smtpPort;
750 } else {
751 $new_smtpPort =~ s/[\r|\n]//g;
752 }
ccfb2029 753 return $new_smtpPort;
bbd30ac8 754}
d2f4c914 755
756# authenticated server
a93b12ba 757sub command18 {
d2f4c914 758 print "Do you wish to use an authenticated SMTP server? Your server must\n";
759 print "support this in order for SquirrelMail to work with it. We implemented\n";
760 print "it according to RFC 2554.\n";
761
762 $YesNo = 'n';
763 $YesNo = 'y' if ($use_authenticated_smtp eq "true");
764
765 print "Use authenticated SMTP server (y/n) [$WHT$YesNo$NRM]: $WHT";
766
767 $new_use_authenticated_smtp = <STDIN>;
768 $new_use_authenticated_smtp =~ tr/yn//cd;
769 return "true" if ($new_use_authenticated_smtp eq "y");
770 return "false" if ($new_use_authenticated_smtp eq "n");
771 return $use_authenticated_smtp;
772}
773
774# imap_server_type
775sub command19 {
d47b2518 776 print "Each IMAP server has its own quirks. As much as we tried to stick\n";
a93b12ba 777 print "to standards, it doesn't help much if the IMAP server doesn't follow\n";
778 print "the same principles. We have made some work-arounds for some of\n";
779 print "these servers. If you would like to use them, please select your\n";
780 print "IMAP server. If you do not wish to use these work-arounds, you can\n";
781 print "set this to \"other\", and none will be used.\n";
782 print " cyrus = Cyrus IMAP server\n";
783 print " uw = University of Washington's IMAP server\n";
784 print " exchange = Microsoft Exchange IMAP server\n";
785 print " courier = Courier IMAP server\n";
ce1ff5ba 786 print " other = Not one of the above servers\n";
a93b12ba 787 print "[$WHT$imap_server_type$NRM]: $WHT";
788 $new_imap_server_type = <STDIN>;
789 if ($new_imap_server_type eq "\n") {
790 $new_imap_server_type = $imap_server_type;
791 } else {
792 $new_imap_server_type =~ s/[\r|\n]//g;
793 }
794 return $new_imap_server_type;
795}
3f8fe68e 796
d47b2518 797# invert_time
d2f4c914 798sub command110 {
d47b2518 799 print "Sometimes the date of messages sent is messed up (off by a few hours\n";
800 print "on some machines). Typically this happens if the system doesn't support\n";
801 print "tm_gmtoff. It will happen only if your time zone is \"negative\".\n";
802 print "This most often occurs on Solaris 7 machines in the United States.\n";
803 print "By default, this is off. It should be kept off unless problems surface\n";
804 print "about the time that messages are sent.\n";
805 print " no = Do NOT fix time -- almost always correct\n";
806 print " yes = Fix the time for this system\n";
807
808 $YesNo = 'n';
809 $YesNo = 'y' if ($invert_time eq "true");
810
811 print "Fix the time for this system (y/n) [$WHT$YesNo$NRM]: $WHT";
812
813 $new_invert_time = <STDIN>;
814 $new_invert_time =~ tr/yn//cd;
815 return "true" if ($new_invert_time eq "y");
816 return "false" if ($new_invert_time eq "n");
817 return $invert_time;
818}
819
d2f4c914 820sub command111 {
40ba4d36 821 print "This is the delimiter that your IMAP server uses to distinguish between\n";
822 print "folders. For example, Cyrus uses '.' as the delimiter and a complete\n";
823 print "folder would look like 'INBOX.Friends.Bob', while UW uses '/' and would\n";
824 print "look like 'INBOX/Friends/Bob'. Normally this should be left at 'detect'\n";
a3439b27 825 print "but if you are sure you know what delimiter your server uses, you can\n";
40ba4d36 826 print "specify it here.\n";
827 print "\nTo have it autodetect the delimiter, set it to 'detect'.\n\n";
828 print "[$WHT$optional_delimiter$NRM]: $WHT";
829 $new_optional_delimiter = <STDIN>;
830 if ($new_optional_delimiter eq "\n") {
831 $new_optional_delimiter = $optional_delimiter;
832 } else {
833 $new_optional_delimiter =~ s/[\r|\n]//g;
834 }
835 return $new_optional_delimiter;
836}
837
3f8fe68e 838# MOTD
839sub command71 {
ccfb2029 840 print "\nYou can now create the welcome message that is displayed\n";
841 print "every time a user logs on. You can use HTML or just plain\n";
a37f3771 842 print "text. If you do not wish to have one, just make it blank.\n\n(Type @ on a blank line to exit)\n";
c4809aca 843
e9f8ea4e 844 $new_motd = "";
ccfb2029 845 do {
846 print "] ";
847 $line = <STDIN>;
848 $line =~ s/[\r|\n]//g;
ccfb2029 849 if ($line ne "@") {
c4809aca 850 $line =~ s/ /\&nbsp;\&nbsp;/g;
851 $line =~ s/\t/\&nbsp;\&nbsp;\&nbsp;\&nbsp;/g;
852 $line =~ s/$/ /;
a73da327 853 $line =~ s/\'/\\\'/g;
c4809aca 854
ccfb2029 855 $new_motd = $new_motd . $line;
856 }
857 } while ($line ne "@");
858 return $new_motd;
3f8fe68e 859}
911ad01c 860
9d0c7bee 861################# PLUGINS ###################
862
863sub command81 {
1a7a2fcc 864 $command =~ s/[\s|\n|\r]*//g;
865 if ($command > 0) {
866 $command = $command - 1;
867 if ($command <= $#plugins) {
868 @newplugins = ();
869 $ct=0;
870 while ($ct <= $#plugins) {
871 if ($ct != $command) {
872 @newplugins = (@newplugins, $plugins[$ct]);
9d0c7bee 873 }
1a7a2fcc 874 $ct++;
9d0c7bee 875 }
1a7a2fcc 876 @plugins = @newplugins;
877 } elsif ($command <= $#plugins + $#unused_plugins + 1) {
878 $num = $command - $#plugins - 1;
879 @newplugins = @plugins;
880 $ct=0;
881 while ($ct <= $#unused_plugins) {
882 if ($ct == $num) {
883 @newplugins = (@newplugins, $unused_plugins[$ct]);
f526c4fe 884 # sanitize the plugin
885 $dir = $unused_plugins[$ct];
886 `./ri_once.pl ../plugins/$dir`;
9d0c7bee 887 }
1a7a2fcc 888 $ct++;
9d0c7bee 889 }
1a7a2fcc 890 @plugins = @newplugins;
9d0c7bee 891 }
1a7a2fcc 892 }
893 return @plugins;
9d0c7bee 894}
895
f526c4fe 896sub command8s {
897 print "This command will sanitize all plugins for use with\n";
898 print "Squirrelmail 1.2. That is, it will rewrite some php-\n";
899 print "constructs that are *incompatible* with the 1.2 design\n";
900 print "into ones that are *compatible*\n";
901 print "Do you wish to issue this command [y/N]? ";
902 $ctu = <STDIN>;
903 if ($ctu =~ /^y\n/i) {
904 `./ri_once.pl ../plugins`;
905 }
906}
907
911ad01c 908################# FOLDERS ###################
909
910# default_folder_prefix
911sub command21 {
ccfb2029 912 print "Some IMAP servers (UW, for example) store mail and folders in\n";
913 print "your user space in a separate subdirectory. This is where you\n";
914 print "specify what that directory is.\n";
915 print "\n";
916 print "EXAMPLE: mail/";
917 print "\n";
918 print "NOTE: If you use Cyrus, or some server that would not use this\n";
919 print " option, you must set this to 'none'.\n";
920 print "\n";
911ad01c 921 print "[$WHT$default_folder_prefix$NRM]: $WHT";
922 $new_default_folder_prefix = <STDIN>;
923 if ($new_default_folder_prefix eq "\n") {
924 $new_default_folder_prefix = $default_folder_prefix;
925 } else {
926 $new_default_folder_prefix =~ s/[\r|\n]//g;
927 }
ccfb2029 928 if (($new_default_folder_prefix =~ /^\s*$/) || ($new_default_folder_prefix =~ /none/i)) {
929 $new_default_folder_prefix = "";
930 } else {
931 $new_default_folder_prefix =~ s/\/*$//g;
932 $new_default_folder_prefix =~ s/$/\//g;
933 }
911ad01c 934 return $new_default_folder_prefix;
935}
936
937# Show Folder Prefix
938sub command22 {
ccfb2029 939 print "It is possible to set up the default folder prefix as a user\n";
940 print "specific option, where each user can specify what their mail\n";
941 print "folder is. If you set this to false, they will never see the\n";
942 print "option, but if it is true, this option will appear in the\n";
943 print "'options' section.\n";
944 print "\n";
945 print "NOTE: You set the default folder prefix in option '1' of this\n";
946 print " section. That will be the default if the user doesn't\n";
947 print " specify anything different.\n";
948 print "\n";
949
950 if ($show_prefix_option eq "true") {
951 $default_value = "y";
952 } else {
953 $default_value = "n";
954 }
955 print "\n";
956 print "Show option (y/n) [$WHT$default_value$NRM]: $WHT";
957 $new_show = <STDIN>;
958 if (($new_show =~ /^y\n/i) || (($new_show =~ /^\n/) && ($default_value eq "y"))) {
959 $show_prefix_option = "true";
960 } else {
961 $show_prefix_option = "false";
962 }
963 return $show_prefix_option;
911ad01c 964}
965
966# Trash Folder
f7b1b3b1 967sub command23a {
ccfb2029 968 print "You can now specify where the default trash folder is located.\n";
969 print "On servers where you do not want this, you can set it to anything\n";
a301f0d8 970 print "and set option 6 to false.\n";
ccfb2029 971 print "\n";
972 print "This is relative to where the rest of your email is kept. You do\n";
973 print "not need to worry about their mail directory. If this folder\n";
974 print "would be ~/mail/trash on the filesystem, you only need to specify\n";
975 print "that this is 'trash', and be sure to put 'mail/' in option 1.\n";
976 print "\n";
911ad01c 977
978 print "[$WHT$trash_folder$NRM]: $WHT";
979 $new_trash_folder = <STDIN>;
980 if ($new_trash_folder eq "\n") {
981 $new_trash_folder = $trash_folder;
982 } else {
983 $new_trash_folder =~ s/[\r|\n]//g;
984 }
ccfb2029 985 return $new_trash_folder;
911ad01c 986}
987
988# Sent Folder
f7b1b3b1 989sub command23b {
ccfb2029 990 print "This is where messages that are sent will be stored. SquirrelMail\n";
991 print "by default puts a copy of all outgoing messages in this folder.\n";
992 print "\n";
993 print "This is relative to where the rest of your email is kept. You do\n";
994 print "not need to worry about their mail directory. If this folder\n";
995 print "would be ~/mail/sent on the filesystem, you only need to specify\n";
996 print "that this is 'sent', and be sure to put 'mail/' in option 1.\n";
997 print "\n";
911ad01c 998
999 print "[$WHT$sent_folder$NRM]: $WHT";
1000 $new_sent_folder = <STDIN>;
1001 if ($new_sent_folder eq "\n") {
1002 $new_sent_folder = $sent_folder;
1003 } else {
1004 $new_sent_folder =~ s/[\r|\n]//g;
1005 }
ccfb2029 1006 return $new_sent_folder;
911ad01c 1007}
1008
f7b1b3b1 1009# Draft Folder
1010sub command23c {
1011 print "You can now specify where the default draft folder is located.\n";
1012 print "On servers where you do not want this, you can set it to anything\n";
1013 print "and set option 9 to false.\n";
1014 print "\n";
1015 print "This is relative to where the rest of your email is kept. You do\n";
1016 print "not need to worry about their mail directory. If this folder\n";
1017 print "would be ~/mail/drafts on the filesystem, you only need to specify\n";
1018 print "that this is 'drafts', and be sure to put 'mail/' in option 1.\n";
1019 print "\n";
1020
1021 print "[$WHT$draft_folder$NRM]: $WHT";
1022 $new_draft_folder = <STDIN>;
1023 if ($new_draft_folder eq "\n") {
1024 $new_draft_folder = $draft_folder;
1025 } else {
1026 $new_draft_folder =~ s/[\r|\n]//g;
1027 }
1028 return $new_draft_folder;
1029}
1030
2f287147 1031# default move to trash
f7b1b3b1 1032sub command24a {
2f287147 1033 print "By default, should messages get moved to the trash folder? You\n";
1034 print "can specify the default trash folder in option 3. If this is set\n";
1035 print "to false, messages will get deleted immediately without moving\n";
1036 print "to the trash folder.\n";
1037 print "\n";
1038 print "Trash folder is currently: $trash_folder\n";
1039 print "\n";
1040
1041 if ($default_move_to_trash eq "true") {
1042 $default_value = "y";
1043 } else {
1044 $default_value = "n";
1045 }
1046 print "By default, move to trash (y/n) [$WHT$default_value$NRM]: $WHT";
1047 $new_show = <STDIN>;
1048 if (($new_show =~ /^y\n/i) || (($new_show =~ /^\n/) && ($default_value eq "y"))) {
1049 $default_move_to_trash = "true";
1050 } else {
1051 $default_move_to_trash = "false";
1052 }
1053 return $default_move_to_trash;
1054}
1055
1056# default move to sent
f7b1b3b1 1057sub command24b {
2f287147 1058 print "By default, should messages get moved to the sent folder? You\n";
1059 print "can specify the default sent folder in option 4. If this is set\n";
776c7431 1060 print "to false, messages will get sent an no copy will be made.\n";
2f287147 1061 print "\n";
1062 print "Trash folder is currently: $sent_folder\n";
1063 print "\n";
1064
1065 if ($default_move_to_sent eq "true") {
1066 $default_value = "y";
1067 } else {
1068 $default_value = "n";
1069 }
1070 print "By default, move to sent (y/n) [$WHT$default_value$NRM]: $WHT";
1071 $new_show = <STDIN>;
1072 if (($new_show =~ /^y\n/i) || (($new_show =~ /^\n/) && ($default_value eq "y"))) {
1073 $default_move_to_sent = "true";
1074 } else {
1075 $default_move_to_sent = "false";
1076 }
1077 return $default_move_to_sent;
1078}
1079
f7b1b3b1 1080# default save as draft
1081sub command24c {
1082 print "By default, should the save to draft option be shown? You can\n";
1083 print "specify the default drafts folder in option 5. If this is set\n";
1084 print "to false, users will not be shown the save to draft option.\n";
1085 print "\n";
1086 print "Drafts folder is currently: $draft_folder\n";
1087 print "\n";
1088
1089 if ($default_move_to_draft eq "true") {
1090 $default_value = "y";
1091 } else {
1092 $default_value = "n";
1093 }
1094 print "By default, save as draft (y/n) [$WHT$default_value$NRM]: $WHT";
1095 $new_show = <STDIN>;
1096 if (($new_show =~ /^y\n/i) || (($new_show =~ /^\n/) && ($default_value eq "y"))) {
1097 $default_save_as_draft = "true";
1098 } else {
1099 $default_save_as_draft = "false";
1100 }
1101 return $default_save_as_draft;
1102}
1103
2f287147 1104# List special folders first
1105sub command27 {
ccfb2029 1106 print "SquirrelMail has what we call 'special folders' that are not\n";
1107 print "manipulated and viewed like normal folders. Some examples of\n";
1108 print "these folders would be INBOX, Trash, Sent, etc. This option\n";
1109 print "Simply asks if you want these folders listed first in the folder\n";
1110 print "listing.\n";
1111 print "\n";
1112
1113 if ($list_special_folders_first eq "true") {
1114 $default_value = "y";
1115 } else {
1116 $default_value = "n";
1117 }
1118 print "\n";
1119 print "List first (y/n) [$WHT$default_value$NRM]: $WHT";
1120 $new_show = <STDIN>;
1121 if (($new_show =~ /^y\n/i) || (($new_show =~ /^\n/) && ($default_value eq "y"))) {
1122 $list_special_folders_first = "true";
1123 } else {
1124 $list_special_folders_first = "false";
1125 }
1126 return $list_special_folders_first;
911ad01c 1127}
1128
1129# Show special folders color
2f287147 1130sub command28 {
ccfb2029 1131 print "SquirrelMail has what we call 'special folders' that are not\n";
1132 print "manipulated and viewed like normal folders. Some examples of\n";
1133 print "these folders would be INBOX, Trash, Sent, etc. This option\n";
1134 print "wants to know if we should display special folders in a\n";
1135 print "color than the other folders.\n";
1136 print "\n";
1137
1138 if ($use_special_folder_color eq "true") {
1139 $default_value = "y";
1140 } else {
1141 $default_value = "n";
1142 }
1143 print "\n";
1144 print "Show color (y/n) [$WHT$default_value$NRM]: $WHT";
1145 $new_show = <STDIN>;
1146 if (($new_show =~ /^y\n/i) || (($new_show =~ /^\n/) && ($default_value eq "y"))) {
1147 $use_special_folder_color = "true";
1148 } else {
1149 $use_special_folder_color = "false";
1150 }
1151 return $use_special_folder_color;
911ad01c 1152}
1153
911ad01c 1154# Auto expunge
2f287147 1155sub command29 {
ccfb2029 1156 print "The way that IMAP handles deleting messages is as follows. You\n";
1157 print "mark the message as deleted, and then to 'really' delete it, you\n";
1158 print "expunge it. This option asks if you want to just have messages\n";
1159 print "marked as deleted, or if you want SquirrelMail to expunge the \n";
1160 print "messages too.\n";
1161 print "\n";
1162
1163 if ($auto_expunge eq "true") {
1164 $default_value = "y";
1165 } else {
1166 $default_value = "n";
1167 }
1168 print "Auto expunge (y/n) [$WHT$default_value$NRM]: $WHT";
1169 $new_show = <STDIN>;
1170 if (($new_show =~ /^y\n/i) || (($new_show =~ /^\n/) && ($default_value eq "y"))) {
1171 $auto_expunge = "true";
1172 } else {
1173 $auto_expunge = "false";
1174 }
1175 return $auto_expunge;
911ad01c 1176}
1177
1178# Default sub of inbox
2f287147 1179sub command210 {
ccfb2029 1180 print "Some IMAP servers (Cyrus) have all folders as subfolders of INBOX.\n";
1181 print "This can cause some confusion in folder creation for users when\n";
1182 print "they try to create folders and don't put it as a subfolder of INBOX\n";
1183 print "and get permission errors. This option asks if you want folders\n";
1184 print "to be subfolders of INBOX by default.\n";
1185 print "\n";
1186
1187 if ($default_sub_of_inbox eq "true") {
1188 $default_value = "y";
1189 } else {
1190 $default_value = "n";
1191 }
1192 print "Default sub of INBOX (y/n) [$WHT$default_value$NRM]: $WHT";
1193 $new_show = <STDIN>;
1194 if (($new_show =~ /^y\n/i) || (($new_show =~ /^\n/) && ($default_value eq "y"))) {
1195 $default_sub_of_inbox = "true";
1196 } else {
1197 $default_sub_of_inbox = "false";
1198 }
1199 return $default_sub_of_inbox;
911ad01c 1200}
1201
1202# Show contain subfolder option
2f287147 1203sub command211 {
ccfb2029 1204 print "Some IMAP servers (UW) make it so that there are two types of\n";
1205 print "folders. Those that contain messages, and those that contain\n";
1206 print "subfolders. If this is the case for your server, set this to\n";
1207 print "true, and it will ask the user whether the folder they are\n";
1208 print "creating contains subfolders or messages.\n";
1209 print "\n";
1210
1211 if ($show_contain_subfolders_option eq "true") {
1212 $default_value = "y";
1213 } else {
1214 $default_value = "n";
1215 }
1216 print "Show option (y/n) [$WHT$default_value$NRM]: $WHT";
1217 $new_show = <STDIN>;
1218 if (($new_show =~ /^y\n/i) || (($new_show =~ /^\n/) && ($default_value eq "y"))) {
1219 $show_contain_subfolders_option = "true";
1220 } else {
1221 $show_contain_subfolders_option = "false";
1222 }
1223 return $show_contain_subfolders_option;
911ad01c 1224}
1225
24fc5dd2 1226# Default Unseen Notify
1227sub command212 {
1228 print "This option specifies where the users will receive notification\n";
1229 print "about unseen messages by default. This is of course an option that\n";
1230 print "can be changed on a user level.\n";
1231 print " 1 = No notification\n";
1232 print " 2 = Only on the INBOX\n";
1233 print " 3 = On all folders\n";
1234 print "\n";
1235
1236 print "Which one should be default (1,2,3)? [$WHT$default_unseen_notify$NRM]: $WHT";
1237 $new_show = <STDIN>;
1238 if ($new_show =~ /^[1|2|3]\n/i) {
1239 $default_unseen_notify = $new_show;
1240 }
1241 $default_unseen_notify =~ s/[\r|\n]//g;
1242 return $default_unseen_notify;
1243}
1244
1245# Default Unseen Type
1246sub command213 {
1247 print "Here you can define the default way that unseen messages will be displayed\n";
1248 print "to the user in the folder listing on the left side.\n";
1249 print " 1 = Only unseen messages (4)\n";
1250 print " 2 = Unseen and Total messages (4/27)\n";
1251 print "\n";
1252
1253 print "Which one should be default (1,2)? [$WHT$default_unseen_type$NRM]: $WHT";
1254 $new_show = <STDIN>;
1255 if ($new_show =~ /^[1|2]\n/i) {
1256 $default_unseen_type = $new_show;
1257 }
1258 $default_unseen_type =~ s/[\r|\n]//g;
1259 return $default_unseen_type;
1260}
1261
f7bfc9de 1262# Auto create special folders
1263sub command214 {
f7b1b3b1 1264 print "Would you like the Sent, Trash, and Drafts folders to be created\n";
1265 print "automatically print for you when a user logs in? If the user\n";
1266 print "accidentally deletes their special folders, this option will\n";
1267 print "automatically create it again for them.\n";
f7bfc9de 1268 print "\n";
1269
1270 if ($auto_create_special eq "true") {
1271 $default_value = "y";
1272 } else {
1273 $default_value = "n";
1274 }
1275 print "Auto create special folders? (y/n) [$WHT$default_value$NRM]: $WHT";
1276 $new_show = <STDIN>;
1277 if (($new_show =~ /^y\n/i) || (($new_show =~ /^\n/) && ($default_value eq "y"))) {
1278 $auto_create_special = "true";
1279 } else {
1280 $auto_create_special = "false";
1281 }
1282 return $auto_create_special;
1283}
1284
24fc5dd2 1285
ccfb2029 1286############# GENERAL OPTIONS #####################
1287
1288# Default Charset
1289sub command31 {
1290 print "This option controls what character set is used when sending\n";
1291 print "mail and when sending HTML to the browser. Do not set this\n";
1292 print "to US-ASCII, use ISO-8859-1 instead. For cyrillic, it is best\n";
1293 print "to use KOI8-R, since this implementation is faster than most\n";
1294 print "of the alternatives\n";
1295 print "\n";
1296
1297 print "[$WHT$default_charset$NRM]: $WHT";
1298 $new_default_charset = <STDIN>;
1299 if ($new_default_charset eq "\n") {
1300 $new_default_charset = $default_charset;
1301 } else {
1302 $new_default_charset =~ s/[\r|\n]//g;
1303 }
1304 return $new_default_charset;
1305}
1306
ccfb2029 1307# Data directory
3392dc86 1308sub command33a {
ccfb2029 1309 print "It is a possible security hole to have a writable directory\n";
1310 print "under the web server's root directory (ex: /home/httpd/html).\n";
1311 print "For this reason, it is possible to put the data directory\n";
1312 print "anywhere you would like. The path name can be absolute or\n";
1313 print "relative (to the config directory). It doesn't matter. Here\n";
1314 print "are two examples:\n";
1315 print " Absolute: /usr/local/squirrelmail/data/\n";
1316 print " Relative: ../data/\n";
1317 print "\n";
1318
1319 print "[$WHT$data_dir$NRM]: $WHT";
1320 $new_data_dir = <STDIN>;
1321 if ($new_data_dir eq "\n") {
1322 $new_data_dir = $data_dir;
1323 } else {
1324 $new_data_dir =~ s/[\r|\n]//g;
1325 }
1326 if ($new_data_dir =~ /^\s*$/) {
1327 $new_data_dir = "";
1328 } else {
1329 $new_data_dir =~ s/\/*$//g;
1330 $new_data_dir =~ s/$/\//g;
1331 }
1332 return $new_data_dir;
1333}
1334
1335# Attachment directory
3392dc86 1336sub command33b {
ccfb2029 1337 print "Path to directory used for storing attachments while a mail is\n";
1338 print "being sent. There are a few security considerations regarding this\n";
1339 print "directory:\n";
1340 print " 1. It should have the permission 733 (rwx-wx-wx) to make it\n";
1341 print " impossible for a random person with access to the webserver\n";
1342 print " to list files in this directory. Confidential data might\n";
1343 print " be laying around in there.\n";
1344 print " 2. Since the webserver is not able to list the files in the\n";
1345 print " content is also impossible for the webserver to delete files\n";
1346 print " lying around there for too long.\n";
1347 print " 3. It should probably be another directory than the data\n";
1348 print " directory specified in option 3.\n";
1349 print "\n";
1350
1351 print "[$WHT$attachment_dir$NRM]: $WHT";
1352 $new_attachment_dir = <STDIN>;
1353 if ($new_attachment_dir eq "\n") {
1354 $new_attachment_dir = $attachment_dir;
1355 } else {
1356 $new_attachment_dir =~ s/[\r|\n]//g;
1357 }
1358 if ($new_attachment_dir =~ /^\s*$/) {
1359 $new_attachment_dir = "";
1360 } else {
1361 $new_attachment_dir =~ s/\/*$//g;
1362 $new_attachment_dir =~ s/$/\//g;
1363 }
1364 return $new_attachment_dir;
1365}
1366
3392dc86 1367sub command33c {
1368 print "The directory hash level setting allows you to configure the level\n";
1369 print "of hashing that Squirremail employs in your data and attachment\n";
1370 print "directories. This value must be an integer ranging from 0 to 4.\n";
1371 print "When this value is set to 0, Squirrelmail will simply store all\n";
1372 print "files as normal in the data and attachment directories. However,\n";
1373 print "when set to a value from 1 to 4, a simple hashing scheme will be\n";
1374 print "used to organize the files in this directory. In short, the crc32\n";
1375 print "value for a username will be computed. Then, up to the first 4\n";
1376 print "digits of the hash, as set by this configuration value, will be\n";
1377 print "used to directory hash the files for that user in the data and\n";
1378 print "attachment directory. This allows for better performance on\n";
1379 print "servers with larger numbers of users.\n";
1380 print "\n";
1381
1382 print "[$WHT$dir_hash_level$NRM]: $WHT";
1383 $new_dir_hash_level = <STDIN>;
1384 if ($new_dir_hash_level eq "\n") {
1385 $new_dir_hash_level = $dir_hash_level;
1386 } else {
1387 $new_dir_hash_level =~ s/[\r|\n]//g;
1388 }
63717a85 1389 if ((int($new_dir_hash_level) < 0) ||
1390 (int($new_dir_hash_level) > 4) ||
1391 !(int($new_dir_hash_level) eq $new_dir_hash_level )) {
3392dc86 1392 print "Invalid Directory Hash Level.\n";
1393 print "Value must be an integer ranging from 0 to 4\n";
1394 print "Hit enter to continue.\n";
1395 $enter_key = <STDIN>;
1396
1397 $new_dir_hash_level = $dir_hash_level;
1398 }
1399
1400 return $new_dir_hash_level;
1401}
ccfb2029 1402
1403sub command35 {
1404 print "This is the default size (in pixels) of the left folder list.\n";
1405 print "Default is 200, but you can set it to whatever you wish. This\n";
1406 print "is a user preference, so this will only show up as their default.\n";
1407 print "\n";
1408 print "[$WHT$default_left_size$NRM]: $WHT";
1409 $new_default_left_size = <STDIN>;
1410 if ($new_default_left_size eq "\n") {
1411 $new_default_left_size = $default_left_size;
1412 } else {
1413 $new_default_left_size =~ s/[\r|\n]//g;
1414 }
1415 return $new_default_left_size;
1416}
1417
1418
985f7c88 1419sub command36 {
1420 print "Some IMAP servers only have lowercase letters in the usernames\n";
1421 print "but they still allow people with uppercase to log in. This\n";
1422 print "causes a problem with the user's preference files. This option\n";
1423 print "transparently changes all usernames to lowercase.";
1424 print "\n";
1425
1426 if ($force_username_lowercase eq "true") {
1427 $default_value = "y";
1428 } else {
1429 $default_value = "n";
1430 }
1431 print "Convert usernames to lowercase (y/n) [$WHT$default_value$NRM]: $WHT";
1432 $new_show = <STDIN>;
1433 if (($new_show =~ /^y\n/i) || (($new_show =~ /^\n/) && ($default_value eq "y"))) {
1434 return "true";
1435 }
1436 return "false";
1437}
1438
0d15cd19 1439sub command37 {
1440 print "";
1441 print "\n";
1442
1443 if ($default_use_priority eq "true") {
1444 $default_value = "y";
1445 } else {
1446 $default_value = "n";
1447 }
1448
1449 print "Allow users to specify priority of outgoing mail (y/n) [$WHT$default_value$NRM]: $WHT";
1450 $new_show = <STDIN>;
1451 if (($new_show =~ /^y\n/i) || (($new_show =~ /^\n/) && ($default_value eq "y"))) {
1452 return "true";
1453 }
1454 return "false";
1455}
1456
985f7c88 1457
826b7f71 1458sub command38 {
1459 print "";
1460 print "\n";
1461
1462 if ($default_hide_attribution eq "true") {
1463 $default_value = "y";
1464 } else {
1465 $default_value = "n";
1466 }
1467
1468 print "Hide SM attributions (y/n) [$WHT$default_value$NRM]: $WHT";
1469 $new_show = <STDIN>;
1470 if (($new_show =~ /^y\n/i) || (($new_show =~ /^\n/) && ($default_value eq "y"))) {
1471 return "true";
1472 }
1473 return "false";
1474}
1475
1476
ccfb2029 1477sub command41 {
1478 print "\nNow we will define the themes that you wish to use. If you have added\n";
1479 print "a theme of your own, just follow the instructions (?) about how to add\n";
1480 print "them. You can also change the default theme.\n";
1481 print "[theme] command (?=help) > ";
1482 $input = <STDIN>;
1483 $input =~ s/[\r|\n]//g;
1484 while ($input ne "d") {
1485 if ($input =~ /^\s*l\s*/i) {
1486 $count = 0;
1487 while ($count <= $#theme_name) {
1488 if ($count == $theme_default) {
1489 print " *";
1490 } else {
1491 print " ";
1492 }
1493 $name = $theme_name[$count];
1494 $num_spaces = 25 - length($name);
1495 for ($i = 0; $i < $num_spaces;$i++) {
1496 $name = $name . " ";
1497 }
1498
1499 print " $count. $name";
1500 print "($theme_path[$count])\n";
1501
1502 $count++;
1503 }
1504 } elsif ($input =~ /^\s*m\s*[0-9]+/i) {
1505 $old_def = $theme_default;
1506 $theme_default = $input;
1507 $theme_default =~ s/^\s*m\s*//;
1508 if (($theme_default > $#theme_name) || ($theme_default < 0)) {
1509 print "Cannot set default theme to $theme_default. That theme does not exist.\n";
1510 $theme_default = $old_def;
1511 }
1512 } elsif ($input =~ /^\s*\+/) {
1513 print "What is the name of this theme: ";
1514 $name = <STDIN>;
1515 $name =~ s/[\r|\n]//g;
1516 $theme_name[$#theme_name+1] = $name;
390372b4 1517 print "Be sure to put ../themes/ before the filename.\n";
1518 print "What file is this stored in (ex: ../themes/default_theme.php): ";
ccfb2029 1519 $name = <STDIN>;
1520 $name =~ s/[\r|\n]//g;
1521 $theme_path[$#theme_path+1] = $name;
1522 } elsif ($input =~ /^\s*-\s*[0-9]?/) {
1523 if ($input =~ /[0-9]+\s*$/) {
1524 $rem_num = $input;
1525 $rem_num =~ s/^\s*-\s*//g;
1526 $rem_num =~ s/\s*$//;
1527 } else {
1528 $rem_num = $#theme_name;
1529 }
1530 if ($rem_num == $theme_default) {
1531 print "You cannot remove the default theme!\n";
1532 } else {
1533 $count = 0;
1534 @new_theme_name = ();
1535 @new_theme_path = ();
1536 while ($count <= $#theme_name) {
1537 if ($count != $rem_num) {
1538 @new_theme_name = (@new_theme_name, $theme_name[$count]);
1539 @new_theme_path = (@new_theme_path, $theme_path[$count]);
1540 }
1541 $count++;
1542 }
1543 @theme_name = @new_theme_name;
1544 @theme_path = @new_theme_path;
1545 if ($theme_default > $rem_num) {
1546 $theme_default--;
1547 }
1548 }
8442ac08 1549 } elsif ($input =~ /^\s*t\s*/i) {
1550 print "\nStarting detection...\n\n";
1551
1552 opendir(DIR, "../themes");
1553 @files = grep { /\.php$/i } readdir(DIR);
1554 $cnt = 0;
1555 while ($cnt <= $#files) {
1556 $filename = "../themes/" . $files[$cnt];
5cb1d69b 1557 if ($filename ne "../themes/index.php") {
1558 $found = 0;
1559 for ($x=0; $x <= $#theme_path; $x++) {
1560 if ($theme_path[$x] eq $filename) {
1561 $found = 1;
1562 }
1563 }
1564 if ($found != 1) {
1565 print "** Found theme: $filename\n";
1566 print " What is its name? ";
1567 $nm = <STDIN>;
1568 $nm =~ s/[\n|\r]//g;
1569 $theme_name[$#theme_name+1] = $nm;
1570 $theme_path[$#theme_path+1] = $filename;
8442ac08 1571 }
8442ac08 1572 }
1573 $cnt++;
1574 }
1575 print "\n";
1576 for ($cnt=0; $cnt <= $#theme_path; $cnt++) {
1577 $filename = $theme_path[$cnt];
1578 if (! (-e $filename)) {
1579 print " Removing $filename (file not found)\n";
1580 $offset = 0;
1581 @new_theme_name = ();
1582 @new_theme_path = ();
1583 for ($x=0; $x < $#theme_path; $x++) {
1584 if ($theme_path[$x] eq $filename) {
1585 $offset = 1;
1586 }
1587 if ($offset == 1) {
1588 $new_theme_name[$x] = $theme_name[$x+1];
1589 $new_theme_path[$x] = $theme_path[$x+1];
1590 } else {
1591 $new_theme_name[$x] = $theme_name[$x];
1592 $new_theme_path[$x] = $theme_path[$x];
1593 }
1594 }
1595 @theme_name = @new_theme_name;
1596 @theme_path = @new_theme_path;
1597 }
1598 }
1599 print "\nDetection complete!\n\n";
1600
1601 closedir DIR;
ccfb2029 1602 } elsif ($input =~ /^\s*\?\s*/) {
1603 print ".-------------------------.\n";
8442ac08 1604 print "| t (detect themes) |\n";
ccfb2029 1605 print "| + (add theme) |\n";
1606 print "| - N (remove theme) |\n";
1607 print "| m N (mark default) |\n";
1608 print "| l (list themes) |\n";
1609 print "| d (done) |\n";
1610 print "`-------------------------'\n";
1611 }
1612 print "[theme] command (?=help) > ";
1613 $input = <STDIN>;
1614 $input =~ s/[\r|\n]//g;
1615 }
1616}
1617
1618
6f3bfa54 1619# Theme - CSS file
1620sub command42 {
1621 print "You may specify a cascading style-sheet (CSS) file to be included\n";
1622 print "on each html page generated by SquirrelMail. The CSS file is useful\n";
1623 print "for specifying a site-wide font. If you're not familiar with CSS\n";
1624 print "files, leave this blank.\n";
1625 print "\n";
1626 print "To clear out an existing value, just type a space for the input.\n";
1627 print "\n";
1628 print "[$WHT$theme_css$NRM]: $WHT";
1629 $new_theme_css = <STDIN>;
1630 if ($new_theme_css eq "\n") {
1631 $new_theme_css = $theme_css;
1632 } else {
1633 $new_theme_css =~ s/[\r|\n]//g;
1634 }
1635 $new_theme_css =~ s/^\s*//;
1636 return $new_theme_css;
1637}
1638
1639
1e0628fb 1640sub command61 {
a93b12ba 1641 print "You can now define different LDAP servers.\n";
1e0628fb 1642 print "[ldap] command (?=help) > ";
1643 $input = <STDIN>;
1644 $input =~ s/[\r|\n]//g;
1645 while ($input ne "d") {
1646 if ($input =~ /^\s*l\s*/i) {
1647 $count = 0;
1648 while ($count <= $#ldap_host) {
a93b12ba 1649 print "$count. $ldap_host[$count]\n";
1650 print " base: $ldap_base[$count]\n";
1651 if ($ldap_charset[$count]) {
1652 print " charset: $ldap_charset[$count]\n";
1653 }
1654 if ($ldap_port[$count]) {
1655 print " port: $ldap_port[$count]\n";
1656 }
1657 if ($ldap_name[$count]) {
1658 print " name: $ldap_name[$count]\n";
1659 }
1660 if ($ldap_maxrows[$count]) {
1661 print " maxrows: $ldap_maxrows[$count]\n";
1662 }
1663 print "\n";
1e0628fb 1664 $count++;
1665 }
1666 } elsif ($input =~ /^\s*\+/) {
a93b12ba 1667 $sub = $#ldap_host + 1;
1e0628fb 1668
a93b12ba 1669 print "First, we need to have the hostname or the IP address where\n";
1670 print "this LDAP server resides. Example: ldap.bigfoot.com\n";
1671 print "hostname: ";
1e0628fb 1672 $name = <STDIN>;
1673 $name =~ s/[\r|\n]//g;
1674 $ldap_host[$sub] = $name;
a93b12ba 1675
1676 print "\n";
1e0628fb 1677
a93b12ba 1678 print "Next, we need the server root (base dn). For this, an empty\n";
1679 print "string is allowed.\n";
1680 print "Example: ou=member_directory,o=netcenter.com\n";
1681 print "base: ";
1e0628fb 1682 $name = <STDIN>;
1683 $name =~ s/[\r|\n]//g;
1684 $ldap_base[$sub] = $name;
1685
a93b12ba 1686 print "\n";
1e0628fb 1687
a93b12ba 1688 print "This is the TCP/IP port number for the LDAP server. Default\n";
1689 print "port is 389. This is optional. Press ENTER for default.\n";
1690 print "port: ";
1e0628fb 1691 $name = <STDIN>;
1692 $name =~ s/[\r|\n]//g;
1693 $ldap_port[$sub] = $name;
1694
a93b12ba 1695 print "\n";
1e0628fb 1696
a93b12ba 1697 print "This is the charset for the server. Default is utf-8. This\n";
1698 print "is also optional. Press ENTER for default.\n";
1699 print "charset: ";
1e0628fb 1700 $name = <STDIN>;
1701 $name =~ s/[\r|\n]//g;
1702 $ldap_charset[$sub] = $name;
1703
a93b12ba 1704 print "\n";
1e0628fb 1705
a93b12ba 1706 print "This is the name for the server, used to tag the results of\n";
1707 print "the search. Default it \"LDAP: hostname\". Press ENTER for default\n";
1708 print "name: ";
1e0628fb 1709 $name = <STDIN>;
1710 $name =~ s/[\r|\n]//g;
1711 $ldap_name[$sub] = $name;
1712
a93b12ba 1713 print "\n";
1e0628fb 1714
a93b12ba 1715 print "You can specify the maximum number of rows in the search result.\n";
1716 print "Default is unlimited. Press ENTER for default.\n";
1717 print "maxrows: ";
1e0628fb 1718 $name = <STDIN>;
1719 $name =~ s/[\r|\n]//g;
1720 $ldap_maxrows[$sub] = $name;
1721
a93b12ba 1722 print "\n";
1e0628fb 1723
1724 } elsif ($input =~ /^\s*-\s*[0-9]?/) {
1725 if ($input =~ /[0-9]+\s*$/) {
1726 $rem_num = $input;
1727 $rem_num =~ s/^\s*-\s*//g;
1728 $rem_num =~ s/\s*$//;
1729 } else {
1730 $rem_num = $#ldap_host;
1731 }
1732 $count = 0;
1733 @new_ldap_host = ();
1734 @new_ldap_base = ();
1735 @new_ldap_port = ();
1736 @new_ldap_name = ();
1737 @new_ldap_charset = ();
1738 @new_ldap_maxrows = ();
1739 while ($count <= $#ldap_host) {
1740 if ($count != $rem_num) {
1741 @new_ldap_host = (@new_ldap_host, $ldap_host[$count]);
1742 @new_ldap_base = (@new_ldap_base, $ldap_base[$count]);
1743 @new_ldap_port = (@new_ldap_port, $ldap_port[$count]);
1744 @new_ldap_name = (@new_ldap_name, $ldap_name[$count]);
1745 @new_ldap_charset = (@new_ldap_charset, $ldap_charset[$count]);
1746 @new_ldap_maxrows = (@new_ldap_maxrows, $ldap_maxrows[$count]);
1747 }
1748 $count++;
1749 }
1750 @ldap_host = @new_ldap_host;
1751 @ldap_base = @new_ldap_base;
1752 @ldap_port = @new_ldap_port;
1753 @ldap_name = @new_ldap_name;
1754 @ldap_charset = @new_ldap_charset;
1755 @ldap_maxrows = @new_ldap_maxrows;
1756 } elsif ($input =~ /^\s*\?\s*/) {
1757 print ".-------------------------.\n";
1758 print "| + (add host) |\n";
1759 print "| - N (remove host) |\n";
1760 print "| l (list hosts) |\n";
1761 print "| d (done) |\n";
1762 print "`-------------------------'\n";
1763 }
1764 print "[ldap] command (?=help) > ";
1765 $input = <STDIN>;
1766 $input =~ s/[\r|\n]//g;
1767 }
1768}
1769
3806fa52 1770sub command62 {
591000ec 1771 print "Some of our developers have come up with very good javascript interface\n";
1772 print "for searching through address books, however, our original goals said\n";
1773 print "that we would be 100% HTML. In order to make it possible to use their\n";
1774 print "interface, and yet stick with our goals, we have also written a plain\n";
1775 print "HTML version of the search. Here, you can choose which version to use.\n";
3806fa52 1776 print "\n";
1777 print "This is just the default value. It is also a user option that each\n";
1778 print "user can configure individually\n";
1779 print "\n";
1780
1781 if ($default_use_javascript_addr_book eq "true") {
1782 $default_value = "y";
1783 } else {
1784 $default_use_javascript_addr_book = "false";
1785 $default_value = "n";
1786 }
c4809aca 1787 print "Use javascript version by default (y/n) [$WHT$default_value$NRM]: $WHT";
3806fa52 1788 $new_show = <STDIN>;
1789 if (($new_show =~ /^y\n/i) || (($new_show =~ /^\n/) && ($default_value eq "y"))) {
1790 $default_use_javascript_addr_book = "true";
1791 } else {
1792 $default_use_javascript_addr_book = "false";
1793 }
1794 return $default_use_javascript_addr_book;
1795}
1e0628fb 1796
ccfb2029 1797
1798sub save_data {
ebd13f55 1799 $tab = " ";
1800 if(open (CF, ">config.php"))
1801 {
1802 print CF "<?php\n";
1803 print CF "\n";
1804
1805 print CF "/**\n";
1806 print CF " * SquirrelMail Configuration File\n";
1807 print CF " * Created using the configure script, conf.pl\n";
1808 print CF " */\n";
1809 print CF "\n";
1810
1811 print CF "global \$config_version, \$config_use_color;\n";
1812 if ($print_config_version) {
1813 print CF "\$config_version = '$print_config_version';\n";
1814 }
1815 print CF "\$config_use_color = $config_use_color;\n";
1816 print CF "\n";
1817
1818 print CF "global \$org_name, \$org_logo, \$org_title, \$signout_page;\n";
1819 print CF "\$org_name = \"$org_name\";\n";
1820 print CF "\$org_logo = '$org_logo';\n";
1821 print CF "\$org_title = \"$org_title\";\n";
1822 print CF "\$signout_page = '$signout_page';\n";
1823 print CF "\n";
1824
1825 print CF "global \$motd;\n";
1826 print CF "\$motd = '$motd';\n";
1827 print CF "\n";
1828
1829 print CF "global \$squirrelmail_default_language;\n";
1830 print CF "\$squirrelmail_default_language = '$squirrelmail_default_language';\n";
1831 print CF "\n";
1832
1833 print CF "global \$domain, \$imapServerAddress, \$imapPort;\n";
1834 print CF "global \$useSendmail, \$smtpServerAddress, \$smtpPort;\n";
1835 print CF "global \$sendmail_path, \$use_authenticated_smtp;\n";
1836 print CF "global \$imap_server_type, \$invert_time;\n";
1837 print CF "global \$optional_delimiter;\n";
1838 print CF "\$domain = '$domain';\n";
1839 print CF "\$imapServerAddress = '$imapServerAddress';\n";
1840 print CF "\$imapPort = $imapPort;\n";
1841 print CF "\$useSendmail = $useSendmail;\n";
1842 print CF "\$smtpServerAddress = '$smtpServerAddress';\n";
1843 print CF "\$smtpPort = $smtpPort;\n";
1844 print CF "\$sendmail_path = '$sendmail_path';\n";
1845 print CF "\$use_authenticated_smtp = $use_authenticated_smtp;\n";
1846 print CF "\$imap_server_type = '$imap_server_type';\n";
1847 print CF "\$invert_time = $invert_time;\n";
1848 print CF "\$optional_delimiter = '$optional_delimiter';\n";
1849 print CF "\n";
1850
1851 print CF "global \$default_folder_prefix;\n";
1852 print CF "global \$trash_folder, \$default_move_to_trash;\n";
1853 print CF "global \$sent_folder, \$default_move_to_sent;\n";
1854 print CF "global \$draft_folder, \$default_save_to_draft;\n";
1855 print CF "global \$show_prefix_option, \$list_special_folders_first;\n";
1856 print CF "global \$use_special_folder_color, \$auto_expunge;\n";
1857 print CF "global \$default_sub_of_inbox;\n";
1858 print CF "global \$show_contain_subfolders_option;\n";
1859 print CF "global \$default_unseen_notify;\n";
1860 print CF "global \$default_unseen_type, \$auto_create_special;\n";
1861 print CF "\$default_folder_prefix = '$default_folder_prefix';\n";
1862 print CF "\$trash_folder = '$trash_folder';\n";
1863 print CF "\$sent_folder = '$sent_folder';\n";
1864 print CF "\$draft_folder = '$draft_folder';\n";
1865 print CF "\$default_move_to_trash = $default_move_to_trash;\n";
1866 print CF "\$default_move_to_sent = $default_move_to_sent;\n";
1867 print CF "\$default_save_as_draft = $default_save_as_draft;\n";
1868 print CF "\$show_prefix_option = $show_prefix_option;\n";
1869 print CF "\$list_special_folders_first = $list_special_folders_first;\n";
1870 print CF "\$use_special_folder_color = $use_special_folder_color;\n";
1871 print CF "\$auto_expunge = $auto_expunge;\n";
1872 print CF "\$default_sub_of_inbox = $default_sub_of_inbox;\n";
1873 print CF "\$show_contain_subfolders_option = $show_contain_subfolders_option;\n";
1874 print CF "\$default_unseen_notify = $default_unseen_notify;\n";
1875 print CF "\$default_unseen_type = $default_unseen_type;\n";
1876 print CF "\$auto_create_special = $auto_create_special;\n";
1877 print CF "\n";
1878
1879 print CF "global \$default_charset;\n";
1880 print CF "global \$data_dir, \$attachment_dir, \$dir_hash_level;\n";
1881 print CF "global \$default_left_size, \$force_username_lowercase;\n";
1882 print CF "global \$default_use_priority, \$hide_sm_attributions;\n";
1883 print CF "\$default_charset = '$default_charset';\n";
1884 print CF "\$data_dir = '$data_dir';\n";
1885 print CF "\$attachment_dir = \"$attachment_dir\";\n";
1886 print CF "\$dir_hash_level = $dir_hash_level;\n";
1887 print CF "\$default_left_size = $default_left_size;\n";
1888 print CF "\$force_username_lowercase = $force_username_lowercase;\n";
1889 print CF "\$default_use_priority = $default_use_priority;\n";
1890 print CF "\$hide_sm_attributions = $hide_sm_attributions;\n";
1891 print CF "\n";
1892
1893 print CF "global \$plugins;\n";
1894 for ($ct=0; $ct <= $#plugins; $ct++) {
1895 print CF "\$plugins[$ct] = '$plugins[$ct]';\n";
1896 }
1897 print CF "\n";
1898
1899 print CF "global \$theme_css, \$theme;\n";
1900 print CF "\$theme_css = '$theme_css';\n";
1901 for ($count=0; $count <= $#theme_name; $count++) {
1902 print CF "\$theme[$count]['PATH'] = '$theme_path[$count]';\n";
1903 print CF "\$theme[$count]['NAME'] = '$theme_name[$count]';\n";
1904 }
1905 print CF "\n";
1906
1907 if ($default_use_javascript_addr_book ne "true") {
1908 $default_use_javascript_addr_book = "false";
1909 }
1910 print CF "global \$default_use_javascript_addr_book, \$ldap_server;\n";
1911 print CF "\$default_use_javascript_addr_book = $default_use_javascript_addr_book;\n";
1912 for ($count=0; $count <= $#ldap_host; $count++) {
1913 print CF "\$ldap_server[$count] = array(\n";
1914 print CF " 'host' => '$ldap_host[$count]',\n";
1915 print CF " 'base' => '$ldap_base[$count]'";
1916 if ($ldap_name[$count]) {
1917 print CF ",\n";
1918 print CF " 'name' => '$ldap_name[$count]'";
1919 }
1920 if ($ldap_port[$count]) {
1921 print CF ",\n";
1922 print CF " 'port' => '$ldap_port[$count]'";
1923 }
1924 if ($ldap_charset[$count]) {
1925 print CF ",\n";
1926 print CF " 'charset' => '$ldap_charset[$count]'";
1927 }
1928 if ($ldap_maxrows[$count]) {
1929 print CF ",\n";
1930 print CF " 'maxrows' => '$ldap_maxrows[$count]'";
1931 }
1932 print CF "\n";
1933 print CF ");\n";
1934 print CF "\n";
1935 }
1936
1937 print CF "/**\n";
1938 print CF " * Make sure there are no characters after the PHP closing\n";
1939 print CF " * tag below (including newline characters and whitespace).\n";
1940 print CF " * Otherwise, that character will cause the headers to be\n";
1941 print CF " * sent and regular output to begin, which will majorly screw\n";
1942 print CF " * things up when we try to send more headers later.\n";
1943 print CF " */\n";
1944 print CF "?>";
1945
1946 close CF;
1947
1948 print "Data saved in config.php\n";
1949 } else {
1950 print "Error saving config.php: $!\n";
1951 }
911ad01c 1952}
a93b12ba 1953
1954sub set_defaults {
1955 system "clear";
612eda0a 1956 print $WHT."SquirrelMail Configuration : ".$NRM;
1957 if ($config == 1) { print "Read: config.php"; }
1958 elsif ($config == 2) { print "Read: config_default.php"; }
1959 print "\n";
1960 print "---------------------------------------------------------\n";
1961
a93b12ba 1962 print "While we have been building SquirrelMail, we have discovered some\n";
1963 print "preferences that work better with some servers that don't work so\n";
1964 print "well with others. If you select your IMAP server, this option will\n";
1965 print "set some pre-defined settings for that server.\n";
1966 print "\n";
1967 print "Please note that you will still need to go through and make sure\n";
1968 print "everything is correct. This does not change everything. There are\n";
e9f8ea4e 1969 print "only a few settings that this will change.\n";
a93b12ba 1970 print "\n";
1971
1972 $continue = 0;
1973 while ($continue != 1) {
1974 print "Please select your IMAP server:\n";
1975 print " cyrus = Cyrus IMAP server\n";
1976 print " uw = University of Washington's IMAP server\n";
1977 print " exchange = Microsoft Exchange IMAP server\n";
1978 print " courier = Courier IMAP server\n";
1979 print " quit = Do not change anything\n";
1980 print "Command >> ";
1981 $server = <STDIN>;
1982 $server =~ s/[\r|\n]//g;
1983
c4809aca 1984 print "\n";
1985 if ($server eq "cyrus") {
dbcc5ca3 1986 $imap_server_type = "cyrus";
3a94810f 1987 $default_folder_prefix = "";
1988 $trash_folder = "INBOX.Trash";
1989 $sent_folder = "INBOX.Sent";
1990 $draft_folder = "INBOX.Drafts";
1991 $show_prefix_option = false;
1992 $default_sub_of_inbox = true;
1993 $show_contain_subfolders_option = false;
dbcc5ca3 1994 $optional_delimiter = ".";
3a94810f 1995 $disp_default_folder_prefix = "<none>";
c4809aca 1996
a93b12ba 1997 $continue = 1;
1998 } elsif ($server eq "uw") {
dbcc5ca3 1999 $imap_server_type = "uw";
3a94810f 2000 $default_folder_prefix = "mail/";
2001 $trash_folder = "Trash";
2002 $sent_folder = "Sent";
2003 $draft_folder = "Drafts";
2004 $show_prefix_option = true;
2005 $default_sub_of_inbox = false;
2006 $show_contain_subfolders_option = true;
dbcc5ca3 2007 $optional_delimiter = "/";
3a94810f 2008 $disp_default_folder_prefix = $default_folder_prefix;
2009
a93b12ba 2010 $continue = 1;
2011 } elsif ($server eq "exchange") {
dbcc5ca3 2012 $imap_server_type = "exchange";
3a94810f 2013 $default_folder_prefix = "";
2014 $default_sub_of_inbox = true;
2015 $trash_folder = "INBOX/Deleted Items";
2016 $sent_folder = "INBOX/Sent Items";
2017 $drafts_folder = "INBOX/Drafts";
2018 $show_prefix_option = false;
2019 $show_contain_subfolders_option = false;
dbcc5ca3 2020 $optional_delimiter = "detect";
3a94810f 2021 $disp_default_folder_prefix = "<none>";
612eda0a 2022
3a94810f 2023 $continue = 1;
a93b12ba 2024 } elsif ($server eq "courier") {
dbcc5ca3 2025 $imap_server_type = "courier";
0f529285 2026 $default_folder_prefix = "INBOX.";
3a94810f 2027 $trash_folder = "Trash";
2028 $sent_folder = "Sent";
2029 $draft_folder = "Drafts";
0f529285 2030 $show_prefix_option = false;
3a94810f 2031 $default_sub_of_inbox = false;
0f529285 2032 $show_contain_subfolders_option = false;
dbcc5ca3 2033 $optional_delimiter = ".";
3a94810f 2034 $disp_default_folder_prefix = $default_folder_prefix;
612eda0a 2035
a93b12ba 2036 $continue = 1;
3a94810f 2037 } elsif ($server eq "quit") {
2038 $continue = 1;
a93b12ba 2039 } else {
3a94810f 2040 $disp_default_folder_prefix = $default_folder_prefix;
a93b12ba 2041 print "Unrecognized server: $server\n";
3a94810f 2042 print "\n";
a93b12ba 2043 }
3a94810f 2044
dbcc5ca3 2045 print " imap_server_type = $imap_server_type\n";
3a94810f 2046 print " default_folder_prefix = $disp_default_folder_prefix\n";
2047 print " trash_folder = $trash_folder\n";
2048 print " sent_folder = $sent_folder\n";
2049 print " draft_folder = $draft_folder\n";
2050 print " show_prefix_option = $show_prefix_option\n";
2051 print " default_sub_of_inbox = $default_sub_of_inbox\n";
2052 print "show_contain_subfolders_option = $show_contain_subfolders_option\n";
dbcc5ca3 2053 print " optional_delimiter = $optional_delimiter\n";
a93b12ba 2054 }
c4809aca 2055 print "\nPress any key to continue...";
2056 $tmp = <STDIN>;
a93b12ba 2057}