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