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