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