5610f64bbeb91b34ca5719e8d40ac2d787484a03
3 # Luke Ehresman (luke@squirrelmail.org)
5 # A simple configure script to configure squirrelmail
8 ############################################################
9 $conf_pl_version = "x63";
11 ############################################################
12 # Some people try to run this as a CGI. That's wrong!
13 ############################################################
14 if(defined($ENV{'PATH_INFO'}) || defined($ENV{'QUERY_STRING'}) ||
15 defined($ENV{'REQUEST_METHOD'})) {
16 print "Content-Type: text/html\n\n";
17 print "You must run this script from the command line.";
21 ############################################################
22 # First, lets read in the data already in there...
23 ############################################################
24 if ( -e
"config.php") {
25 open (FILE
, "config.php");
26 while ($line = <FILE
>) {
27 if ($line =~ /^\s+\$/) {
32 if ($var =~ /^([a-z]|[A-Z])/) {
33 @o = split(/\s*EQUALS\s*/, $var);
34 if ($o[0] eq "config_version") {
35 $o[1] =~ s/[\n|\r]//g;
40 $config_version = $o[1];
48 if ($config_version ne $conf_pl_version) {
50 print $WHT."WARNING:\n".$NRM;
51 print " The file \"config/config.php\" was found, but it is for an older version of\n";
52 print " SquirrelMail. It is possible to still read the defaults from this file\n";
53 print " but be warned that many preferences change between versions. It is\n";
54 print " recommended that you start with a clean config.php for each upgrade that\n";
55 print " you do. To do this, just move config/config.php out of the way.\n\n";
56 print "Continue loading with the old config.php [y/N]? ";
58 if (($ctu !~ /^y\n/i) || ($ctu =~ /^\n/)) {
62 print "\nDo you want me to stop warning you [y/N]? ";
64 if ($ctu =~ /^y\n/i) {
65 $print_config_version = $conf_pl_version;
67 $print_config_version = $config_version;
70 $print_config_version = $config_version;
74 open (FILE
, "config.php");
75 } elsif (-e
"config_default.php") {
76 open (FILE
, "config_default.php");
77 while ($line = <FILE
>) {
78 if ($line =~ /^\s+\$/) {
83 if ($var =~ /^([a-z]|[A-Z])/) {
84 @o = split(/\s*EQUALS\s*/, $var);
85 if ($o[0] eq "config_version") {
86 $o[1] =~ s/[\n|\r]//g;
91 $config_version = $o[1];
99 if ($config_version ne $conf_pl_version) {
101 print $WHT."WARNING:\n".$NRM;
102 print " You are trying to use a \"config_default.php\" from an older version of\n";
103 print " SquirrelMail. This is HIGHLY unrecommended. You should get the\n";
104 print " \"config_default.php\" that matches the version of SquirrelMail that you\n";
105 print " are running. You can get this from the SquirrelMail web page by going\n";
106 print " to: http://www.squirrelmail.org.\n\n";
107 print "Continue loading with the old config_default.php (not a good idea) [y/N]? ";
109 if (($ctu !~ /^y\n/i) || ($ctu =~ /^\n/)) {
113 print "\nDo you want me to stop warning you [y/N]? ";
115 if ($ctu =~ /^y\n/i) {
116 $print_config_version = $conf_pl_version;
118 $print_config_version = $config_version;
121 $print_config_version = $config_version;
124 open (FILE
, "config_default.php");
126 print "No configuration file found. Please get config_default.php or\n";
127 print "config.php before running this again. This program needs a\n";
128 print "default config file to get default values.\n";
132 # Reads and parses the current configuration file (either
133 # config.php or config_default.php).
135 while ($line = <FILE
>) {
136 if ($line =~ /^\s+\$/) {
141 if ($var =~ /^([a-z]|[A-Z])/) {
142 @options = split(/\s*EQUALS\s*/, $var);
143 $options[1] =~ s/[\n|\r]//g;
144 $options[1] =~ s/\";\s*$//;
145 $options[1] =~ s/;$//;
146 $options[1] =~ s/^\"//;
148 if ($options[0] =~ /^theme\[[0-9]+\]\["PATH"\]/) {
150 $sub =~ s/\]\["PATH"\]//;
152 if (-e
"../themes") {
153 $options[1] =~ s/^\.\.\/config/\
.\
.\
/themes/;
155 $theme_path[$sub] = $options[1];
156 } elsif ($options[0] =~ /^theme\[[0-9]+\]\["NAME"\]/) {
158 $sub =~ s/\]\["NAME"\]//;
160 $theme_name[$sub] = $options[1];
161 } elsif ($options[0] =~ /^plugins\[[0-9]+\]/) {
164 $sub =~ s/^plugins\[//;
165 $plugins[$sub] = $options[1];
166 } elsif ($options[0] =~ /^ldap_server\[[0-9]+\]/) {
169 $sub =~ s/^ldap_server\[//;
171 while (($tmp = <FILE
>) && ($continue != 1)) {
172 if ($tmp =~ /\);\s*$/) {
176 if ($tmp =~ /^\s*\"host\"/i) {
177 $tmp =~ s/^\s*\"host\"\s*=>\s*\"//i;
179 $tmp =~ s/\"\);\s*$//;
181 } elsif ($tmp =~ /^\s*\"base\"/i) {
182 $tmp =~ s/^\s*\"base\"\s*=>\s*\"//i;
184 $tmp =~ s/\"\);\s*$//;
186 } elsif ($tmp =~ /^\s*\"charset\"/i) {
187 $tmp =~ s/^\s*\"charset\"\s*=>\s*\"//i;
189 $tmp =~ s/\"\);\s*$//;
191 } elsif ($tmp =~ /^\s*\"port\"/i) {
192 $tmp =~ s/^\s*\"port\"\s*=>\s*\"//i;
194 $tmp =~ s/\"\);\s*$//;
196 } elsif ($tmp =~ /^\s*\"maxrows\"/i) {
197 $tmp =~ s/^\s*\"maxrows\"\s*=>\s*\"//i;
199 $tmp =~ s/\"\);\s*$//;
201 } elsif ($tmp =~ /^\s*\"name\"/i) {
202 $tmp =~ s/^\s*\"name\"\s*=>\s*\"//i;
204 $tmp =~ s/\"\);\s*$//;
208 $ldap_host[$sub] = $host;
209 $ldap_base[$sub] = $base;
210 $ldap_name[$sub] = $name;
211 $ldap_port[$sub] = $port;
212 $ldap_maxrows[$sub] = $maxrows;
213 $ldap_charset[$sub] = $charset;
215 ${$options[0]} = $options[1];
221 if ($useSendmail ne "true") {
222 $useSendmail = "false";
224 if (!$sendmail_path) {
225 $sendmail_path = "/usr/sbin/sendmail";
227 if (!$default_unseen_notify) {
228 $default_unseen_notify = 2;
230 if (!$default_unseen_type) {
231 $default_unseen_type = 1;
233 if (!$config_use_color) {
234 $config_use_color = 1;
237 $invert_time = "false";
239 if (!$force_username_lowercase) {
240 $force_username_lowercase = "false";
242 if (!$optional_delimiter) {
243 $optional_delimiter = "detect";
245 if (!$use_authenticated_smtp) {
246 $use_authenticated_smtp = "false";
248 if (!$auto_create_special) {
249 $auto_create_special = "false";
252 #####################################################################################
253 if ($config_use_color == 1) {
259 $config_use_color = 2;
262 while (($command ne "q") && ($command ne "Q")) {
264 print $WHT."SquirrelMail Configuration : ".$NRM;
265 if ($config == 1) { print "Read: config.php"; }
266 elsif ($config == 2) { print "Read: config_default.php"; }
268 print "---------------------------------------------------------\n";
271 print $WHT."Main Menu --\n".$NRM;
272 print "1. Organization Preferences\n";
273 print "2. Server Settings\n";
274 print "3. Folder Defaults\n";
275 print "4. General Options\n";
277 print "6. Address Books (LDAP)\n";
278 print "7. Message of the Day (MOTD)\n";
279 print "8. Plugins\n";
281 print "D. Set pre-defined settings for specific IMAP servers\n";
283 } elsif ($menu == 1) {
284 print $WHT."Organization Preferences\n".$NRM;
285 print "1. Organization Name : $WHT$org_name$NRM\n";
286 print "2. Organization Logo : $WHT$org_logo$NRM\n";
287 print "3. Organization Title : $WHT$org_title$NRM\n";
288 print "4. Signout Page : $WHT$signout_page$NRM\n";
289 print "5. Default Language : $WHT$squirrelmail_default_language$NRM\n";
291 print "R Return to Main Menu\n";
292 } elsif ($menu == 2) {
293 print $WHT."Server Settings\n".$NRM;
294 print "1. Domain : $WHT$domain$NRM\n";
295 print "2. IMAP Server : $WHT$imapServerAddress$NRM\n";
296 print "3. IMAP Port : $WHT$imapPort$NRM\n";
297 print "4. Use Sendmail/SMTP : $WHT";
298 if ($useSendmail eq "true") {
304 if ($useSendmail eq "true") {
305 print "5. Sendmail Path : $WHT$sendmail_path$NRM\n";
307 print "6. SMTP Server : $WHT$smtpServerAddress$NRM\n";
308 print "7. SMTP Port : $WHT$smtpPort$NRM\n";
309 print "8. Authenticated SMTP : $WHT$use_authenticated_smtp$NRM\n";
311 print "9. Server : $WHT$imap_server_type$NRM\n";
312 print "10. Invert Time : $WHT$invert_time$NRM\n";
313 print "11. Delimiter : $WHT$optional_delimiter$NRM\n";
315 print "R Return to Main Menu\n";
316 } elsif ($menu == 3) {
317 print $WHT."Folder Defaults\n".$NRM;
318 print "1. Default Folder Prefix : $WHT$default_folder_prefix$NRM\n";
319 print "2. Show Folder Prefix Option : $WHT$show_prefix_option$NRM\n";
320 print "3. Trash Folder : $WHT$trash_folder$NRM\n";
321 print "4. Sent Folder : $WHT$sent_folder$NRM\n";
322 print "5. Drafts Folder : $WHT$draft_folder$NRM\n";
323 print "6. By default, move to trash : $WHT$default_move_to_trash$NRM\n";
324 print "7. By default, move to sent : $WHT$default_move_to_sent$NRM\n";
325 print "8. By default, save as draft : $WHT$default_save_as_draft$NRM\n";
326 print "9. List Special Folders First : $WHT$list_special_folders_first$NRM\n";
327 print "10. Show Special Folders Color : $WHT$use_special_folder_color$NRM\n";
328 print "11. Auto Expunge : $WHT$auto_expunge$NRM\n";
329 print "12. Default Sub. of INBOX : $WHT$default_sub_of_inbox$NRM\n";
330 print "13. Show 'Contain Sub.' Option : $WHT$show_contain_subfolders_option$NRM\n";
331 print "14. Default Unseen Notify : $WHT$default_unseen_notify$NRM\n";
332 print "15. Default Unseen Type : $WHT$default_unseen_type$NRM\n";
333 print "16. Auto Create Special Folders : $WHT$auto_create_special$NRM\n";
335 print "R Return to Main Menu\n";
336 } elsif ($menu == 4) {
337 print $WHT."General Options\n".$NRM;
338 print "1. Default Charset : $WHT$default_charset$NRM\n";
339 print "2. Data Directory : $WHT$data_dir$NRM\n";
340 print "3. Attachment Directory : $WHT$attachment_dir$NRM\n";
341 print "4. Default Left Size : $WHT$default_left_size$NRM\n";
342 print "5. Usernames in Lowercase : $WHT$force_username_lowercase$NRM\n";
344 print "R Return to Main Menu\n";
345 } elsif ($menu == 5) {
346 print $WHT."Themes\n".$NRM;
347 print "1. Change Themes\n";
348 for ($count = 0; $count <= $#theme_name; $count++) {
349 print " > $theme_name[$count]\n";
351 print "2. CSS File : $WHT$theme_css$NRM\n";
353 print "R Return to Main Menu\n";
354 } elsif ($menu == 6) {
355 print $WHT."Address Books (LDAP)\n".$NRM;
356 print "1. Change Servers\n";
357 for ($count = 0; $count <= $#ldap_host; $count++) {
358 print " > $ldap_host[$count]\n";
360 print "2. Use Javascript Address Book Search : $WHT$default_use_javascript_addr_book$NRM\n";
362 print "R Return to Main Menu\n";
363 } elsif ($menu == 7) {
364 print $WHT."Message of the Day (MOTD)\n".$NRM;
367 print "1 Edit the MOTD\n";
369 print "R Return to Main Menu\n";
370 } elsif ($menu == 8) {
371 print $WHT."Plugins\n".$NRM;
372 print " Installed Plugins\n";
374 for ($count = 0; $count <= $#plugins; $count++) {
376 print " $num. $plugins[$count]\n";
378 print "\n Available Plugins:\n";
379 opendir(DIR
, "../plugins");
380 @files = readdir(DIR
);
382 @unused_plugins = ();
383 for ($i=0; $i <= $#files; $i++) {
384 if ( -d
"../plugins/" . $files[$i] &&
385 $files[$i] !~ /^\./ && $files[$i] ne "CVS") {
387 for ($k=0; $k<=$#plugins; $k++) {
388 if ($plugins[$k] eq $files[$i]) {
393 $unused_plugins[$pos] = $files[$i];
399 for ($i=0; $i<=$#unused_plugins; $i++) {
401 print " $num. $unused_plugins[$i]\n";
406 print "R Return to Main Menu\n";
408 if ($config_use_color == 1) {
409 print "C. Turn color off\n";
411 print "C. Turn color on\n";
413 print "S Save data\n";
417 print "Command >> ".$WHT;
419 $command =~ s/[\n|\r]//g;
420 $command =~ tr/A-Z/a-z/;
423 # Read the commands they entered.
424 if ($command eq "r") {
426 } elsif ($command eq "s") {
428 print "Data saved in config.php\n";
429 print "Press enter to continue...";
432 } elsif (($command eq "q") && ($saved == 0)) {
433 print "You have not saved your data.\n";
434 print "Save? [".$WHT."Y".$NRM."/n]: ";
436 if (($save =~ /^y/i) || ($save =~ /^\s*$/)) {
439 } elsif ($command eq "c") {
440 if ($config_use_color == 1) {
441 $config_use_color = 2;
445 $config_use_color = 1;
449 } elsif ($command eq "d" && $menu == 0) {
454 if (($command > 0) && ($command < 9)) {
457 } elsif ($menu == 1) {
458 if ($command == 1) { $org_name = command1
(); }
459 elsif ($command == 2) { $org_logo = command2
(); }
460 elsif ($command == 3) { $org_title = command3
(); }
461 elsif ($command == 4) { $signout_page = command4
(); }
462 elsif ($command == 5) { $squirrelmail_default_language = command5
(); }
463 } elsif ($menu == 2) {
464 if ($command == 1) { $domain = command11
(); }
465 elsif ($command == 2) { $imapServerAddress = command12
(); }
466 elsif ($command == 3) { $imapPort = command13
(); }
467 elsif ($command == 4) { $useSendmail = command14
(); }
468 elsif ($command == 5) { $sendmail_path = command15
(); }
469 elsif ($command == 6) { $smtpServerAddress = command16
(); }
470 elsif ($command == 7) { $smtpPort = command17
(); }
471 elsif ($command == 8) { $use_authenticated_smtp = command18
(); }
472 elsif ($command == 9) { $imap_server_type = command19
(); }
473 elsif ($command == 10) { $invert_time = command110
(); }
474 elsif ($command == 11) { $optional_delimiter = command111
(); }
475 } elsif ($menu == 3) {
476 if ($command == 1) { $default_folder_prefix = command21
(); }
477 elsif ($command == 2) { $show_prefix_option = command22
(); }
478 elsif ($command == 3) { $trash_folder = command23a
(); }
479 elsif ($command == 4) { $sent_folder = command23b
(); }
480 elsif ($command == 5) { $draft_folder = command23c
(); }
481 elsif ($command == 6) { $default_move_to_trash = command24a
(); }
482 elsif ($command == 7) { $default_move_to_sent = command24b
(); }
483 elsif ($command == 8) { $default_save_as_draft = command24c
(); }
484 elsif ($command == 9) { $list_special_folders_first = command27
(); }
485 elsif ($command == 10) { $use_special_folder_color = command28
(); }
486 elsif ($command == 11) { $auto_expunge = command29
(); }
487 elsif ($command == 12) { $default_sub_of_inbox = command210
(); }
488 elsif ($command == 13) { $show_contain_subfolders_option = command211
(); }
489 elsif ($command == 14) { $default_unseen_notify = command212
(); }
490 elsif ($command == 15) { $default_unseen_type = command213
(); }
491 elsif ($command == 16) { $auto_create_special = command214
(); }
492 } elsif ($menu == 4) {
493 if ($command == 1) { $default_charset = command31
(); }
494 elsif ($command == 2) { $data_dir = command33
(); }
495 elsif ($command == 3) { $attachment_dir = command34
(); }
496 elsif ($command == 4) { $default_left_size = command35
(); }
497 elsif ($command == 5) { $force_username_lowercase = command36
(); }
498 } elsif ($menu == 5) {
499 if ($command == 1) { command41
(); }
500 elsif ($command == 2) { $theme_css = command42
(); }
501 } elsif ($menu == 6) {
502 if ($command == 1) { command61
(); }
503 elsif ($command == 2) { command62
(); }
504 } elsif ($menu == 7) {
505 if ($command == 1) { $motd = command71
(); }
506 } elsif ($menu == 8) {
507 if ($command =~ /^[0-9]+/) { @plugins = command81
(); }
512 ####################################################################################
516 print "We have tried to make the name SquirrelMail as transparent as\n";
517 print "possible. If you set up an organization name, most places where\n";
518 print "SquirrelMail would take credit will be credited to your organization.\n";
520 print "[$WHT$org_name$NRM]: $WHT";
521 $new_org_name = <STDIN
>;
522 if ($new_org_name eq "\n") {
523 $new_org_name = $org_name;
525 $new_org_name =~ s/[\r|\n]//g;
527 return $new_org_name;
533 print "Your organization's logo is an image that will be displayed at\n";
534 print "different times throughout SquirrelMail. This is asking for the\n";
535 print "literal (/usr/local/squirrelmail/images/logo.jpg) or relative\n";
536 print "(../images/logo.jpg) path to your logo.\n";
538 print "[$WHT$org_logo$NRM]: $WHT";
539 $new_org_logo = <STDIN
>;
540 if ($new_org_logo eq "\n") {
541 $new_org_logo = $org_logo;
543 $new_org_logo =~ s/[\r|\n]//g;
545 return $new_org_logo;
550 print "A title is what is displayed at the top of the browser window in\n";
551 print "the titlebar. Usually this will end up looking something like:\n";
552 print "\"Netscape: $org_title\"\n";
554 print "[$WHT$org_title$NRM]: $WHT";
555 $new_org_title = <STDIN
>;
556 if ($new_org_title eq "\n") {
557 $new_org_title = $org_title;
559 $new_org_title =~ s/[\r|\n]//g;
561 return $new_org_title;
566 print "When users click the Sign Out button they will be logged out and\n";
567 print "then sent to signout_page. If signout_page is left empty,\n";
568 print "(hit space and then return) they will be taken, as normal,\n";
569 print "to the default and rather sparse SquirrelMail signout page.\n";
571 print "[$WHT$signout_page$NRM]: $WHT";
572 $new_signout_page = <STDIN
>;
573 if ($new_signout_page eq "\n") {
574 $new_signout_page = $signout_page;
576 $new_signout_page =~ s/[\r|\n]//g;
577 $new_signout_page =~ s/^\s+$//g;
579 return $new_signout_page;
584 print "SquirrelMail attempts to set the language in many ways. If it\n";
585 print "can not figure it out in another way, it will default to this\n";
586 print "language. Please use the two-letter code for the desired language.\n";
588 print "[$WHT$squirrelmail_default_language$NRM]: $WHT";
589 $new_signout_page = <STDIN
>;
590 if ($new_signout_page eq "\n") {
591 $new_signout_page = $squirrelmail_default_language;
593 $new_signout_page =~ s/[\r|\n]//g;
594 $new_signout_page =~ s/^\s+$//g;
596 return $new_signout_page;
599 ####################################################################################
603 print "The domain name is the suffix at the end of all email messages. If\n";
604 print "for example, your email address is jdoe\@myorg.com, then your domain\n";
605 print "would be myorg.com.\n";
607 print "[$WHT$domain$NRM]: $WHT";
608 $new_domain = <STDIN
>;
609 if ($new_domain eq "\n") {
610 $new_domain = $domain;
612 $new_domain =~ s/[\r|\n]//g;
619 print "This is the address where your IMAP server resides.\n";
620 print "[$WHT$imapServerAddress$NRM]: $WHT";
621 $new_imapServerAddress = <STDIN
>;
622 if ($new_imapServerAddress eq "\n") {
623 $new_imapServerAddress = $imapServerAddress;
625 $new_imapServerAddress =~ s/[\r|\n]//g;
627 return $new_imapServerAddress;
632 print "This is the port that your IMAP server is on. Usually this is 143.\n";
633 print "[$WHT$imapPort$NRM]: $WHT";
634 $new_imapPort = <STDIN
>;
635 if ($new_imapPort eq "\n") {
636 $new_imapPort = $imapPort;
638 $new_imapPort =~ s/[\r|\n]//g;
640 return $new_imapPort;
645 print "You now need to choose the method that you will use for sending\n";
646 print "messages in SquirrelMail. You can either connect to an SMTP server\n";
647 print "or use sendmail directly.\n";
648 if ($useSendmail eq "true") {
649 $default_value = "1";
651 $default_value = "2";
654 print " 1. Sendmail\n";
656 print "Your choice [1/2] [$WHT$default_value$NRM]: $WHT";
657 $use_sendmail = <STDIN
>;
658 if (($use_sendmail =~ /^1\n/i) || (($use_sendmail =~ /^\n/) && ($default_value eq "1"))) {
659 $useSendmail = "true";
661 $useSendmail = "false";
668 if ($sendmail_path[0] !~ /./) {
669 $sendmail_path = "/usr/sbin/sendmail";
671 print "Specify where the sendmail executable is located. Usually /usr/sbin/sendmail\n";
672 print "[$WHT$sendmail_path$NRM]: $WHT";
673 $new_sendmail_path = <STDIN
>;
674 if ($new_sendmail_path eq "\n") {
675 $new_sendmail_path = $sendmail_path;
677 $new_sendmail_path =~ s/[\r|\n]//g;
679 return $new_sendmail_path;
684 print "This is the location of your SMTP server.\n";
685 print "[$WHT$smtpServerAddress$NRM]: $WHT";
686 $new_smtpServerAddress = <STDIN
>;
687 if ($new_smtpServerAddress eq "\n") {
688 $new_smtpServerAddress = $smtpServerAddress;
690 $new_smtpServerAddress =~ s/[\r|\n]//g;
692 return $new_smtpServerAddress;
697 print "This is the port to connect to for SMTP. Usually 25.\n";
698 print "[$WHT$smtpPort$NRM]: $WHT";
699 $new_smtpPort = <STDIN
>;
700 if ($new_smtpPort eq "\n") {
701 $new_smtpPort = $smtpPort;
703 $new_smtpPort =~ s/[\r|\n]//g;
705 return $new_smtpPort;
708 # authenticated server
710 print "Do you wish to use an authenticated SMTP server? Your server must\n";
711 print "support this in order for SquirrelMail to work with it. We implemented\n";
712 print "it according to RFC 2554.\n";
715 $YesNo = 'y' if ($use_authenticated_smtp eq "true");
717 print "Use authenticated SMTP server (y/n) [$WHT$YesNo$NRM]: $WHT";
719 $new_use_authenticated_smtp = <STDIN
>;
720 $new_use_authenticated_smtp =~ tr/yn//cd;
721 return "true" if ($new_use_authenticated_smtp eq "y");
722 return "false" if ($new_use_authenticated_smtp eq "n");
723 return $use_authenticated_smtp;
728 print "Each IMAP server has its own quirks. As much as we tried to stick\n";
729 print "to standards, it doesn't help much if the IMAP server doesn't follow\n";
730 print "the same principles. We have made some work-arounds for some of\n";
731 print "these servers. If you would like to use them, please select your\n";
732 print "IMAP server. If you do not wish to use these work-arounds, you can\n";
733 print "set this to \"other\", and none will be used.\n";
734 print " cyrus = Cyrus IMAP server\n";
735 print " uw = University of Washington's IMAP server\n";
736 print " exchange = Microsoft Exchange IMAP server\n";
737 print " courier = Courier IMAP server\n";
738 print " other = Not one of the above servers\n";
739 print "[$WHT$imap_server_type$NRM]: $WHT";
740 $new_imap_server_type = <STDIN
>;
741 if ($new_imap_server_type eq "\n") {
742 $new_imap_server_type = $imap_server_type;
744 $new_imap_server_type =~ s/[\r|\n]//g;
746 return $new_imap_server_type;
751 print "Sometimes the date of messages sent is messed up (off by a few hours\n";
752 print "on some machines). Typically this happens if the system doesn't support\n";
753 print "tm_gmtoff. It will happen only if your time zone is \"negative\".\n";
754 print "This most often occurs on Solaris 7 machines in the United States.\n";
755 print "By default, this is off. It should be kept off unless problems surface\n";
756 print "about the time that messages are sent.\n";
757 print " no = Do NOT fix time -- almost always correct\n";
758 print " yes = Fix the time for this system\n";
761 $YesNo = 'y' if ($invert_time eq "true");
763 print "Fix the time for this system (y/n) [$WHT$YesNo$NRM]: $WHT";
765 $new_invert_time = <STDIN
>;
766 $new_invert_time =~ tr/yn//cd;
767 return "true" if ($new_invert_time eq "y");
768 return "false" if ($new_invert_time eq "n");
773 print "This is the delimiter that your IMAP server uses to distinguish between\n";
774 print "folders. For example, Cyrus uses '.' as the delimiter and a complete\n";
775 print "folder would look like 'INBOX.Friends.Bob', while UW uses '/' and would\n";
776 print "look like 'INBOX/Friends/Bob'. Normally this should be left at 'detect'\n";
777 print "but if you are sure you konw what delimiter your server uses, you can\n";
778 print "specify it here.\n";
779 print "\nTo have it autodetect the delimiter, set it to 'detect'.\n\n";
780 print "[$WHT$optional_delimiter$NRM]: $WHT";
781 $new_optional_delimiter = <STDIN
>;
782 if ($new_optional_delimiter eq "\n") {
783 $new_optional_delimiter = $optional_delimiter;
785 $new_optional_delimiter =~ s/[\r|\n]//g;
787 return $new_optional_delimiter;
792 print "\nYou can now create the welcome message that is displayed\n";
793 print "every time a user logs on. You can use HTML or just plain\n";
794 print "text. If you do not wish to have one, just make it blank.\n\n(Type @ on a blank line to exit)\n";
800 $line =~ s/[\r|\n]//g;
802 $line =~ s/ /\ \ /g;
803 $line =~ s/\t/\ \ \ \ /g;
805 $line =~ s/\"/\\\"/g;
807 $new_motd = $new_motd . $line;
809 } while ($line ne "@");
813 ################# PLUGINS ###################
816 $command =~ s/[\s|\n|\r]*//g;
818 $command = $command - 1;
819 if ($command <= $#plugins) {
822 while ($ct <= $#plugins) {
823 if ($ct != $command) {
824 @newplugins = (@newplugins, $plugins[$ct]);
828 @plugins = @newplugins;
829 } elsif ($command <= $#plugins + $#unused_plugins + 1) {
830 $num = $command - $#plugins - 1;
831 @newplugins = @plugins;
833 while ($ct <= $#unused_plugins) {
835 @newplugins = (@newplugins, $unused_plugins[$ct]);
839 @plugins = @newplugins;
845 ################# FOLDERS ###################
847 # default_folder_prefix
849 print "Some IMAP servers (UW, for example) store mail and folders in\n";
850 print "your user space in a separate subdirectory. This is where you\n";
851 print "specify what that directory is.\n";
853 print "EXAMPLE: mail/";
855 print "NOTE: If you use Cyrus, or some server that would not use this\n";
856 print " option, you must set this to 'none'.\n";
858 print "[$WHT$default_folder_prefix$NRM]: $WHT";
859 $new_default_folder_prefix = <STDIN
>;
860 if ($new_default_folder_prefix eq "\n") {
861 $new_default_folder_prefix = $default_folder_prefix;
863 $new_default_folder_prefix =~ s/[\r|\n]//g;
865 if (($new_default_folder_prefix =~ /^\s*$/) || ($new_default_folder_prefix =~ /none/i)) {
866 $new_default_folder_prefix = "";
868 $new_default_folder_prefix =~ s/\/*$//g
;
869 $new_default_folder_prefix =~ s/$/\//g
;
871 return $new_default_folder_prefix;
876 print "It is possible to set up the default folder prefix as a user\n";
877 print "specific option, where each user can specify what their mail\n";
878 print "folder is. If you set this to false, they will never see the\n";
879 print "option, but if it is true, this option will appear in the\n";
880 print "'options' section.\n";
882 print "NOTE: You set the default folder prefix in option '1' of this\n";
883 print " section. That will be the default if the user doesn't\n";
884 print " specify anything different.\n";
887 if ($show_prefix_option eq "true") {
888 $default_value = "y";
890 $default_value = "n";
893 print "Show option (y/n) [$WHT$default_value$NRM]: $WHT";
895 if (($new_show =~ /^y\n/i) || (($new_show =~ /^\n/) && ($default_value eq "y"))) {
896 $show_prefix_option = "true";
898 $show_prefix_option = "false";
900 return $show_prefix_option;
905 print "You can now specify where the default trash folder is located.\n";
906 print "On servers where you do not want this, you can set it to anything\n";
907 print "and set option 6 to false.\n";
909 print "This is relative to where the rest of your email is kept. You do\n";
910 print "not need to worry about their mail directory. If this folder\n";
911 print "would be ~/mail/trash on the filesystem, you only need to specify\n";
912 print "that this is 'trash', and be sure to put 'mail/' in option 1.\n";
915 print "[$WHT$trash_folder$NRM]: $WHT";
916 $new_trash_folder = <STDIN
>;
917 if ($new_trash_folder eq "\n") {
918 $new_trash_folder = $trash_folder;
920 $new_trash_folder =~ s/[\r|\n]//g;
922 return $new_trash_folder;
927 print "This is where messages that are sent will be stored. SquirrelMail\n";
928 print "by default puts a copy of all outgoing messages in this folder.\n";
930 print "This is relative to where the rest of your email is kept. You do\n";
931 print "not need to worry about their mail directory. If this folder\n";
932 print "would be ~/mail/sent on the filesystem, you only need to specify\n";
933 print "that this is 'sent', and be sure to put 'mail/' in option 1.\n";
936 print "[$WHT$sent_folder$NRM]: $WHT";
937 $new_sent_folder = <STDIN
>;
938 if ($new_sent_folder eq "\n") {
939 $new_sent_folder = $sent_folder;
941 $new_sent_folder =~ s/[\r|\n]//g;
943 return $new_sent_folder;
948 print "You can now specify where the default draft folder is located.\n";
949 print "On servers where you do not want this, you can set it to anything\n";
950 print "and set option 9 to false.\n";
952 print "This is relative to where the rest of your email is kept. You do\n";
953 print "not need to worry about their mail directory. If this folder\n";
954 print "would be ~/mail/drafts on the filesystem, you only need to specify\n";
955 print "that this is 'drafts', and be sure to put 'mail/' in option 1.\n";
958 print "[$WHT$draft_folder$NRM]: $WHT";
959 $new_draft_folder = <STDIN
>;
960 if ($new_draft_folder eq "\n") {
961 $new_draft_folder = $draft_folder;
963 $new_draft_folder =~ s/[\r|\n]//g;
965 return $new_draft_folder;
968 # default move to trash
970 print "By default, should messages get moved to the trash folder? You\n";
971 print "can specify the default trash folder in option 3. If this is set\n";
972 print "to false, messages will get deleted immediately without moving\n";
973 print "to the trash folder.\n";
975 print "Trash folder is currently: $trash_folder\n";
978 if ($default_move_to_trash eq "true") {
979 $default_value = "y";
981 $default_value = "n";
983 print "By default, move to trash (y/n) [$WHT$default_value$NRM]: $WHT";
985 if (($new_show =~ /^y\n/i) || (($new_show =~ /^\n/) && ($default_value eq "y"))) {
986 $default_move_to_trash = "true";
988 $default_move_to_trash = "false";
990 return $default_move_to_trash;
993 # default move to sent
995 print "By default, should messages get moved to the sent folder? You\n";
996 print "can specify the default sent folder in option 4. If this is set\n";
997 print "to false, messages will get sent an no copy will be made.\n";
999 print "Trash folder is currently: $sent_folder\n";
1002 if ($default_move_to_sent eq "true") {
1003 $default_value = "y";
1005 $default_value = "n";
1007 print "By default, move to sent (y/n) [$WHT$default_value$NRM]: $WHT";
1008 $new_show = <STDIN
>;
1009 if (($new_show =~ /^y\n/i) || (($new_show =~ /^\n/) && ($default_value eq "y"))) {
1010 $default_move_to_sent = "true";
1012 $default_move_to_sent = "false";
1014 return $default_move_to_sent;
1017 # default save as draft
1019 print "By default, should the save to draft option be shown? You can\n";
1020 print "specify the default drafts folder in option 5. If this is set\n";
1021 print "to false, users will not be shown the save to draft option.\n";
1023 print "Drafts folder is currently: $draft_folder\n";
1026 if ($default_move_to_draft eq "true") {
1027 $default_value = "y";
1029 $default_value = "n";
1031 print "By default, save as draft (y/n) [$WHT$default_value$NRM]: $WHT";
1032 $new_show = <STDIN
>;
1033 if (($new_show =~ /^y\n/i) || (($new_show =~ /^\n/) && ($default_value eq "y"))) {
1034 $default_save_as_draft = "true";
1036 $default_save_as_draft = "false";
1038 return $default_save_as_draft;
1041 # List special folders first
1043 print "SquirrelMail has what we call 'special folders' that are not\n";
1044 print "manipulated and viewed like normal folders. Some examples of\n";
1045 print "these folders would be INBOX, Trash, Sent, etc. This option\n";
1046 print "Simply asks if you want these folders listed first in the folder\n";
1050 if ($list_special_folders_first eq "true") {
1051 $default_value = "y";
1053 $default_value = "n";
1056 print "List first (y/n) [$WHT$default_value$NRM]: $WHT";
1057 $new_show = <STDIN
>;
1058 if (($new_show =~ /^y\n/i) || (($new_show =~ /^\n/) && ($default_value eq "y"))) {
1059 $list_special_folders_first = "true";
1061 $list_special_folders_first = "false";
1063 return $list_special_folders_first;
1066 # Show special folders color
1068 print "SquirrelMail has what we call 'special folders' that are not\n";
1069 print "manipulated and viewed like normal folders. Some examples of\n";
1070 print "these folders would be INBOX, Trash, Sent, etc. This option\n";
1071 print "wants to know if we should display special folders in a\n";
1072 print "color than the other folders.\n";
1075 if ($use_special_folder_color eq "true") {
1076 $default_value = "y";
1078 $default_value = "n";
1081 print "Show color (y/n) [$WHT$default_value$NRM]: $WHT";
1082 $new_show = <STDIN
>;
1083 if (($new_show =~ /^y\n/i) || (($new_show =~ /^\n/) && ($default_value eq "y"))) {
1084 $use_special_folder_color = "true";
1086 $use_special_folder_color = "false";
1088 return $use_special_folder_color;
1093 print "The way that IMAP handles deleting messages is as follows. You\n";
1094 print "mark the message as deleted, and then to 'really' delete it, you\n";
1095 print "expunge it. This option asks if you want to just have messages\n";
1096 print "marked as deleted, or if you want SquirrelMail to expunge the \n";
1097 print "messages too.\n";
1100 if ($auto_expunge eq "true") {
1101 $default_value = "y";
1103 $default_value = "n";
1105 print "Auto expunge (y/n) [$WHT$default_value$NRM]: $WHT";
1106 $new_show = <STDIN
>;
1107 if (($new_show =~ /^y\n/i) || (($new_show =~ /^\n/) && ($default_value eq "y"))) {
1108 $auto_expunge = "true";
1110 $auto_expunge = "false";
1112 return $auto_expunge;
1115 # Default sub of inbox
1117 print "Some IMAP servers (Cyrus) have all folders as subfolders of INBOX.\n";
1118 print "This can cause some confusion in folder creation for users when\n";
1119 print "they try to create folders and don't put it as a subfolder of INBOX\n";
1120 print "and get permission errors. This option asks if you want folders\n";
1121 print "to be subfolders of INBOX by default.\n";
1124 if ($default_sub_of_inbox eq "true") {
1125 $default_value = "y";
1127 $default_value = "n";
1129 print "Default sub of INBOX (y/n) [$WHT$default_value$NRM]: $WHT";
1130 $new_show = <STDIN
>;
1131 if (($new_show =~ /^y\n/i) || (($new_show =~ /^\n/) && ($default_value eq "y"))) {
1132 $default_sub_of_inbox = "true";
1134 $default_sub_of_inbox = "false";
1136 return $default_sub_of_inbox;
1139 # Show contain subfolder option
1141 print "Some IMAP servers (UW) make it so that there are two types of\n";
1142 print "folders. Those that contain messages, and those that contain\n";
1143 print "subfolders. If this is the case for your server, set this to\n";
1144 print "true, and it will ask the user whether the folder they are\n";
1145 print "creating contains subfolders or messages.\n";
1148 if ($show_contain_subfolders_option eq "true") {
1149 $default_value = "y";
1151 $default_value = "n";
1153 print "Show option (y/n) [$WHT$default_value$NRM]: $WHT";
1154 $new_show = <STDIN
>;
1155 if (($new_show =~ /^y\n/i) || (($new_show =~ /^\n/) && ($default_value eq "y"))) {
1156 $show_contain_subfolders_option = "true";
1158 $show_contain_subfolders_option = "false";
1160 return $show_contain_subfolders_option;
1163 # Default Unseen Notify
1165 print "This option specifies where the users will receive notification\n";
1166 print "about unseen messages by default. This is of course an option that\n";
1167 print "can be changed on a user level.\n";
1168 print " 1 = No notification\n";
1169 print " 2 = Only on the INBOX\n";
1170 print " 3 = On all folders\n";
1173 print "Which one should be default (1,2,3)? [$WHT$default_unseen_notify$NRM]: $WHT";
1174 $new_show = <STDIN
>;
1175 if ($new_show =~ /^[1|2|3]\n/i) {
1176 $default_unseen_notify = $new_show;
1178 $default_unseen_notify =~ s/[\r|\n]//g;
1179 return $default_unseen_notify;
1182 # Default Unseen Type
1184 print "Here you can define the default way that unseen messages will be displayed\n";
1185 print "to the user in the folder listing on the left side.\n";
1186 print " 1 = Only unseen messages (4)\n";
1187 print " 2 = Unseen and Total messages (4/27)\n";
1190 print "Which one should be default (1,2)? [$WHT$default_unseen_type$NRM]: $WHT";
1191 $new_show = <STDIN
>;
1192 if ($new_show =~ /^[1|2]\n/i) {
1193 $default_unseen_type = $new_show;
1195 $default_unseen_type =~ s/[\r|\n]//g;
1196 return $default_unseen_type;
1199 # Auto create special folders
1201 print "Would you like the Sent, Trash, and Drafts folders to be created\n";
1202 print "automatically print for you when a user logs in? If the user\n";
1203 print "accidentally deletes their special folders, this option will\n";
1204 print "automatically create it again for them.\n";
1207 if ($auto_create_special eq "true") {
1208 $default_value = "y";
1210 $default_value = "n";
1212 print "Auto create special folders? (y/n) [$WHT$default_value$NRM]: $WHT";
1213 $new_show = <STDIN
>;
1214 if (($new_show =~ /^y\n/i) || (($new_show =~ /^\n/) && ($default_value eq "y"))) {
1215 $auto_create_special = "true";
1217 $auto_create_special = "false";
1219 return $auto_create_special;
1223 ############# GENERAL OPTIONS #####################
1227 print "This option controls what character set is used when sending\n";
1228 print "mail and when sending HTML to the browser. Do not set this\n";
1229 print "to US-ASCII, use ISO-8859-1 instead. For cyrillic, it is best\n";
1230 print "to use KOI8-R, since this implementation is faster than most\n";
1231 print "of the alternatives\n";
1234 print "[$WHT$default_charset$NRM]: $WHT";
1235 $new_default_charset = <STDIN
>;
1236 if ($new_default_charset eq "\n") {
1237 $new_default_charset = $default_charset;
1239 $new_default_charset =~ s/[\r|\n]//g;
1241 return $new_default_charset;
1246 print "It is a possible security hole to have a writable directory\n";
1247 print "under the web server's root directory (ex: /home/httpd/html).\n";
1248 print "For this reason, it is possible to put the data directory\n";
1249 print "anywhere you would like. The path name can be absolute or\n";
1250 print "relative (to the config directory). It doesn't matter. Here\n";
1251 print "are two examples:\n";
1252 print " Absolute: /usr/local/squirrelmail/data/\n";
1253 print " Relative: ../data/\n";
1256 print "[$WHT$data_dir$NRM]: $WHT";
1257 $new_data_dir = <STDIN
>;
1258 if ($new_data_dir eq "\n") {
1259 $new_data_dir = $data_dir;
1261 $new_data_dir =~ s/[\r|\n]//g;
1263 if ($new_data_dir =~ /^\s*$/) {
1266 $new_data_dir =~ s/\/*$//g
;
1267 $new_data_dir =~ s/$/\//g
;
1269 return $new_data_dir;
1272 # Attachment directory
1274 print "Path to directory used for storing attachments while a mail is\n";
1275 print "being sent. There are a few security considerations regarding this\n";
1276 print "directory:\n";
1277 print " 1. It should have the permission 733 (rwx-wx-wx) to make it\n";
1278 print " impossible for a random person with access to the webserver\n";
1279 print " to list files in this directory. Confidential data might\n";
1280 print " be laying around in there.\n";
1281 print " 2. Since the webserver is not able to list the files in the\n";
1282 print " content is also impossible for the webserver to delete files\n";
1283 print " lying around there for too long.\n";
1284 print " 3. It should probably be another directory than the data\n";
1285 print " directory specified in option 3.\n";
1288 print "[$WHT$attachment_dir$NRM]: $WHT";
1289 $new_attachment_dir = <STDIN
>;
1290 if ($new_attachment_dir eq "\n") {
1291 $new_attachment_dir = $attachment_dir;
1293 $new_attachment_dir =~ s/[\r|\n]//g;
1295 if ($new_attachment_dir =~ /^\s*$/) {
1296 $new_attachment_dir = "";
1298 $new_attachment_dir =~ s/\/*$//g
;
1299 $new_attachment_dir =~ s/$/\//g
;
1301 return $new_attachment_dir;
1306 print "This is the default size (in pixels) of the left folder list.\n";
1307 print "Default is 200, but you can set it to whatever you wish. This\n";
1308 print "is a user preference, so this will only show up as their default.\n";
1310 print "[$WHT$default_left_size$NRM]: $WHT";
1311 $new_default_left_size = <STDIN
>;
1312 if ($new_default_left_size eq "\n") {
1313 $new_default_left_size = $default_left_size;
1315 $new_default_left_size =~ s/[\r|\n]//g;
1317 return $new_default_left_size;
1322 print "Some IMAP servers only have lowercase letters in the usernames\n";
1323 print "but they still allow people with uppercase to log in. This\n";
1324 print "causes a problem with the user's preference files. This option\n";
1325 print "transparently changes all usernames to lowercase.";
1328 if ($force_username_lowercase eq "true") {
1329 $default_value = "y";
1331 $default_value = "n";
1333 print "Convert usernames to lowercase (y/n) [$WHT$default_value$NRM]: $WHT";
1334 $new_show = <STDIN
>;
1335 if (($new_show =~ /^y\n/i) || (($new_show =~ /^\n/) && ($default_value eq "y"))) {
1343 print "\nNow we will define the themes that you wish to use. If you have added\n";
1344 print "a theme of your own, just follow the instructions (?) about how to add\n";
1345 print "them. You can also change the default theme.\n";
1346 print "[theme] command (?=help) > ";
1348 $input =~ s/[\r|\n]//g;
1349 while ($input ne "d") {
1350 if ($input =~ /^\s*l\s*/i) {
1352 while ($count <= $#theme_name) {
1353 if ($count == $theme_default) {
1358 $name = $theme_name[$count];
1359 $num_spaces = 25 - length($name);
1360 for ($i = 0; $i < $num_spaces;$i++) {
1361 $name = $name . " ";
1364 print " $count. $name";
1365 print "($theme_path[$count])\n";
1369 } elsif ($input =~ /^\s*m\s*[0-9]+/i) {
1370 $old_def = $theme_default;
1371 $theme_default = $input;
1372 $theme_default =~ s/^\s*m\s*//;
1373 if (($theme_default > $#theme_name) || ($theme_default < 0)) {
1374 print "Cannot set default theme to $theme_default. That theme does not exist.\n";
1375 $theme_default = $old_def;
1377 } elsif ($input =~ /^\s*\+/) {
1378 print "What is the name of this theme: ";
1380 $name =~ s/[\r|\n]//g;
1381 $theme_name[$#theme_name+1] = $name;
1382 print "Be sure to put ../themes/ before the filename.\n";
1383 print "What file is this stored in (ex: ../themes/default_theme.php): ";
1385 $name =~ s/[\r|\n]//g;
1386 $theme_path[$#theme_path+1] = $name;
1387 } elsif ($input =~ /^\s*-\s*[0-9]?/) {
1388 if ($input =~ /[0-9]+\s*$/) {
1390 $rem_num =~ s/^\s*-\s*//g;
1391 $rem_num =~ s/\s*$//;
1393 $rem_num = $#theme_name;
1395 if ($rem_num == $theme_default) {
1396 print "You cannot remove the default theme!\n";
1399 @new_theme_name = ();
1400 @new_theme_path = ();
1401 while ($count <= $#theme_name) {
1402 if ($count != $rem_num) {
1403 @new_theme_name = (@new_theme_name, $theme_name[$count]);
1404 @new_theme_path = (@new_theme_path, $theme_path[$count]);
1408 @theme_name = @new_theme_name;
1409 @theme_path = @new_theme_path;
1410 if ($theme_default > $rem_num) {
1414 } elsif ($input =~ /^\s*t\s*/i) {
1415 print "\nStarting detection...\n\n";
1417 opendir(DIR
, "../themes");
1418 @files = grep { /\.php$/i } readdir(DIR
);
1420 while ($cnt <= $#files) {
1421 $filename = "../themes/" . $files[$cnt];
1422 if ($filename ne "../themes/index.php") {
1424 for ($x=0; $x <= $#theme_path; $x++) {
1425 if ($theme_path[$x] eq $filename) {
1430 print "** Found theme: $filename\n";
1431 print " What is its name? ";
1433 $nm =~ s/[\n|\r]//g;
1434 $theme_name[$#theme_name+1] = $nm;
1435 $theme_path[$#theme_path+1] = $filename;
1441 for ($cnt=0; $cnt <= $#theme_path; $cnt++) {
1442 $filename = $theme_path[$cnt];
1443 if (! (-e
$filename)) {
1444 print " Removing $filename (file not found)\n";
1446 @new_theme_name = ();
1447 @new_theme_path = ();
1448 for ($x=0; $x < $#theme_path; $x++) {
1449 if ($theme_path[$x] eq $filename) {
1453 $new_theme_name[$x] = $theme_name[$x+1];
1454 $new_theme_path[$x] = $theme_path[$x+1];
1456 $new_theme_name[$x] = $theme_name[$x];
1457 $new_theme_path[$x] = $theme_path[$x];
1460 @theme_name = @new_theme_name;
1461 @theme_path = @new_theme_path;
1464 print "\nDetection complete!\n\n";
1467 } elsif ($input =~ /^\s*\?\s*/) {
1468 print ".-------------------------.\n";
1469 print "| t (detect themes) |\n";
1470 print "| + (add theme) |\n";
1471 print "| - N (remove theme) |\n";
1472 print "| m N (mark default) |\n";
1473 print "| l (list themes) |\n";
1474 print "| d (done) |\n";
1475 print "`-------------------------'\n";
1477 print "[theme] command (?=help) > ";
1479 $input =~ s/[\r|\n]//g;
1486 print "You may specify a cascading style-sheet (CSS) file to be included\n";
1487 print "on each html page generated by SquirrelMail. The CSS file is useful\n";
1488 print "for specifying a site-wide font. If you're not familiar with CSS\n";
1489 print "files, leave this blank.\n";
1491 print "To clear out an existing value, just type a space for the input.\n";
1493 print "[$WHT$theme_css$NRM]: $WHT";
1494 $new_theme_css = <STDIN
>;
1495 if ($new_theme_css eq "\n") {
1496 $new_theme_css = $theme_css;
1498 $new_theme_css =~ s/[\r|\n]//g;
1500 $new_theme_css =~ s/^\s*//;
1501 return $new_theme_css;
1506 print "You can now define different LDAP servers.\n";
1507 print "[ldap] command (?=help) > ";
1509 $input =~ s/[\r|\n]//g;
1510 while ($input ne "d") {
1511 if ($input =~ /^\s*l\s*/i) {
1513 while ($count <= $#ldap_host) {
1514 print "$count. $ldap_host[$count]\n";
1515 print " base: $ldap_base[$count]\n";
1516 if ($ldap_charset[$count]) {
1517 print " charset: $ldap_charset[$count]\n";
1519 if ($ldap_port[$count]) {
1520 print " port: $ldap_port[$count]\n";
1522 if ($ldap_name[$count]) {
1523 print " name: $ldap_name[$count]\n";
1525 if ($ldap_maxrows[$count]) {
1526 print " maxrows: $ldap_maxrows[$count]\n";
1531 } elsif ($input =~ /^\s*\+/) {
1532 $sub = $#ldap_host + 1;
1534 print "First, we need to have the hostname or the IP address where\n";
1535 print "this LDAP server resides. Example: ldap.bigfoot.com\n";
1538 $name =~ s/[\r|\n]//g;
1539 $ldap_host[$sub] = $name;
1543 print "Next, we need the server root (base dn). For this, an empty\n";
1544 print "string is allowed.\n";
1545 print "Example: ou=member_directory,o=netcenter.com\n";
1548 $name =~ s/[\r|\n]//g;
1549 $ldap_base[$sub] = $name;
1553 print "This is the TCP/IP port number for the LDAP server. Default\n";
1554 print "port is 389. This is optional. Press ENTER for default.\n";
1557 $name =~ s/[\r|\n]//g;
1558 $ldap_port[$sub] = $name;
1562 print "This is the charset for the server. Default is utf-8. This\n";
1563 print "is also optional. Press ENTER for default.\n";
1566 $name =~ s/[\r|\n]//g;
1567 $ldap_charset[$sub] = $name;
1571 print "This is the name for the server, used to tag the results of\n";
1572 print "the search. Default it \"LDAP: hostname\". Press ENTER for default\n";
1575 $name =~ s/[\r|\n]//g;
1576 $ldap_name[$sub] = $name;
1580 print "You can specify the maximum number of rows in the search result.\n";
1581 print "Default is unlimited. Press ENTER for default.\n";
1584 $name =~ s/[\r|\n]//g;
1585 $ldap_maxrows[$sub] = $name;
1589 } elsif ($input =~ /^\s*-\s*[0-9]?/) {
1590 if ($input =~ /[0-9]+\s*$/) {
1592 $rem_num =~ s/^\s*-\s*//g;
1593 $rem_num =~ s/\s*$//;
1595 $rem_num = $#ldap_host;
1598 @new_ldap_host = ();
1599 @new_ldap_base = ();
1600 @new_ldap_port = ();
1601 @new_ldap_name = ();
1602 @new_ldap_charset = ();
1603 @new_ldap_maxrows = ();
1604 while ($count <= $#ldap_host) {
1605 if ($count != $rem_num) {
1606 @new_ldap_host = (@new_ldap_host, $ldap_host[$count]);
1607 @new_ldap_base = (@new_ldap_base, $ldap_base[$count]);
1608 @new_ldap_port = (@new_ldap_port, $ldap_port[$count]);
1609 @new_ldap_name = (@new_ldap_name, $ldap_name[$count]);
1610 @new_ldap_charset = (@new_ldap_charset, $ldap_charset[$count]);
1611 @new_ldap_maxrows = (@new_ldap_maxrows, $ldap_maxrows[$count]);
1615 @ldap_host = @new_ldap_host;
1616 @ldap_base = @new_ldap_base;
1617 @ldap_port = @new_ldap_port;
1618 @ldap_name = @new_ldap_name;
1619 @ldap_charset = @new_ldap_charset;
1620 @ldap_maxrows = @new_ldap_maxrows;
1621 } elsif ($input =~ /^\s*\?\s*/) {
1622 print ".-------------------------.\n";
1623 print "| + (add host) |\n";
1624 print "| - N (remove host) |\n";
1625 print "| l (list hosts) |\n";
1626 print "| d (done) |\n";
1627 print "`-------------------------'\n";
1629 print "[ldap] command (?=help) > ";
1631 $input =~ s/[\r|\n]//g;
1636 print "Some of our developers have come up with very good javascript interface\n";
1637 print "for searching through address books, however, our original goals said\n";
1638 print "that we would be 100% HTML. In order to make it possible to use their\n";
1639 print "interface, and yet stick with our goals, we have also written a plain\n";
1640 print "HTML version of the search. Here, you can choose which version to use.\n";
1642 print "This is just the default value. It is also a user option that each\n";
1643 print "user can configure individually\n";
1646 if ($default_use_javascript_addr_book eq "true") {
1647 $default_value = "y";
1649 $default_use_javascript_addr_book = "false";
1650 $default_value = "n";
1652 print "Use javascript version by default (y/n) [$WHT$default_value$NRM]: $WHT";
1653 $new_show = <STDIN
>;
1654 if (($new_show =~ /^y\n/i) || (($new_show =~ /^\n/) && ($default_value eq "y"))) {
1655 $default_use_javascript_addr_book = "true";
1657 $default_use_javascript_addr_book = "false";
1659 return $default_use_javascript_addr_book;
1664 open (FILE
, ">config.php");
1666 print FILE
"<?php\n\t/** SquirrelMail configuration\n";
1667 print FILE
"\t ** Created using the configure script, conf.pl\n\t **/\n\n";
1669 print FILE
"if (defined('config_php'))\n return;\n";
1670 print FILE
"define('config_php', true);\n\n";
1672 print FILE
"\tglobal \$print_config_version, \$config_version, \$config_use_color;\n";
1674 if ($print_config_version) {
1675 print FILE
"\t\$config_version = \"$print_config_version\";\n";
1677 print FILE
"\t\$config_use_color = $config_use_color;\n";
1680 print FILE
"\tglobal \$org_name, \$org_logo, \$org_title, \$signout_page;\n";
1681 print FILE
"\t\$org_name = \"$org_name\";\n";
1682 print FILE
"\t\$org_logo = \"$org_logo\";\n";
1683 print FILE
"\t\$org_title = \"$org_title\";\n";
1684 print FILE
"\t\$signout_page = \"$signout_page\";\n";
1688 print FILE
"\tglobal \$domain, \$imapServerAddress, \$imapPort;\n";
1689 print FILE
"\tglobal \$useSendmail, \$smtpServerAddress, \$smtpPort;\n";
1690 print FILE
"\tglobal \$sendmail_path, \$use_authenticated_smtp, \$imap_server_type;\n";
1691 print FILE
"\tglobal \$invert_time, \$optional_delimiter;\n";
1692 print FILE
"\t\$domain = \"$domain\";\n";
1693 print FILE
"\t\$imapServerAddress = \"$imapServerAddress\";\n";
1694 print FILE
"\t\$imapPort = $imapPort;\n";
1695 print FILE
"\t\$useSendmail = $useSendmail;\n";
1696 print FILE
"\t\$smtpServerAddress = \"$smtpServerAddress\";\n";
1697 print FILE
"\t\$smtpPort = $smtpPort;\n";
1698 print FILE
"\t\$sendmail_path = \"$sendmail_path\";\n";
1699 print FILE
"\t\$use_authenticated_smtp = $use_authenticated_smtp;\n";
1700 print FILE
"\t\$imap_server_type = \"$imap_server_type\";\n";
1701 print FILE
"\t\$invert_time = $invert_time;\n";
1702 print FILE
"\t\$optional_delimiter = \"$optional_delimiter\";\n";
1706 print FILE
"\tglobal \$default_folder_prefix;\n";
1707 print FILE
"\tglobal \$trash_folder, \$default_move_to_trash;\n";
1708 print FILE
"\tglobal \$sent_folder, \$default_move_to_sent;\n";
1709 print FILE
"\tglobal \$draft_folder, \$default_save_to_draft;\n";
1710 print FILE
"\tglobal \$show_prefix_option, \$list_special_folders_first;\n";
1711 print FILE
"\tglobal \$use_special_folder_color, \$auto_expunge, \$default_sub_of_inbox;\n";
1712 print FILE
"\tglobal \$show_contain_subfolders_option, \$default_unseen_notify;\n";
1713 print FILE
"\tglobal \$default_unseen_type, \$auto_create_special;\n";
1714 print FILE
"\t\$default_folder_prefix = \"$default_folder_prefix\";\n";
1715 print FILE
"\t\$trash_folder = \"$trash_folder\";\n";
1716 print FILE
"\t\$sent_folder = \"$sent_folder\";\n";
1717 print FILE
"\t\$draft_folder = \"$draft_folder\";\n";
1718 print FILE
"\t\$default_move_to_trash = $default_move_to_trash;\n";
1719 print FILE
"\t\$default_move_to_sent = $default_move_to_sent;\n";
1720 print FILE
"\t\$default_save_as_draft = $default_save_as_draft;\n";
1721 print FILE
"\t\$show_prefix_option = $show_prefix_option;\n";
1722 print FILE
"\t\$list_special_folders_first = $list_special_folders_first;\n";
1723 print FILE
"\t\$use_special_folder_color = $use_special_folder_color;\n";
1724 print FILE
"\t\$auto_expunge = $auto_expunge;\n";
1725 print FILE
"\t\$default_sub_of_inbox = $default_sub_of_inbox;\n";
1726 print FILE
"\t\$show_contain_subfolders_option = $show_contain_subfolders_option;\n";
1727 print FILE
"\t\$default_unseen_notify = $default_unseen_notify;\n";
1728 print FILE
"\t\$default_unseen_type = $default_unseen_type;\n";
1729 print FILE
"\t\$auto_create_special = $auto_create_special;\n";
1732 print FILE
"\tglobal \$default_charset, \$data_dir, \$attachment_dir;\n";
1733 print FILE
"\tglobal \$default_left_size, \$force_username_lowercase;\n";
1734 print FILE
"\t\$default_charset = \"$default_charset\";\n";
1735 print FILE
"\t\$data_dir = \"$data_dir\";\n";
1736 print FILE
"\t\$attachment_dir = \"$attachment_dir\";\n";
1737 print FILE
"\t\$default_left_size = $default_left_size;\n";
1738 print FILE
"\t\$force_username_lowercase = $force_username_lowercase;\n";
1742 print FILE
"\tglobal \$plugins;\n";
1743 for ($ct=0; $ct <= $#plugins; $ct++) {
1744 print FILE
"\t\$plugins[$ct] = \"$plugins[$ct]\";\n";
1749 print FILE
"\tglobal \$theme_css, \$theme;\n";
1750 print FILE
"\t\$theme_css = \"$theme_css\";\n";
1751 for ($count=0; $count <= $#theme_name; $count++) {
1752 print FILE
"\t\$theme[$count][\"PATH\"] = \"$theme_path[$count]\";\n";
1753 print FILE
"\t\$theme[$count][\"NAME\"] = \"$theme_name[$count]\";\n";
1758 if ($default_use_javascript_addr_book ne "true") {
1759 $default_use_javascript_addr_book = "false";
1761 print FILE
"\tglobal \$default_use_javascript_addr_book, \$ldap_server;\n";
1762 print FILE
"\t\$default_use_javascript_addr_book = $default_use_javascript_addr_book;\n";
1763 for ($count=0; $count <= $#ldap_host; $count++) {
1764 print FILE
"\t\$ldap_server[$count] = Array(\n";
1765 print FILE
"\t\t\t\"host\" => \"$ldap_host[$count]\",\n";
1766 print FILE
"\t\t\t\"base\" => \"$ldap_base[$count]\"";
1767 if ($ldap_name[$count]) {
1768 print FILE
",\n\t\t\t\"name\" => \"$ldap_name[$count]\"";
1770 if ($ldap_port[$count]) {
1771 print FILE
",\n\t\t\t\"port\" => \"$ldap_port[$count]\"";
1773 if ($ldap_charset[$count]) {
1774 print FILE
",\n\t\t\t\"charset\" => \"$ldap_charset[$count]\"";
1776 if ($ldap_maxrows[$count]) {
1777 print FILE
",\n\t\t\t\"maxrows\" => \"$ldap_maxrows[$count]\"";
1779 print FILE
");\n\n";
1782 print FILE
"\tglobal \$motd;\n";
1783 print FILE
"\t\$motd = \"$motd\";\n";
1785 print FILE
"\tglobal \$squirrelmail_default_language;\n";
1786 print FILE
"\t\$squirrelmail_default_language = \"$squirrelmail_default_language\";\n";
1793 print $WHT."SquirrelMail Configuration : ".$NRM;
1794 if ($config == 1) { print "Read: config.php"; }
1795 elsif ($config == 2) { print "Read: config_default.php"; }
1797 print "---------------------------------------------------------\n";
1799 print "While we have been building SquirrelMail, we have discovered some\n";
1800 print "preferences that work better with some servers that don't work so\n";
1801 print "well with others. If you select your IMAP server, this option will\n";
1802 print "set some pre-defined settings for that server.\n";
1804 print "Please note that you will still need to go through and make sure\n";
1805 print "everything is correct. This does not change everything. There are\n";
1806 print "only a few settings that this will change.\n";
1810 while ($continue != 1) {
1811 print "Please select your IMAP server:\n";
1812 print " cyrus = Cyrus IMAP server\n";
1813 print " uw = University of Washington's IMAP server\n";
1814 print " exchange = Microsoft Exchange IMAP server\n";
1815 print " courier = Courier IMAP server\n";
1816 print " quit = Do not change anything\n";
1817 print "Command >> ";
1819 $server =~ s/[\r|\n]//g;
1822 if ($server eq "cyrus") {
1823 $default_folder_prefix = "";
1824 $trash_folder = "INBOX.Trash";
1825 $sent_folder = "INBOX.Sent";
1826 $draft_folder = "INBOX.Drafts";
1827 $show_prefix_option = false
;
1828 $default_sub_of_inbox = true
;
1829 $show_contain_subfolders_option = false
;
1830 $imap_server_type = "cyrus";
1832 print " default_folder_prefix = none\n";
1833 print " trash_folder = INBOX.Trash\n";
1834 print " sent_folder = INBOX.Sent\n";
1835 print " draft_folder = INBOX.Drafts\n";
1836 print " show_prefix_option = false\n";
1837 print " default_sub_of_inbox = true\n";
1838 print "show_contain_subfolders_option = false\n";
1839 print " imap_server_type = cyrus\n";
1842 } elsif ($server eq "uw") {
1843 $default_folder_prefix = "mail/";
1844 $trash_folder = "Trash";
1845 $sent_folder = "Sent";
1846 $draft_folder = "Drafts";
1847 $show_prefix_option = true
;
1848 $default_sub_of_inbox = false
;
1849 $show_contain_subfolders_option = true
;
1850 $imap_server_type = "uw";
1852 print " default_folder_prefix = mail/\n";
1853 print " trash_folder = Trash\n";
1854 print " sent_folder = Sent\n";
1855 print " draft_folder = Drafts\n";
1856 print " show_prefix_option = true\n";
1857 print " default_sub_of_inbox = false\n";
1858 print "show_contain_subfolders_option = true\n";
1859 print " imap_server_type = uw\n";
1862 } elsif ($server eq "exchange") {
1863 $default_folder_prefix = "";
1864 $default_sub_of_inbox = true
;
1865 $trash_folder = "INBOX/Deleted Items";
1866 $sent_folder = "INBOX/Sent Items";
1867 $drafts_folder = "INBOX/Drafts";
1868 $show_prefix_option = false
;
1869 $show_contain_subfolders_option = false
;
1870 $imap_server_type = "exchange";
1872 print " default_folder_prefix = <none>\n";
1873 print " default_sub_of_inbox = true\n";
1874 print " trash_folder = \"INBOX/Deleted Items\"\n";
1875 print " sent_folder = \"INBOX/Sent Items\"\n";
1876 print " draft_folder = \"INBOX/Drafts\"\n";
1877 print " show_prefix_option = false\n";
1878 print " show_contain_subfolders_option = false\n";
1879 print " imap_server_type = exchange\n";
1882 } elsif ($server eq "courier") {
1883 $imap_server_type = "courier";
1885 print " imap_server_type = courier\n";
1888 } elsif ($server eq "quit") {
1891 print "Unrecognized server: $server\n";
1895 print "\nPress any key to continue...";