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