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