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