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