a3d1c7f7a98d0a28ba2904f65573b85532db75c9
[squirrelmail.git] / config / conf.pl
1 #!/usr/bin/env perl
2 # conf.pl
3 #
4 # Copyright (c) 1999-2006 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.5.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 # Make sure that file is readable
50 if (! -r "config.php") {
51 clear_screen();
52 print "WARNING:\n";
53 print "The file \"config/config.php\" was found, but you don't\n";
54 print "have rights to read it.\n";
55 print "\n";
56 print "Press enter to continue";
57 $ctu = <STDIN>;
58 exit;
59 }
60 open( FILE, "config.php" );
61 while ( $line = <FILE> ) {
62 $line =~ s/^\s+//;
63 $line =~ s/^\$//;
64 $var = $line;
65
66 $var =~ s/=/EQUALS/;
67 if ( $var =~ /^([a-z])/i ) {
68 @o = split ( /\s*EQUALS\s*/, $var );
69 if ( $o[0] eq "config_version" ) {
70 $o[1] =~ s/[\n\r]//g;
71 $o[1] =~ s/[\'\"];\s*$//;
72 $o[1] =~ s/;$//;
73 $o[1] =~ s/^[\'\"]//;
74
75 $config_version = $o[1];
76 close(FILE);
77 }
78 }
79 }
80 close(FILE);
81
82 if ( $config_version ne $conf_pl_version ) {
83 clear_screen();
84 print "WARNING:\n";
85 print " The file \"config/config.php\" was found, but it is for\n";
86 print " an older version of SquirrelMail. It is possible to still\n";
87 print " read the defaults from this file but be warned that many\n";
88 print " preferences change between versions. It is recommended that\n";
89 print " you start with a clean config.php for each upgrade that you\n";
90 print " do. To do this, just move config/config.php out of the way.\n";
91 print "\n";
92 print "Continue loading with the old config.php [y/N]? ";
93 $ctu = <STDIN>;
94
95 if ( ( $ctu !~ /^y\n/i ) || ( $ctu =~ /^\n/ ) ) {
96 exit;
97 }
98
99 print "\nDo you want me to stop warning you [y/N]? ";
100 $ctu = <STDIN>;
101 if ( $ctu =~ /^y\n/i ) {
102 $print_config_version = $conf_pl_version;
103 } else {
104 $print_config_version = $config_version;
105 }
106 } else {
107 $print_config_version = $config_version;
108 }
109
110 $config = 1;
111 open( FILE, "config.php" );
112 } elsif ( -e "config_default.php" ) {
113 open( FILE, "config_default.php" );
114 while ( $line = <FILE> ) {
115 $line =~ s/^\s+//;
116 $line =~ s/^\$//;
117 $var = $line;
118
119 $var =~ s/=/EQUALS/;
120 if ( $var =~ /^([a-z])/i ) {
121 @o = split ( /\s*EQUALS\s*/, $var );
122 if ( $o[0] eq "config_version" ) {
123 $o[1] =~ s/[\n\r]//g;
124 $o[1] =~ s/[\'\"];\s*$//;
125 $o[1] =~ s/;$//;
126 $o[1] =~ s/^[\'\"]//;
127
128 $config_version = $o[1];
129 close(FILE);
130 }
131 }
132 }
133 close(FILE);
134
135 if ( $config_version ne $conf_pl_version ) {
136 clear_screen();
137 print "WARNING:\n";
138 print " You are trying to use a 'config_default.php' from an older\n";
139 print " version of SquirrelMail. This is HIGHLY unrecommended. You\n";
140 print " should get the 'config_default.php' that matches the version\n";
141 print " of SquirrelMail that you are running. You can get this from\n";
142 print " the SquirrelMail web page by going to the following URL:\n";
143 print " http://www.squirrelmail.org.\n";
144 print "\n";
145 print "Continue loading with old config_default.php (a bad idea) [y/N]? ";
146 $ctu = <STDIN>;
147
148 if ( ( $ctu !~ /^y\n/i ) || ( $ctu =~ /^\n/ ) ) {
149 exit;
150 }
151
152 print "\nDo you want me to stop warning you [y/N]? ";
153 $ctu = <STDIN>;
154 if ( $ctu =~ /^y\n/i ) {
155 $print_config_version = $conf_pl_version;
156 } else {
157 $print_config_version = $config_version;
158 }
159 } else {
160 $print_config_version = $config_version;
161 }
162 $config = 2;
163 open( FILE, "config_default.php" );
164 } else {
165 print "No configuration file found. Please get config_default.php\n";
166 print "or config.php before running this again. This program needs\n";
167 print "a default config file to get default values.\n";
168 exit;
169 }
170
171 # Read and parse the current configuration file
172 # (either config.php or config_default.php).
173 while ( $line = <FILE> ) {
174 $line =~ s/^\s+//;
175 $line =~ s/^\$//;
176 $var = $line;
177
178 $var =~ s/=/EQUALS/;
179 if ( $var =~ /^([a-z])/i ) {
180 @options = split ( /\s*EQUALS\s*/, $var );
181 $options[1] =~ s/[\n\r]//g;
182 $options[1] =~ s/[\'\"];\s*$//;
183 $options[1] =~ s/;$//;
184 $options[1] =~ s/^[\'\"]//;
185 # de-escape escaped strings
186 $options[1] =~ s/\\'/'/g;
187 $options[1] =~ s/\\\\/\\/g;
188
189 if ( $options[0] =~ /^user_themes\[[0-9]+\]\[['"]PATH['"]\]/ ) {
190 $sub = $options[0];
191 $sub =~ s/\]\[['"]PATH['"]\]//;
192 $sub =~ s/.*\[//;
193 if ( -e "../css/" ) {
194 $options[1] =~ s/^\.\.\/config/\.\.\/css/;
195 }
196 $user_theme_path[$sub] = &change_to_rel_path($options[1]);
197 } elsif ( $options[0] =~ /^user_themes\[[0-9]+\]\[['"]NAME['"]\]/ ) {
198 $sub = $options[0];
199 $sub =~ s/\]\[['"]NAME['"]\]//;
200 $sub =~ s/.*\[//;
201 $user_theme_name[$sub] = $options[1];
202 } elsif ( $options[0] =~ /^icon_themes\[[0-9]+\]\[['"]PATH['"]\]/ ) {
203 $sub = $options[0];
204 $sub =~ s/\]\[['"]PATH['"]\]//;
205 $sub =~ s/.*\[//;
206 if ( -e "../images/" ) {
207 $options[1] =~ s/^\.\.\/config/\.\.\/images/;
208 }
209 $icon_theme_path[$sub] = &change_to_rel_path($options[1]);
210 } elsif ( $options[0] =~ /^icon_themes\[[0-9]+\]\[['"]NAME['"]\]/ ) {
211 $sub = $options[0];
212 $sub =~ s/\]\[['"]NAME['"]\]//;
213 $sub =~ s/.*\[//;
214 $icon_theme_name[$sub] = $options[1];
215 } elsif ( $options[0] =~ /^aTemplateSet\[[0-9]+\]\[['"]ID['"]\]/ ) {
216 $sub = $options[0];
217 $sub =~ s/\]\[['"]ID['"]\]//;
218 $sub =~ s/.*\[//;
219 if ( -e "../templates" ) {
220 $options[1] =~ s/^\.\.\/config/\.\.\/templates/;
221 }
222 $templateset_id[$sub] = $options[1];
223 ##### FIXME: This section BELOW here so old prefs files don't blow up when running conf.pl
224 ##### Remove after a month or two
225 } elsif ( $options[0] =~ /^aTemplateSet\[[0-9]+\]\[['"]PATH['"]\]/ ) {
226 $sub = $options[0];
227 $sub =~ s/\]\[['"]PATH['"]\]//;
228 $sub =~ s/.*\[//;
229 if ( -e "../templates" ) {
230 $options[1] =~ s/^\.\.\/config/\.\.\/templates/;
231 }
232 $templateset_id[$sub] = $options[1];
233 ##### FIXME: This section ABOVE here so old prefs files don't blow up when running conf.pl
234 ##### Remove after a month or two
235 } elsif ( $options[0] =~ /^aTemplateSet\[[0-9]+\]\[['"]NAME['"]\]/ ) {
236 $sub = $options[0];
237 $sub =~ s/\]\[['"]NAME['"]\]//;
238 $sub =~ s/.*\[//;
239 $templateset_name[$sub] = $options[1];
240 } elsif ( $options[0] =~ /^plugins\[[0-9]*\]/ ) {
241 $sub = $options[0];
242 $sub =~ s/\]//;
243 $sub =~ s/^plugins\[//;
244 if ($sub eq '') {
245 push @plugins, $options[1];
246 } else {
247 $plugins[$sub] = $options[1];
248 }
249 } elsif ($options[0] =~ /^fontsets\[\'[a-z]*\'\]/) {
250 # parse associative $fontsets array
251 $sub = $options[0];
252 $sub =~ s/\'\]//;
253 $sub =~ s/^fontsets\[\'//;
254 $fontsets{$sub} = $options[1];
255 } elsif ( $options[0] =~ /^theme\[[0-9]+\]\[['"]PATH|NAME['"]\]/ ) {
256 ##
257 ## $color themes are no longer supported. Please leave this
258 ## so conf.pl doesn't barf if it encounters a $theme.
259 ##
260 } elsif ( $options[0] =~ /^ldap_server\[[0-9]+\]/ ) {
261 $sub = $options[0];
262 $sub =~ s/\]//;
263 $sub =~ s/^ldap_server\[//;
264 $continue = 0;
265 while ( ( $tmp = <FILE> ) && ( $continue != 1 ) ) {
266 if ( $tmp =~ /\);\s*$/ ) {
267 $continue = 1;
268 }
269
270 if ( $tmp =~ /^\s*[\'\"]host[\'\"]/i ) {
271 $tmp =~ s/^\s*[\'\"]host[\'\"]\s*=>\s*[\'\"]//i;
272 $tmp =~ s/[\'\"],?\s*$//;
273 $tmp =~ s/[\'\"]\);\s*$//;
274 $host = $tmp;
275 } elsif ( $tmp =~ /^\s*[\'\"]base[\'\"]/i ) {
276 $tmp =~ s/^\s*[\'\"]base[\'\"]\s*=>\s*[\'\"]//i;
277 $tmp =~ s/[\'\"],?\s*$//;
278 $tmp =~ s/[\'\"]\);\s*$//;
279 $base = $tmp;
280 } elsif ( $tmp =~ /^\s*[\'\"]charset[\'\"]/i ) {
281 $tmp =~ s/^\s*[\'\"]charset[\'\"]\s*=>\s*[\'\"]//i;
282 $tmp =~ s/[\'\"],?\s*$//;
283 $tmp =~ s/[\'\"]\);\s*$//;
284 $charset = $tmp;
285 } elsif ( $tmp =~ /^\s*[\'\"]port[\'\"]/i ) {
286 $tmp =~ s/^\s*[\'\"]port[\'\"]\s*=>\s*[\'\"]?//i;
287 $tmp =~ s/[\'\"]?,?\s*$//;
288 $tmp =~ s/[\'\"]?\);\s*$//;
289 $port = $tmp;
290 } elsif ( $tmp =~ /^\s*[\'\"]maxrows[\'\"]/i ) {
291 $tmp =~ s/^\s*[\'\"]maxrows[\'\"]\s*=>\s*[\'\"]?//i;
292 $tmp =~ s/[\'\"]?,?\s*$//;
293 $tmp =~ s/[\'\"]?\);\s*$//;
294 $maxrows = $tmp;
295 } elsif ( $tmp =~ /^\s*[\'\"]filter[\'\"]/i ) {
296 $tmp =~ s/^\s*[\'\"]filter[\'\"]\s*=>\s*[\'\"]?//i;
297 $tmp =~ s/[\'\"]?,?\s*$//;
298 $tmp =~ s/[\'\"]?\);\s*$//;
299 $filter = $tmp;
300 } elsif ( $tmp =~ /^\s*[\'\"]name[\'\"]/i ) {
301 $tmp =~ s/^\s*[\'\"]name[\'\"]\s*=>\s*[\'\"]//i;
302 $tmp =~ s/[\'\"],?\s*$//;
303 $tmp =~ s/[\'\"]\);\s*$//;
304 $name = $tmp;
305 } elsif ( $tmp =~ /^\s*[\'\"]binddn[\'\"]/i ) {
306 $tmp =~ s/^\s*[\'\"]binddn[\'\"]\s*=>\s*[\'\"]//i;
307 $tmp =~ s/[\'\"],?\s*$//;
308 $tmp =~ s/[\'\"]\);\s*$//;
309 $binddn = $tmp;
310 } elsif ( $tmp =~ /^\s*[\'\"]bindpw[\'\"]/i ) {
311 $tmp =~ s/^\s*[\'\"]bindpw[\'\"]\s*=>\s*[\'\"]//i;
312 $tmp =~ s/[\'\"],?\s*$//;
313 $tmp =~ s/[\'\"]\);\s*$//;
314 $bindpw = $tmp;
315 } elsif ( $tmp =~ /^\s*[\'\"]protocol[\'\"]/i ) {
316 $tmp =~ s/^\s*[\'\"]protocol[\'\"]\s*=>\s*[\'\"]?//i;
317 $tmp =~ s/[\'\"]?,?\s*$//;
318 $tmp =~ s/[\'\"]?\);\s*$//;
319 $protocol = $tmp;
320 } elsif ( $tmp =~ /^\s*[\'\"]limit_scope[\'\"]/i ) {
321 $tmp =~ s/^\s*[\'\"]limit_scope[\'\"]\s*=>\s*[\'\"]?//i;
322 $tmp =~ s/[\'\"]?,?\s*$//;
323 $tmp =~ s/[\'\"]?\);\s*$//;
324 $limit_scope = $tmp;
325 } elsif ( $tmp =~ /^\s*[\'\"]listing[\'\"]/i ) {
326 $tmp =~ s/^\s*[\'\"]listing[\'\"]\s*=>\s*[\'\"]?//i;
327 $tmp =~ s/[\'\"]?,?\s*$//;
328 $tmp =~ s/[\'\"]?\);\s*$//;
329 $listing = $tmp;
330 } elsif ( $tmp =~ /^\s*[\'\"]writeable[\'\"]/i ) {
331 $tmp =~ s/^\s*[\'\"]writeable[\'\"]\s*=>\s*[\'\"]?//i;
332 $tmp =~ s/[\'\"]?,?\s*$//;
333 $tmp =~ s/[\'\"]?\);\s*$//;
334 $writeable = $tmp;
335 } elsif ( $tmp =~ /^\s*[\'\"]search_tree[\'\"]/i ) {
336 $tmp =~ s/^\s*[\'\"]search_tree[\'\"]\s*=>\s*[\'\"]?//i;
337 $tmp =~ s/[\'\"]?,?\s*$//;
338 $tmp =~ s/[\'\"]?\);\s*$//;
339 $search_tree = $tmp;
340 } elsif ( $tmp =~ /^\s*[\'\"]starttls[\'\"]/i ) {
341 $tmp =~ s/^\s*[\'\"]starttls[\'\"]\s*=>\s*[\'\"]?//i;
342 $tmp =~ s/[\'\"]?,?\s*$//;
343 $tmp =~ s/[\'\"]?\);\s*$//;
344 $starttls = $tmp;
345 }
346 }
347 $ldap_host[$sub] = $host;
348 $ldap_base[$sub] = $base;
349 $ldap_name[$sub] = $name;
350 $ldap_port[$sub] = $port;
351 $ldap_maxrows[$sub] = $maxrows;
352 $ldap_filter[$sub] = $filter;
353 $ldap_charset[$sub] = $charset;
354 $ldap_binddn[$sub] = $binddn;
355 $ldap_bindpw[$sub] = $bindpw;
356 $ldap_protocol[$sub] = $protocol;
357 $ldap_limit_scope[$sub] = $limit_scope;
358 $ldap_listing[$sub] = $listing;
359 $ldap_writeable[$sub] = $writeable;
360 $ldap_search_tree[$sub] = $search_tree;
361 $ldap_starttls[$sub] = $starttls;
362 } elsif ( $options[0] =~ /^(data_dir|attachment_dir|org_logo|signout_page|icon_theme_def)$/ ) {
363 ${ $options[0] } = &change_to_rel_path($options[1]);
364 } else {
365 ${ $options[0] } = $options[1];
366 }
367 }
368 }
369 close FILE;
370
371 # FIXME: unknown introduction date
372 $useSendmail = 'false' if ( lc($useSendmail) ne 'true' );
373 $sendmail_path = "/usr/sbin/sendmail" if ( !$sendmail_path );
374 $pop_before_smtp = 'false' if ( !$pop_before_smtp );
375 $default_unseen_notify = 2 if ( !$default_unseen_notify );
376 $default_unseen_type = 1 if ( !$default_unseen_type );
377 $config_use_color = 0 if ( !$config_use_color );
378 $invert_time = 'false' if ( !$invert_time );
379 $force_username_lowercase = 'false' if ( !$force_username_lowercase );
380 $optional_delimiter = "detect" if ( !$optional_delimiter );
381 $auto_create_special = 'false' if ( !$auto_create_special );
382 $default_use_priority = 'true' if ( !$default_use_priority );
383 $default_use_mdn = 'true' if ( !$default_use_mdn );
384 $delete_folder = 'false' if ( !$delete_folder );
385 $noselect_fix_enable = 'false' if ( !$noselect_fix_enable );
386 $frame_top = "_top" if ( !$frame_top );
387 $provider_uri = '' if ( !$provider_uri );
388 $provider_name = '' if ( !$provider_name );
389 $no_list_for_subscribe = 'false' if ( !$no_list_for_subscribe );
390 $allow_charset_search = 'true' if ( !$allow_charset_search );
391 $allow_advanced_search = 0 if ( !$allow_advanced_search) ;
392 $prefs_user_field = 'user' if ( !$prefs_user_field );
393 $prefs_key_field = 'prefkey' if ( !$prefs_key_field );
394 $prefs_val_field = 'prefval' if ( !$prefs_val_field );
395 $session_name = 'SQMSESSID' if ( !$session_name );
396 $skip_SM_header = 'false' if ( !$skip_SM_header );
397 $default_use_javascript_addr_book = 'false' if (! $default_use_javascript_addr_book);
398
399 # since 1.2.0
400 $hide_sm_attributions = 'false' if ( !$hide_sm_attributions );
401 # since 1.2.5
402 $edit_identity = 'true' if ( !$edit_identity );
403 $edit_name = 'true' if ( !$edit_name );
404
405 # since 1.4.0
406 $use_smtp_tls= 'false' if ( !$use_smtp_tls);
407 $smtp_auth_mech = 'none' if ( !$smtp_auth_mech );
408 $use_imap_tls = 'false' if ( !$use_imap_tls );
409 $imap_auth_mech = 'login' if ( !$imap_auth_mech );
410
411 # since 1.5.0
412 $show_alternative_names = 'false' if ( !$show_alternative_names );
413 # $available_languages option available only in 1.5.0. removed due to $languages
414 # implementation changes. options are provided by limit_languages plugin
415 # $available_languages = 'all' if ( !$available_languages );
416 $aggressive_decoding = 'false' if ( !$aggressive_decoding );
417 # available only in 1.5.0 and 1.5.1
418 # $advanced_tree = 'false' if ( !$advanced_tree );
419 $use_php_recode = 'false' if ( !$use_php_recode );
420 $use_php_iconv = 'false' if ( !$use_php_iconv );
421
422 # since 1.5.1
423 $use_icons = 'false' if ( !$use_icons );
424 $use_iframe = 'false' if ( !$use_iframe );
425 $lossy_encoding = 'false' if ( !$lossy_encoding );
426 $allow_remote_configtest = 'false' if ( !$allow_remote_configtest );
427 $addrbook_global_table = 'global_abook' if ( !$addrbook_global_table );
428 $addrbook_global_writeable = 'false' if ( !$addrbook_global_writeable );
429 $addrbook_global_listing = 'false' if ( !$addrbook_global_listing );
430 $abook_global_file = '' if ( !$abook_global_file);
431 $abook_global_file_writeable = 'false' if ( !$abook_global_file_writeable);
432 $abook_global_file_listing = 'true' if ( !$abook_global_file_listing );
433 $encode_header_key = '' if ( !$encode_header_key );
434 $hide_auth_header = 'false' if ( !$hide_auth_header );
435 $time_zone_type = '0' if ( !$time_zone_type );
436 $prefs_user_size = 128 if ( !$prefs_user_size );
437 $prefs_key_size = 64 if ( !$prefs_key_size );
438 $prefs_val_size = 65536 if ( !$prefs_val_size );
439
440 # add qmail-inject test here for backwards compatibility
441 if ( !$sendmail_args && $sendmail_path =~ /qmail-inject/ ) {
442 $sendmail_args = '';
443 } elsif ( !$sendmail_args ) {
444 $sendmail_args = '-i -t';
445 }
446
447 $default_fontsize = '' if ( !$default_fontsize);
448 $default_fontset = '' if ( !$default_fontset);
449 if ( !%fontsets) {
450 %fontsets = ('serif', 'serif',
451 'sans', 'helvetica,arial,sans-serif',
452 'comicsans', 'comic sans ms,sans-serif',
453 'tahoma', 'tahoma,sans-serif',
454 'verasans', 'bitstream vera sans,verdana,sans-serif');
455 }
456
457 # $use_imap_tls and $use_smtp_tls are switched to integer since 1.5.1
458 $use_imap_tls = 0 if ( $use_imap_tls eq 'false');
459 $use_imap_tls = 1 if ( $use_imap_tls eq 'true');
460 $use_smtp_tls = 0 if ( $use_smtp_tls eq 'false');
461 $use_smtp_tls = 1 if ( $use_smtp_tls eq 'true');
462 # sorting options changed names and reversed values in 1.5.1
463 $disable_thread_sort = 'false' if ( !$disable_thread_sort );
464 $disable_server_sort = 'false' if ( !$disable_server_sort );
465
466 # since 1.5.2
467 $abook_file_line_length = 2048 if ( !$abook_file_line_length );
468 $config_location_base = '' if ( !$config_location_base );
469 $smtp_sitewide_user = '' if ( !$smtp_sitewide_user );
470 $smtp_sitewide_pass = '' if ( !$smtp_sitewide_pass );
471 $icon_theme_def = '' if ( !$icon_theme_def );
472
473 if ( $ARGV[0] eq '--install-plugin' ) {
474 print "Activating plugin " . $ARGV[1] . "\n";
475 push @plugins, $ARGV[1];
476 save_data();
477 exit(0);
478 } elsif ( $ARGV[0] eq '--remove-plugin' ) {
479 print "Removing plugin " . $ARGV[1] . "\n";
480 foreach $plugin (@plugins) {
481 if ( $plugin ne $ARGV[1] ) {
482 push @newplugins, $plugin;
483 }
484 }
485 @plugins = @newplugins;
486 save_data();
487 exit(0);
488 } elsif ( $ARGV[0] eq '--update-plugins' or $ARGV[0] eq '-u') {
489 build_plugin_hook_array();
490 exit(0);
491 } elsif ( $ARGV[0] eq '--help' or $ARGV[0] eq '-h') {
492 print "SquirrelMail Configuration Script\n";
493 print "Usage:\n";
494 print " * No arguments: initiates the configuration dialog\n";
495 print " * --install-plugin <plugin> : activates the specified plugin\n";
496 print " * --remove-plugin <plugin> : deactivates the specified plugin\n";
497 print " * --update-plugins , -u : rebuilds plugin_hooks.php according\n";
498 print " to plugins activated in config.php\n";
499 print " * --help , -h : Displays this help\n";
500 print "\n";
501 exit(0);
502 }
503
504 #####################################################################################
505 if ( $config_use_color == 1 ) {
506 $WHT = "\x1B[37;1m";
507 $NRM = "\x1B[0m";
508 } else {
509 $WHT = "";
510 $NRM = "";
511 $config_use_color = 2;
512 }
513
514 while ( ( $command ne "q" ) && ( $command ne "Q" ) && ( $command ne ":q" ) ) {
515 clear_screen();
516 print $WHT. "SquirrelMail Configuration : " . $NRM;
517 if ( $config == 1 ) { print "Read: config.php"; }
518 elsif ( $config == 2 ) { print "Read: config_default.php"; }
519 print " ($print_config_version)\n";
520 print "---------------------------------------------------------\n";
521
522 if ( $menu == 0 ) {
523 print $WHT. "Main Menu --\n" . $NRM;
524 print "1. Organization Preferences\n";
525 print "2. Server Settings\n";
526 print "3. Folder Defaults\n";
527 print "4. General Options\n";
528 print "5. User Interface\n";
529 print "6. Address Books\n";
530 print "7. Message of the Day (MOTD)\n";
531 print "8. Plugins\n";
532 print "9. Database\n";
533 print "10. Language settings\n";
534 print "11. Tweaks\n";
535 print "\n";
536 print "D. Set pre-defined settings for specific IMAP servers\n";
537 print "\n";
538 } elsif ( $menu == 1 ) {
539 print $WHT. "Organization Preferences\n" . $NRM;
540 print "1. Organization Name : $WHT$org_name$NRM\n";
541 print "2. Organization Logo : $WHT$org_logo$NRM\n";
542 print "3. Org. Logo Width/Height : $WHT($org_logo_width/$org_logo_height)$NRM\n";
543 print "4. Organization Title : $WHT$org_title$NRM\n";
544 print "5. Signout Page : $WHT$signout_page$NRM\n";
545 print "6. Top Frame : $WHT$frame_top$NRM\n";
546 print "7. Provider link : $WHT$provider_uri$NRM\n";
547 print "8. Provider name : $WHT$provider_name$NRM\n";
548
549 print "\n";
550 print "R Return to Main Menu\n";
551 } elsif ( $menu == 2 ) {
552 print $WHT. "Server Settings\n\n" . $NRM;
553 print $WHT . "General" . $NRM . "\n";
554 print "-------\n";
555 print "1. Domain : $WHT$domain$NRM\n";
556 print "2. Invert Time : $WHT$invert_time$NRM\n";
557 print "3. Sendmail or SMTP : $WHT";
558 if ( lc($useSendmail) eq 'true' ) {
559 print "Sendmail";
560 } else {
561 print "SMTP";
562 }
563 print "$NRM\n";
564 print "\n";
565
566 if ( $show_imap_settings ) {
567 print $WHT . "IMAP Settings". $NRM . "\n--------------\n";
568 print "4. IMAP Server : $WHT$imapServerAddress$NRM\n";
569 print "5. IMAP Port : $WHT$imapPort$NRM\n";
570 print "6. Authentication type : $WHT$imap_auth_mech$NRM\n";
571 print "7. Secure IMAP (TLS) : $WHT" . display_use_tls($use_imap_tls) . "$NRM\n";
572 print "8. Server software : $WHT$imap_server_type$NRM\n";
573 print "9. Delimiter : $WHT$optional_delimiter$NRM\n";
574 print "\n";
575 } elsif ( $show_smtp_settings ) {
576 if ( lc($useSendmail) eq 'true' ) {
577 print $WHT . "Sendmail" . $NRM . "\n--------\n";
578 print "4. Sendmail Path : $WHT$sendmail_path$NRM\n";
579 print "5. Sendmail arguments : $WHT$sendmail_args$NRM\n";
580 print "6. Header encryption key : $WHT$encode_header_key$NRM\n";
581 print "\n";
582 } else {
583 print $WHT . "SMTP Settings" . $NRM . "\n-------------\n";
584 print "4. SMTP Server : $WHT$smtpServerAddress$NRM\n";
585 print "5. SMTP Port : $WHT$smtpPort$NRM\n";
586 print "6. POP before SMTP : $WHT$pop_before_smtp$NRM\n";
587 print "7. SMTP Authentication : $WHT$smtp_auth_mech" . display_smtp_sitewide_userpass() ."$NRM\n";
588 print "8. Secure SMTP (TLS) : $WHT" . display_use_tls($use_smtp_tls) . "$NRM\n";
589 print "9. Header encryption key : $WHT$encode_header_key$NRM\n";
590 print "\n";
591 }
592 }
593
594 if ($show_imap_settings == 0) {
595 print "A. Update IMAP Settings : ";
596 print "$WHT$imapServerAddress$NRM:";
597 print "$WHT$imapPort$NRM ";
598 print "($WHT$imap_server_type$NRM)\n";
599 }
600 if ($show_smtp_settings == 0) {
601 if ( lc($useSendmail) eq 'true' ) {
602 print "B. Change Sendmail Config : $WHT$sendmail_path$NRM\n";
603 } else {
604 print "B. Update SMTP Settings : ";
605 print "$WHT$smtpServerAddress$NRM:";
606 print "$WHT$smtpPort$NRM\n";
607 }
608 }
609 if ( $show_smtp_settings || $show_imap_settings )
610 {
611 print "H. Hide " .
612 ($show_imap_settings ? "IMAP Server" :
613 (lc($useSendmail) eq 'true') ? "Sendmail" : "SMTP") . " Settings\n";
614 }
615
616 print "\n";
617 print "R Return to Main Menu\n";
618 } elsif ( $menu == 3 ) {
619 print $WHT. "Folder Defaults\n" . $NRM;
620 print "1. Default Folder Prefix : $WHT$default_folder_prefix$NRM\n";
621 print "2. Show Folder Prefix Option : $WHT$show_prefix_option$NRM\n";
622 print "3. Trash Folder : $WHT$trash_folder$NRM\n";
623 print "4. Sent Folder : $WHT$sent_folder$NRM\n";
624 print "5. Drafts Folder : $WHT$draft_folder$NRM\n";
625 print "6. By default, move to trash : $WHT$default_move_to_trash$NRM\n";
626 print "7. By default, move to sent : $WHT$default_move_to_sent$NRM\n";
627 print "8. By default, save as draft : $WHT$default_save_as_draft$NRM\n";
628 print "9. List Special Folders First : $WHT$list_special_folders_first$NRM\n";
629 print "10. Show Special Folders Color : $WHT$use_special_folder_color$NRM\n";
630 print "11. Auto Expunge : $WHT$auto_expunge$NRM\n";
631 print "12. Default Sub. of INBOX : $WHT$default_sub_of_inbox$NRM\n";
632 print "13. Show 'Contain Sub.' Option : $WHT$show_contain_subfolders_option$NRM\n";
633 print "14. Default Unseen Notify : $WHT$default_unseen_notify$NRM\n";
634 print "15. Default Unseen Type : $WHT$default_unseen_type$NRM\n";
635 print "16. Auto Create Special Folders : $WHT$auto_create_special$NRM\n";
636 print "17. Folder Delete Bypasses Trash : $WHT$delete_folder$NRM\n";
637 print "18. Enable /NoSelect folder fix : $WHT$noselect_fix_enable$NRM\n";
638 print "\n";
639 print "R Return to Main Menu\n";
640 } elsif ( $menu == 4 ) {
641 print $WHT. "General Options\n" . $NRM;
642 print "1. Data Directory : $WHT$data_dir$NRM\n";
643 print "2. Attachment Directory : $WHT$attachment_dir$NRM\n";
644 print "3. Directory Hash Level : $WHT$dir_hash_level$NRM\n";
645 print "4. Default Left Size : $WHT$default_left_size$NRM\n";
646 print "5. Usernames in Lowercase : $WHT$force_username_lowercase$NRM\n";
647 print "6. Allow use of priority : $WHT$default_use_priority$NRM\n";
648 print "7. Hide SM attributions : $WHT$hide_sm_attributions$NRM\n";
649 print "8. Allow use of receipts : $WHT$default_use_mdn$NRM\n";
650 print "9. Allow editing of identity : $WHT$edit_identity$NRM\n";
651 print " Allow editing of name : $WHT$edit_name$NRM\n";
652 print " Remove username from header : $WHT$hide_auth_header$NRM\n";
653 print "10. Disable server thread sort : $WHT$disable_thread_sort$NRM\n";
654 print "11. Disable server-side sorting : $WHT$disable_server_sort$NRM\n";
655 print "12. Allow server charset search : $WHT$allow_charset_search$NRM\n";
656 print "13. Allow advanced search : $WHT$allow_advanced_search$NRM\n";
657 print "14. PHP session name : $WHT$session_name$NRM\n";
658 print "15. Time zone configuration : $WHT$time_zone_type$NRM\n";
659 print "16. Location base : $WHT$config_location_base$NRM\n";
660 print "\n";
661 print "R Return to Main Menu\n";
662 } elsif ( $menu == 5 ) {
663 print $WHT. "User Interface\n" . $NRM;
664 print "1. Use Icons? : $WHT$use_icons$NRM\n";
665 # print "3. Default Icon Set : $WHT$icon_theme_def$NRM\n";
666 print "2. Default font size : $WHT$default_fontsize$NRM\n";
667 print "3. Manage template sets\n";
668 print "4. Manage user themes\n";
669 print "5. Manage font sets\n";
670 print "6. Manage icon themes\n";
671
672 print "\n";
673 print "R Return to Main Menu\n";
674 } elsif ( $menu == 6 ) {
675 print $WHT. "Address Books\n" . $NRM;
676 print "1. Change LDAP Servers\n";
677 for ( $count = 0 ; $count <= $#ldap_host ; $count++ ) {
678 print " > $ldap_host[$count]\n";
679 }
680 print "2. Use Javascript address book search : $WHT$default_use_javascript_addr_book$NRM\n";
681 print "3. Global address book file : $WHT$abook_global_file$NRM\n";
682 print "4. Allow writing into global file address book : $WHT$abook_global_file_writeable$NRM\n";
683 print "5. Allow listing of global file address book : $WHT$abook_global_file_listing$NRM\n";
684 print "6. Allowed address book line length : $WHT$abook_file_line_length$NRM\n";
685 print "\n";
686 print "R Return to Main Menu\n";
687 } elsif ( $menu == 7 ) {
688 print $WHT. "Message of the Day (MOTD)\n" . $NRM;
689 print "\n$motd\n";
690 print "\n";
691 print "1 Edit the MOTD\n";
692 print "\n";
693 print "R Return to Main Menu\n";
694 } elsif ( $menu == 8 ) {
695 print $WHT. "Plugins\n" . $NRM;
696 print " Installed Plugins\n";
697 $num = 0;
698 for ( $count = 0 ; $count <= $#plugins ; $count++ ) {
699 $num = $count + 1;
700 print " $num. $plugins[$count]\n";
701 }
702 print "\n Available Plugins:\n";
703 opendir( DIR, "../plugins" );
704 @files = readdir(DIR);
705 $pos = 0;
706 @unused_plugins = ();
707 for ( $i = 0 ; $i <= $#files ; $i++ ) {
708 if ( -d "../plugins/" . $files[$i] && $files[$i] !~ /^\./ && $files[$i] ne "CVS" ) {
709 $match = 0;
710 for ( $k = 0 ; $k <= $#plugins ; $k++ ) {
711 if ( $plugins[$k] eq $files[$i] ) {
712 $match = 1;
713 }
714 }
715 if ( $match == 0 ) {
716 $unused_plugins[$pos] = $files[$i];
717 $pos++;
718 }
719 }
720 }
721
722 for ( $i = 0 ; $i <= $#unused_plugins ; $i++ ) {
723 $num = $num + 1;
724 print " $num. $unused_plugins[$i]\n";
725 }
726 closedir DIR;
727
728 print "\n";
729 print "R Return to Main Menu\n";
730 } elsif ( $menu == 9 ) {
731 print $WHT. "Database\n" . $NRM;
732 print "1. DSN for Address Book : $WHT$addrbook_dsn$NRM\n";
733 print "2. Table for Address Book : $WHT$addrbook_table$NRM\n";
734 print "\n";
735 print "3. DSN for Preferences : $WHT$prefs_dsn$NRM\n";
736 print "4. Table for Preferences : $WHT$prefs_table$NRM\n";
737 print "5. Field for username : $WHT$prefs_user_field$NRM ($prefs_user_size)\n";
738 print "6. Field for prefs key : $WHT$prefs_key_field$NRM ($prefs_key_size)\n";
739 print "7. Field for prefs value : $WHT$prefs_val_field$NRM ($prefs_val_size)\n";
740 print "\n";
741 print "8. DSN for Global Address Book : $WHT$addrbook_global_dsn$NRM\n";
742 print "9. Table for Global Address Book : $WHT$addrbook_global_table$NRM\n";
743 print "10. Allow writing into Global Address Book : $WHT$addrbook_global_writeable$NRM\n";
744 print "11. Allow listing of Global Address Book : $WHT$addrbook_global_listing$NRM\n";
745 print "\n";
746 print "R Return to Main Menu\n";
747 } elsif ( $menu == 10 ) {
748 print $WHT. "Language settings\n" . $NRM;
749 print "1. Default Language : $WHT$squirrelmail_default_language$NRM\n";
750 print "2. Default Charset : $WHT$default_charset$NRM\n";
751 print "3. Show alternative language names : $WHT$show_alternative_names$NRM\n";
752 print "4. Enable aggressive decoding : $WHT$aggressive_decoding$NRM\n";
753 print "5. Enable lossy encoding : $WHT$lossy_encoding$NRM\n";
754 print "\n";
755 print "R Return to Main Menu\n";
756 } elsif ( $menu == 11 ) {
757 print $WHT. "Interface tweaks\n" . $NRM;
758 print "1. Display html mails in iframe : $WHT$use_iframe$NRM\n";
759 print "\n";
760 print $WHT. "PHP tweaks\n" . $NRM;
761 print "4. Use php recode functions : $WHT$use_php_recode$NRM\n";
762 print "5. Use php iconv functions : $WHT$use_php_iconv$NRM\n";
763 print "\n";
764 print $WHT. "Configuration tweaks\n" . $NRM;
765 print "6. Allow remote configtest : $WHT$allow_remote_configtest$NRM\n";
766 print "\n";
767 print "R Return to Main Menu\n";
768 }
769 if ( $config_use_color == 1 ) {
770 print "C Turn color off\n";
771 } else {
772 print "C Turn color on\n";
773 }
774 print "S Save data\n";
775 print "Q Quit\n";
776
777 print "\n";
778 print "Command >> " . $WHT;
779 $command = <STDIN>;
780 $command =~ s/[\n\r]//g;
781 $command =~ tr/A-Z/a-z/;
782 print "$NRM\n";
783
784 # Read the commands they entered.
785 if ( $command eq "r" ) {
786 $menu = 0;
787 } elsif ( $command eq "s" ) {
788 save_data();
789 print "Press enter to continue...";
790 $tmp = <STDIN>;
791 $saved = 1;
792 } elsif ( ( $command eq "q" ) && ( $saved == 0 ) ) {
793 print "You have not saved your data.\n";
794 print "Save? [" . $WHT . "Y" . $NRM . "/n]: ";
795 $save = <STDIN>;
796 if ( ( $save =~ /^y/i ) || ( $save =~ /^\s*$/ ) ) {
797 save_data();
798 }
799 } elsif ( $command eq "c" ) {
800 if ( $config_use_color == 1 ) {
801 $config_use_color = 2;
802 $WHT = "";
803 $NRM = "";
804 } else {
805 $config_use_color = 1;
806 $WHT = "\x1B[37;1m";
807 $NRM = "\x1B[0m";
808 }
809 } elsif ( $command eq "d" && $menu == 0 ) {
810 set_defaults();
811 } else {
812 $saved = 0;
813 if ( $menu == 0 ) {
814 if ( ( $command > 0 ) && ( $command < 12 ) ) {
815 $menu = $command;
816 }
817 } elsif ( $menu == 1 ) {
818 if ( $command == 1 ) { $org_name = command1(); }
819 elsif ( $command == 2 ) { $org_logo = command2(); }
820 elsif ( $command == 3 ) { ($org_logo_width,$org_logo_height) = command2a(); }
821 elsif ( $command == 4 ) { $org_title = command3(); }
822 elsif ( $command == 5 ) { $signout_page = command4(); }
823 elsif ( $command == 6 ) { $frame_top = command6(); }
824 elsif ( $command == 7 ) { $provider_uri = command7(); }
825 elsif ( $command == 8 ) { $provider_name = command8(); }
826
827 } elsif ( $menu == 2 ) {
828 if ( $command eq "a" ) { $show_imap_settings = 1; $show_smtp_settings = 0; }
829 elsif ( $command eq "b" ) { $show_imap_settings = 0; $show_smtp_settings = 1; }
830 elsif ( $command eq "h" ) { $show_imap_settings = 0; $show_smtp_settings = 0; }
831 elsif ( $command <= 3 ) {
832 if ( $command == 1 ) { $domain = command11(); }
833 elsif ( $command == 2 ) { $invert_time = command110(); }
834 elsif ( $command == 3 ) { $useSendmail = command14(); }
835 $show_imap_settings = 0; $show_smtp_settings = 0;
836 } elsif ( $show_imap_settings ) {
837 if ( $command == 4 ) { $imapServerAddress = command12(); }
838 elsif ( $command == 5 ) { $imapPort = command13(); }
839 elsif ( $command == 6 ) { $imap_auth_mech = command112a(); }
840 elsif ( $command == 7 ) { $use_imap_tls = command_use_tls("IMAP",$use_imap_tls); }
841 elsif ( $command == 8 ) { $imap_server_type = command19(); }
842 elsif ( $command == 9 ) { $optional_delimiter = command111(); }
843 } elsif ( $show_smtp_settings && lc($useSendmail) eq 'true' ) {
844 if ( $command == 4 ) { $sendmail_path = command15(); }
845 elsif ( $command == 5 ) { $sendmail_args = command_sendmail_args(); }
846 elsif ( $command == 6 ) { $encode_header_key = command114(); }
847 } elsif ( $show_smtp_settings ) {
848 if ( $command == 4 ) { $smtpServerAddress = command16(); }
849 elsif ( $command == 5 ) { $smtpPort = command17(); }
850 elsif ( $command == 6 ) { $pop_before_smtp = command18a(); }
851 elsif ( $command == 7 ) { $smtp_auth_mech = command112b(); }
852 elsif ( $command == 8 ) { $use_smtp_tls = command_use_tls("SMTP",$use_smtp_tls); }
853 elsif ( $command == 9 ) { $encode_header_key = command114(); }
854 }
855 } elsif ( $menu == 3 ) {
856 if ( $command == 1 ) { $default_folder_prefix = command21(); }
857 elsif ( $command == 2 ) { $show_prefix_option = command22(); }
858 elsif ( $command == 3 ) { $trash_folder = command23a(); }
859 elsif ( $command == 4 ) { $sent_folder = command23b(); }
860 elsif ( $command == 5 ) { $draft_folder = command23c(); }
861 elsif ( $command == 6 ) { $default_move_to_trash = command24a(); }
862 elsif ( $command == 7 ) { $default_move_to_sent = command24b(); }
863 elsif ( $command == 8 ) { $default_save_as_draft = command24c(); }
864 elsif ( $command == 9 ) { $list_special_folders_first = command27(); }
865 elsif ( $command == 10 ) { $use_special_folder_color = command28(); }
866 elsif ( $command == 11 ) { $auto_expunge = command29(); }
867 elsif ( $command == 12 ) { $default_sub_of_inbox = command210(); }
868 elsif ( $command == 13 ) { $show_contain_subfolders_option = command211(); }
869 elsif ( $command == 14 ) { $default_unseen_notify = command212(); }
870 elsif ( $command == 15 ) { $default_unseen_type = command213(); }
871 elsif ( $command == 16 ) { $auto_create_special = command214(); }
872 elsif ( $command == 17 ) { $delete_folder = command215(); }
873 elsif ( $command == 18 ) { $noselect_fix_enable = command216(); }
874 } elsif ( $menu == 4 ) {
875 if ( $command == 1 ) { $data_dir = command33a(); }
876 elsif ( $command == 2 ) { $attachment_dir = command33b(); }
877 elsif ( $command == 3 ) { $dir_hash_level = command33c(); }
878 elsif ( $command == 4 ) { $default_left_size = command35(); }
879 elsif ( $command == 5 ) { $force_username_lowercase = command36(); }
880 elsif ( $command == 6 ) { $default_use_priority = command37(); }
881 elsif ( $command == 7 ) { $hide_sm_attributions = command38(); }
882 elsif ( $command == 8 ) { $default_use_mdn = command39(); }
883 elsif ( $command == 9 ) { $edit_identity = command310(); }
884 elsif ( $command == 10 ) { $disable_thread_sort = command312(); }
885 elsif ( $command == 11 ) { $disable_server_sort = command313(); }
886 elsif ( $command == 12 ) { $allow_charset_search = command314(); }
887 elsif ( $command == 13 ) { $allow_advanced_search = command316(); }
888 elsif ( $command == 14 ) { $session_name = command317(); }
889 elsif ( $command == 15 ) { $time_zone_type = command318(); }
890 elsif ( $command == 16 ) { $config_location_base = command_config_location_base(); }
891 } elsif ( $menu == 5 ) {
892 if ( $command == 1 ) { $use_icons = commandB3(); }
893 # elsif ( $command == 3 ) { $icon_theme_def = commandB7(); }
894 elsif ( $command == 2 ) { $default_fontsize = command_default_fontsize(); }
895 elsif ( $command == 3 ) { $templateset_default = command_templates(); }
896 elsif ( $command == 4 ) { command_userThemes(); }
897 elsif ( $command == 5 ) { command_fontsets(); }
898 elsif ( $command == 6 ) { command_iconSets(); }
899 } elsif ( $menu == 6 ) {
900 if ( $command == 1 ) { command61(); }
901 elsif ( $command == 2 ) { command62(); }
902 elsif ( $command == 3 ) { $abook_global_file=command63(); }
903 elsif ( $command == 4 ) { command64(); }
904 elsif ( $command == 5 ) { command65(); }
905 elsif ( $command == 6 ) { command_abook_file_line_length(); }
906 } elsif ( $menu == 7 ) {
907 if ( $command == 1 ) { $motd = command71(); }
908 } elsif ( $menu == 8 ) {
909 if ( $command =~ /^[0-9]+/ ) { @plugins = command81(); }
910 } elsif ( $menu == 9 ) {
911 if ( $command == 1 ) { $addrbook_dsn = command91(); }
912 elsif ( $command == 2 ) { $addrbook_table = command92(); }
913 elsif ( $command == 3 ) { $prefs_dsn = command93(); }
914 elsif ( $command == 4 ) { $prefs_table = command94(); }
915 elsif ( $command == 5 ) { $prefs_user_field = command95(); }
916 elsif ( $command == 6 ) { $prefs_key_field = command96(); }
917 elsif ( $command == 7 ) { $prefs_val_field = command97(); }
918 elsif ( $command == 8 ) { $addrbook_global_dsn = command98(); }
919 elsif ( $command == 9 ) { $addrbook_global_table = command99(); }
920 elsif ( $command == 10 ) { $addrbook_global_writeable = command910(); }
921 elsif ( $command == 11 ) { $addrbook_global_listing = command911(); }
922 } elsif ( $menu == 10 ) {
923 if ( $command == 1 ) { $squirrelmail_default_language = commandA1(); }
924 elsif ( $command == 2 ) { $default_charset = commandA2(); }
925 elsif ( $command == 3 ) { $show_alternative_names = commandA3(); }
926 elsif ( $command == 4 ) { $aggressive_decoding = commandA4(); }
927 elsif ( $command == 5 ) { $lossy_encoding = commandA5(); }
928 } elsif ( $menu == 11 ) {
929 if ( $command == 1 ) { $use_iframe = commandB2(); }
930 elsif ( $command == 4 ) { $use_php_recode = commandB4(); }
931 elsif ( $command == 5 ) { $use_php_iconv = commandB5(); }
932 elsif ( $command == 6 ) { $allow_remote_configtest = commandB6(); }
933 }
934 }
935 }
936
937 # we exit here
938 print "\nExiting conf.pl.\n".
939 "You might want to test your configuration by browsing to\n".
940 "http://your-squirrelmail-location/src/configtest.php\n".
941 "Happy SquirrelMailing!\n\n";
942
943
944 ####################################################################################
945
946 # org_name
947 sub command1 {
948 print "We have tried to make the name SquirrelMail as transparent as\n";
949 print "possible. If you set up an organization name, most places where\n";
950 print "SquirrelMail would take credit will be credited to your organization.\n";
951 print "\n";
952 print "If your Organization Name includes a '\$', please precede it with a \\. \n";
953 print "Other '\$' will be considered the beginning of a variable that\n";
954 print "must be defined before the \$org_name is printed.\n";
955 print "\n";
956 print "[$WHT$org_name$NRM]: $WHT";
957 $new_org_name = <STDIN>;
958 if ( $new_org_name eq "\n" ) {
959 $new_org_name = $org_name;
960 } else {
961 $new_org_name =~ s/[\r\n]//g;
962 $new_org_name =~ s/\"/&quot;/g;
963 }
964 return $new_org_name;
965 }
966
967 # org_logo
968 sub command2 {
969 print "Your organization's logo is an image that will be displayed at\n";
970 print "different times throughout SquirrelMail. ";
971 print "\n";
972 print "Please be aware of the following: \n";
973 print " - Relative URLs are relative to the config dir\n";
974 print " to use the default logo, use ../images/sm_logo.png\n";
975 print " - To specify a logo defined outside the SquirrelMail source tree\n";
976 print " use the absolute URL the webserver would use to include the file\n";
977 print " e.g. http://www.example.com/images/mylogo.gif or /images/mylogo.jpg\n";
978 print "\n";
979 print "[$WHT$org_logo$NRM]: $WHT";
980 $new_org_logo = <STDIN>;
981 if ( $new_org_logo eq "\n" ) {
982 $new_org_logo = $org_logo;
983 } else {
984 $new_org_logo =~ s/[\r\n]//g;
985 }
986 return $new_org_logo;
987 }
988
989 # org_logo_width
990 sub command2a {
991 print "Your organization's logo is an image that will be displayed at\n";
992 print "different times throughout SquirrelMail. Width\n";
993 print "and Height of your logo image. Use '0' to disable.\n";
994 print "\n";
995 print "Width: [$WHT$org_logo_width$NRM]: $WHT";
996 $new_org_logo_width = <STDIN>;
997 $new_org_logo_width =~ tr/0-9//cd; # only want digits!
998 if ( $new_org_logo_width eq '' ) {
999 $new_org_logo_width = $org_logo_width;
1000 }
1001 if ( $new_org_logo_width > 0 ) {
1002 print "Height: [$WHT$org_logo_height$NRM]: $WHT";
1003 $new_org_logo_height = <STDIN>;
1004 $new_org_logo_height =~ tr/0-9//cd; # only want digits!
1005 if( $new_org_logo_height eq '' ) {
1006 $new_org_logo_height = $org_logo_height;
1007 }
1008 } else {
1009 $new_org_logo_height = 0;
1010 }
1011 return ($new_org_logo_width, $new_org_logo_height);
1012 }
1013
1014 # org_title
1015 sub command3 {
1016 print "A title is what is displayed at the top of the browser window in\n";
1017 print "the titlebar. Usually this will end up looking something like:\n";
1018 print "\"Netscape: $org_title\"\n";
1019 print "\n";
1020 print "If your Organization Title includes a '\$', please precede it with a \\. \n";
1021 print "Other '\$' will be considered the beginning of a variable that\n";
1022 print "must be defined before the \$org_title is printed.\n";
1023 print "\n";
1024 print "[$WHT$org_title$NRM]: $WHT";
1025 $new_org_title = <STDIN>;
1026 if ( $new_org_title eq "\n" ) {
1027 $new_org_title = $org_title;
1028 } else {
1029 $new_org_title =~ s/[\r\n]//g;
1030 $new_org_title =~ s/\"/\'/g;
1031 }
1032 return $new_org_title;
1033 }
1034
1035 # signout_page
1036 sub command4 {
1037 print "When users click the Sign Out button they will be logged out and\n";
1038 print "then sent to signout_page. If signout_page is left empty,\n";
1039 print "(hit space and then return) they will be taken, as normal,\n";
1040 print "to the default and rather sparse SquirrelMail signout page.\n";
1041 print "\n";
1042 print "[$WHT$signout_page$NRM]: $WHT";
1043 $new_signout_page = <STDIN>;
1044 if ( $new_signout_page eq "\n" ) {
1045 $new_signout_page = $signout_page;
1046 } else {
1047 $new_signout_page =~ s/[\r\n]//g;
1048 $new_signout_page =~ s/^\s+$//g;
1049 }
1050 return $new_signout_page;
1051 }
1052
1053 # Default top frame
1054 sub command6 {
1055 print "SquirrelMail defaults to using the whole of the browser window.\n";
1056 print "This allows you to keep it within a specified frame. The default\n";
1057 print "is '_top'\n";
1058 print "\n";
1059 print "[$WHT$frame_top$NRM]: $WHT";
1060 $new_frame_top = <STDIN>;
1061 if ( $new_frame_top eq "\n" ) {
1062 $new_frame_top = '_top';
1063 } else {
1064 $new_frame_top =~ s/[\r\n]//g;
1065 $new_frame_top =~ s/^\s+$//g;
1066 }
1067 return $new_frame_top;
1068 }
1069
1070 # Default link to provider
1071 sub command7 {
1072 print "Here you can set the link on the right of the page.\n";
1073 print "If empty, it will link to the SquirrelMail About page.\n";
1074 print "\n";
1075 print "[$WHT$provider_uri$NRM]: $WHT";
1076 $new_provider_uri = <STDIN>;
1077 if ( $new_provider_uri eq "\n" ) {
1078 $new_provider_uri = '';
1079 } else {
1080 $new_provider_uri =~ s/[\r\n]//g;
1081 $new_provider_uri =~ s/^\s+$//g;
1082 }
1083 return $new_provider_uri;
1084 }
1085
1086 sub command8 {
1087 print "Here you can set the name of the link on the right of the page.\n";
1088 print "The default is 'SquirrelMail'\n";
1089 print "\n";
1090 print "[$WHT$provider_name$NRM]: $WHT";
1091 $new_provider_name = <STDIN>;
1092 if ( $new_provider_name eq "\n" ) {
1093 $new_provider_name = 'SquirrelMail';
1094 } else {
1095 $new_provider_name =~ s/[\r\n]//g;
1096 $new_provider_name =~ s/^\s+$//g;
1097 $new_provider_name =~ s/\'/\\'/g;
1098 }
1099 return $new_provider_name;
1100 }
1101
1102 ####################################################################################
1103
1104 # domain
1105 sub command11 {
1106 print "The domain name is the suffix at the end of all email addresses. If\n";
1107 print "for example, your email address is jdoe\@example.com, then your domain\n";
1108 print "would be example.com.\n";
1109 print "\n";
1110 print "[$WHT$domain$NRM]: $WHT";
1111 $new_domain = <STDIN>;
1112 if ( $new_domain eq "\n" ) {
1113 $new_domain = $domain;
1114 } else {
1115 $new_domain =~ s/[\r\n]//g;
1116 }
1117 return $new_domain;
1118 }
1119
1120 # imapServerAddress
1121 sub command12 {
1122 print "This is the hostname where your IMAP server can be contacted.\n";
1123 print "[$WHT$imapServerAddress$NRM]: $WHT";
1124 $new_imapServerAddress = <STDIN>;
1125 if ( $new_imapServerAddress eq "\n" ) {
1126 $new_imapServerAddress = $imapServerAddress;
1127 } else {
1128 $new_imapServerAddress =~ s/[\r\n]//g;
1129 }
1130 return $new_imapServerAddress;
1131 }
1132
1133 # imapPort
1134 sub command13 {
1135 print "This is the port that your IMAP server is on. Usually this is 143.\n";
1136 print "[$WHT$imapPort$NRM]: $WHT";
1137 $new_imapPort = <STDIN>;
1138 if ( $new_imapPort eq "\n" ) {
1139 $new_imapPort = $imapPort;
1140 } else {
1141 $new_imapPort =~ s/[\r\n]//g;
1142 }
1143 return $new_imapPort;
1144 }
1145
1146 # useSendmail
1147 sub command14 {
1148 print "You now need to choose the method that you will use for sending\n";
1149 print "messages in SquirrelMail. You can either connect to an SMTP server\n";
1150 print "or use sendmail directly.\n";
1151 if ( lc($useSendmail) eq 'true' ) {
1152 $default_value = "1";
1153 } else {
1154 $default_value = "2";
1155 }
1156 print "\n";
1157 print " 1. Sendmail\n";
1158 print " 2. SMTP\n";
1159 print "Your choice [1/2] [$WHT$default_value$NRM]: $WHT";
1160 $use_sendmail = <STDIN>;
1161 if ( ( $use_sendmail =~ /^1\n/i )
1162 || ( ( $use_sendmail =~ /^\n/ ) && ( $default_value eq "1" ) ) ) {
1163 $useSendmail = 'true';
1164 } else {
1165 $useSendmail = 'false';
1166 }
1167 return $useSendmail;
1168 }
1169
1170 # sendmail_path
1171 sub command15 {
1172 print "Specify where the sendmail executable is located. Usually /usr/sbin/sendmail\n";
1173 print "[$WHT$sendmail_path$NRM]: $WHT";
1174 $new_sendmail_path = <STDIN>;
1175 if ( $new_sendmail_path eq "\n" ) {
1176 $new_sendmail_path = $sendmail_path;
1177 } else {
1178 $new_sendmail_path =~ s/[\r\n]//g;
1179 }
1180 return $new_sendmail_path;
1181 }
1182
1183 # Extra sendmail arguments
1184 sub command_sendmail_args {
1185 print "Specify additional sendmail program arguments.\n";
1186 print "\n";
1187 print "Make sure that arguments are supported by your sendmail program. -f argument \n";
1188 print "is added automatically by SquirrelMail scripts. Variable defaults to standard\n";
1189 print "/usr/sbin/sendmail arguments. If you use qmail-inject, nbsmtp or any other \n";
1190 print "sendmail wrapper, which does not support -i and -t arguments, set variable to\n";
1191 print "empty string or use arguments suitable for your mailer.\n";
1192 print "\n";
1193 print "[$WHT$sendmail_args$NRM]: $WHT";
1194 $new_sendmail_args = <STDIN>;
1195 if ( $new_sendmail_args eq "\n" ) {
1196 $new_sendmail_args = $sendmail_args;
1197 } else {
1198 # strip linefeeds and crs.
1199 $new_sendmail_args =~ s/[\r\n]//g;
1200 }
1201 return trim($new_sendmail_args);
1202 }
1203
1204 # smtpServerAddress
1205 sub command16 {
1206 print "This is the hostname of your SMTP server.\n";
1207 print "[$WHT$smtpServerAddress$NRM]: $WHT";
1208 $new_smtpServerAddress = <STDIN>;
1209 if ( $new_smtpServerAddress eq "\n" ) {
1210 $new_smtpServerAddress = $smtpServerAddress;
1211 } else {
1212 $new_smtpServerAddress =~ s/[\r\n]//g;
1213 }
1214 return $new_smtpServerAddress;
1215 }
1216
1217 # smtpPort
1218 sub command17 {
1219 print "This is the port to connect to for SMTP. Usually 25.\n";
1220 print "[$WHT$smtpPort$NRM]: $WHT";
1221 $new_smtpPort = <STDIN>;
1222 if ( $new_smtpPort eq "\n" ) {
1223 $new_smtpPort = $smtpPort;
1224 } else {
1225 $new_smtpPort =~ s/[\r\n]//g;
1226 }
1227 return $new_smtpPort;
1228 }
1229
1230 # pop before SMTP
1231 sub command18a {
1232 print "Do you wish to use POP3 before SMTP? Your server must\n";
1233 print "support this in order for SquirrelMail to work with it.\n";
1234
1235 $YesNo = 'n';
1236 $YesNo = 'y' if ( lc($pop_before_smtp) eq 'true' );
1237
1238 print "Use pop before SMTP (y/n) [$WHT$YesNo$NRM]: $WHT";
1239
1240 $new_pop_before_smtp = <STDIN>;
1241 $new_pop_before_smtp =~ tr/yn//cd;
1242 return 'true' if ( $new_pop_before_smtp eq "y" );
1243 return 'false' if ( $new_pop_before_smtp eq "n" );
1244 return $pop_before_smtp;
1245 }
1246
1247 # imap_server_type
1248 sub command19 {
1249 print "Each IMAP server has its own quirks. As much as we tried to stick\n";
1250 print "to standards, it doesn't help much if the IMAP server doesn't follow\n";
1251 print "the same principles. We have made some work-arounds for some of\n";
1252 print "these servers. If you would like to use them, please select your\n";
1253 print "IMAP server. If you do not wish to use these work-arounds, you can\n";
1254 print "set this to \"other\", and none will be used.\n";
1255 print " courier = Courier IMAP server\n";
1256 print " cyrus = Cyrus IMAP server\n";
1257 print " dovecot = Dovecot Secure IMAP server\n";
1258 print " exchange = Microsoft Exchange IMAP server\n";
1259 print " hmailserver = hMailServer\n";
1260 print " macosx = Mac OS X Mailserver\n";
1261 print " mercury32 = Mercury Mail Transport System\n";
1262 print " uw = University of Washington's IMAP server\n";
1263 print "\n";
1264 print " other = Not one of the above servers\n";
1265 print "\n";
1266 print "[$WHT$imap_server_type$NRM]: $WHT";
1267 $new_imap_server_type = <STDIN>;
1268
1269 if ( $new_imap_server_type eq "\n" ) {
1270 $new_imap_server_type = $imap_server_type;
1271 } else {
1272 $new_imap_server_type =~ s/[\r\n]//g;
1273 }
1274 return $new_imap_server_type;
1275 }
1276
1277 # invert_time
1278 sub command110 {
1279 print "Sometimes the date of messages sent is messed up (off by a few hours\n";
1280 print "on some machines). Typically this happens if the system doesn't support\n";
1281 print "tm_gmtoff. It will happen only if your time zone is \"negative\".\n";
1282 print "This most often occurs on Solaris 7 machines in the United States.\n";
1283 print "By default, this is off. It should be kept off unless problems surface\n";
1284 print "about the time that messages are sent.\n";
1285 print " no = Do NOT fix time -- almost always correct\n";
1286 print " yes = Fix the time for this system\n";
1287
1288 $YesNo = 'n';
1289 $YesNo = 'y' if ( lc($invert_time) eq 'true' );
1290
1291 print "Fix the time for this system (y/n) [$WHT$YesNo$NRM]: $WHT";
1292
1293 $new_invert_time = <STDIN>;
1294 $new_invert_time =~ tr/yn//cd;
1295 return 'true' if ( $new_invert_time eq "y" );
1296 return 'false' if ( $new_invert_time eq "n" );
1297 return $invert_time;
1298 }
1299
1300 sub command111 {
1301 print "This is the delimiter that your IMAP server uses to distinguish between\n";
1302 print "folders. For example, Cyrus uses '.' as the delimiter and a complete\n";
1303 print "folder would look like 'INBOX.Friends.Bob', while UW uses '/' and would\n";
1304 print "look like 'INBOX/Friends/Bob'. Normally this should be left at 'detect'\n";
1305 print "but if you are sure you know what delimiter your server uses, you can\n";
1306 print "specify it here.\n";
1307 print "\nTo have it autodetect the delimiter, set it to 'detect'.\n\n";
1308 print "[$WHT$optional_delimiter$NRM]: $WHT";
1309 $new_optional_delimiter = <STDIN>;
1310
1311 if ( $new_optional_delimiter eq "\n" ) {
1312 $new_optional_delimiter = $optional_delimiter;
1313 } else {
1314 $new_optional_delimiter =~ s/[\r\n]//g;
1315 }
1316 return $new_optional_delimiter;
1317 }
1318 # IMAP authentication type
1319 # Possible values: login, plain, cram-md5, digest-md5
1320 # Now offers to detect supported mechs, assuming server & port are set correctly
1321
1322 sub command112a {
1323 if ($use_imap_tls ne "0") {
1324 # 1. Script does not handle TLS.
1325 # 2. Server does not have to declare all supported authentication mechs when
1326 # STARTTLS is used. Supported mechs are declared only after STARTTLS.
1327 print "Auto-detection of login methods is unavailable when using TLS or STARTTLS.\n";
1328 } else {
1329 print "If you have already set the hostname and port number, I can try to\n";
1330 print "detect the mechanisms your IMAP server supports.\n";
1331 print "I will try to detect CRAM-MD5 and DIGEST-MD5 support. I can't test\n";
1332 print "for \"login\" or \"plain\" without knowing a username and password.\n";
1333 print "Auto-detecting is optional - you can safely say \"n\" here.\n";
1334 print "\nTry to detect supported mechanisms? [y/N]: ";
1335 $inval=<STDIN>;
1336 chomp($inval);
1337 if ($inval =~ /^y\b/i) {
1338 # Yes, let's try to detect.
1339 print "Trying to detect IMAP capabilities...\n";
1340 my $host = $imapServerAddress . ':'. $imapPort;
1341 print "CRAM-MD5:\t";
1342 my $tmp = detect_auth_support('IMAP',$host,'CRAM-MD5');
1343 if (defined($tmp)) {
1344 if ($tmp eq 'YES') {
1345 print "$WHT SUPPORTED$NRM\n";
1346 } else {
1347 print "$WHT NOT SUPPORTED$NRM\n";
1348 }
1349 } else {
1350 print $WHT . " ERROR DETECTING$NRM\n";
1351 }
1352
1353 print "DIGEST-MD5:\t";
1354 $tmp = detect_auth_support('IMAP',$host,'DIGEST-MD5');
1355 if (defined($tmp)) {
1356 if ($tmp eq 'YES') {
1357 print "$WHT SUPPORTED$NRM\n";
1358 } else {
1359 print "$WHT NOT SUPPORTED$NRM\n";
1360 }
1361 } else {
1362 print $WHT . " ERROR DETECTING$NRM\n";
1363 }
1364
1365 }
1366 }
1367 print "\nWhat authentication mechanism do you want to use for IMAP connections?\n\n";
1368 print $WHT . "login" . $NRM . " - Plaintext. If you can do better, you probably should.\n";
1369 print $WHT . "plain" . $NRM . " - SASL PLAIN. If you need this, you already know it.\n";
1370 print $WHT . "cram-md5" . $NRM . " - Slightly better than plaintext methods.\n";
1371 print $WHT . "digest-md5" . $NRM . " - Privacy protection - better than cram-md5.\n";
1372 print "\n*** YOUR IMAP SERVER MUST SUPPORT THE MECHANISM YOU CHOOSE HERE ***\n";
1373 print "If you don't understand or are unsure, you probably want \"login\"\n\n";
1374 print "login, plain, cram-md5, or digest-md5 [$WHT$imap_auth_mech$NRM]: $WHT";
1375 $inval=<STDIN>;
1376 chomp($inval);
1377 if ( ($inval =~ /^cram-md5\b/i) || ($inval =~ /^digest-md5\b/i) || ($inval =~ /^login\b/i) || ($inval =~ /^plain\b/i)) {
1378 return lc($inval);
1379 } else {
1380 # user entered garbage or default value so nothing needs to be set
1381 return $imap_auth_mech;
1382 }
1383 }
1384
1385
1386 # SMTP authentication type
1387 # Possible choices: none, plain, cram-md5, digest-md5
1388 sub command112b {
1389 if ($use_smtp_tls ne "0") {
1390 print "Auto-detection of login methods is unavailable when using TLS or STARTTLS.\n";
1391 } elsif (eval ("use IO::Socket; 1")) {
1392 # try loading IO::Socket module
1393 print "If you have already set the hostname and port number, I can try to\n";
1394 print "automatically detect some of the mechanisms your SMTP server supports.\n";
1395 print "Auto-detection is *optional* - you can safely say \"n\" here.\n";
1396 print "\nTry to detect auth mechanisms? [y/N]: ";
1397 $inval=<STDIN>;
1398 chomp($inval);
1399 if ($inval =~ /^y\b/i) {
1400 # Yes, let's try to detect.
1401 print "Trying to detect supported methods (SMTP)...\n";
1402
1403 # Special case!
1404 # Check none by trying to relay to junk@microsoft.com
1405 $host = $smtpServerAddress . ':' . $smtpPort;
1406 my $sock = IO::Socket::INET->new($host);
1407 print "Testing none:\t\t$WHT";
1408 if (!defined($sock)) {
1409 print " ERROR TESTING\n";
1410 close $sock;
1411 } else {
1412 print $sock "HELO $domain\r\n";
1413 $got = <$sock>; # Discard
1414 print $sock "MAIL FROM:<tester\@squirrelmail.org>\r\n";
1415 $got = <$sock>; # Discard
1416 print $sock "RCPT TO:<junk\@microsoft.com\r\n";
1417 $got = <$sock>; # This is the important line
1418 if ($got =~ /^250\b/) { # SMTP will relay without auth
1419 print "SUPPORTED$NRM\n";
1420 } else {
1421 print "NOT SUPPORTED$NRM\n";
1422 }
1423 print $sock "RSET\r\n";
1424 print $sock "QUIT\r\n";
1425 close $sock;
1426 }
1427 # Try login (SquirrelMail default)
1428 print "Testing login:\t\t";
1429 $tmp=detect_auth_support('SMTP',$host,'LOGIN');
1430 if (defined($tmp)) {
1431 if ($tmp eq 'YES') {
1432 print $WHT . "SUPPORTED$NRM\n";
1433 } else {
1434 print $WHT . "NOT SUPPORTED$NRM\n";
1435 }
1436 } else {
1437 print $WHT . "ERROR DETECTING$NRM\n";
1438 }
1439
1440 # Try CRAM-MD5
1441 print "Testing CRAM-MD5:\t";
1442 $tmp=detect_auth_support('SMTP',$host,'CRAM-MD5');
1443 if (defined($tmp)) {
1444 if ($tmp eq 'YES') {
1445 print $WHT . "SUPPORTED$NRM\n";
1446 } else {
1447 print $WHT . "NOT SUPPORTED$NRM\n";
1448 }
1449 } else {
1450 print $WHT . "ERROR DETECTING$NRM\n";
1451 }
1452
1453
1454 print "Testing DIGEST-MD5:\t";
1455 $tmp=detect_auth_support('SMTP',$host,'DIGEST-MD5');
1456 if (defined($tmp)) {
1457 if ($tmp eq 'YES') {
1458 print $WHT . "SUPPORTED$NRM\n";
1459 } else {
1460 print $WHT . "NOT SUPPORTED$NRM\n";
1461 }
1462 } else {
1463 print $WHT . "ERROR DETECTING$NRM\n";
1464 }
1465 }
1466 }
1467 print "\nWhat authentication mechanism do you want to use for SMTP connections?\n";
1468 print $WHT . "none" . $NRM . " - Your SMTP server does not require authorization.\n";
1469 print $WHT . "login" . $NRM . " - Plaintext. If you can do better, you probably should.\n";
1470 print $WHT . "plain" . $NRM . " - SASL PLAIN. You already know it if you need this.\n";
1471 print $WHT . "cram-md5" . $NRM . " - Slightly better than plaintext.\n";
1472 print $WHT . "digest-md5" . $NRM . " - Privacy protection - better than cram-md5.\n";
1473 print $WHT . "\n*** YOUR SMTP SERVER MUST SUPPORT THE MECHANISM YOU CHOOSE HERE ***\n" . $NRM;
1474 print "If you don't understand or are unsure, you probably want \"none\"\n\n";
1475 print "none, login, cram-md5, or digest-md5 [$WHT$smtp_auth_mech$NRM]: $WHT";
1476 $inval=<STDIN>;
1477 chomp($inval);
1478 if ($inval =~ /^none\b/i) {
1479 # remove sitewide smtp authentication information
1480 $smtp_sitewide_user = '';
1481 $smtp_sitewide_pass = '';
1482 # SMTP doesn't necessarily require logins
1483 return "none";
1484 } elsif ( ($inval =~ /^cram-md5\b/i) || ($inval =~ /^digest-md5\b/i) ||
1485 ($inval =~ /^login\b/i) || ($inval =~/^plain\b/i)) {
1486 command_smtp_sitewide_userpass($inval);
1487 return lc($inval);
1488 } elsif (trim($inval) eq '') {
1489 # user selected default value
1490 command_smtp_sitewide_userpass($smtp_auth_mech);
1491 return $smtp_auth_mech;
1492 } else {
1493 # user entered garbage
1494 return $smtp_auth_mech;
1495 }
1496 }
1497
1498 sub command_smtp_sitewide_userpass($) {
1499 # get first function argument
1500 my $auth_mech = shift(@_);
1501 my $default, $tmp;
1502 $auth_mech = lc(trim($auth_mech));
1503 if ($auth_mech eq 'none') {
1504 return;
1505 }
1506 print "SMTP authentication uses IMAP username and password by default.\n";
1507 print "\n";
1508 print "Would you like to use other login and password for all SquirrelMail \n";
1509 print "SMTP connections?";
1510 if ($smtp_sitewide_user ne '') {
1511 $default = 'y';
1512 print " [Yn]:";
1513 } else {
1514 $default = 'n';
1515 print " [yN]:";
1516 }
1517 $tmp=<STDIN>;
1518 $tmp = trim($tmp);
1519
1520 if ($tmp eq '') {
1521 $tmp = $default;
1522 } else {
1523 $tmp = lc($tmp);
1524 }
1525
1526 if ($tmp eq 'n') {
1527 $smtp_sitewide_user = '';
1528 $smtp_sitewide_pass = '';
1529 } elsif ($tmp eq 'y') {
1530 print "Enter username [$smtp_sitewide_user]:";
1531 my $new_user = <STDIN>;
1532 $new_user = trim($new_user);
1533 if ($new_user ne '') {
1534 $smtp_sitewide_user = $new_user;
1535 }
1536 if ($smtp_sitewide_user ne '') {
1537 print "If you don't enter any password, current sitewide password will be used.\n";
1538 print "If you enter space, password will be set to empty string.\n";
1539 print "Enter password:";
1540 my $new_pass = <STDIN>;
1541 if ($new_pass ne "\n") {
1542 $smtp_sitewide_pass = trim($new_pass);
1543 }
1544 } else {
1545 print "Invalid input. You must set username used for SMTP authentication.\n";
1546 print "Click enter to continue\n";
1547 $tmp = <STDIN>;
1548 }
1549 } else {
1550 print "Invalid input\n";
1551 print "Click enter to continue\n";
1552 $tmp = <STDIN>;
1553 }
1554 }
1555
1556 # Sub adds information about SMTP authentication type to menu
1557 sub display_smtp_sitewide_userpass() {
1558 my $ret = '';
1559 if ($smtp_auth_mech ne 'none') {
1560 if ($smtp_sitewide_user ne '') {
1561 $ret = ' (with custom username and password)';
1562 } else {
1563 $ret = ' (with IMAP username and password)';
1564 }
1565 }
1566 return $ret;
1567 }
1568
1569 # TLS
1570 # This sub is reused for IMAP and SMTP
1571 # Args: service name, default value
1572 sub command_use_tls {
1573 my($default_val,$service,$inval);
1574 $service=$_[0];
1575 $default_val=$_[1];
1576 print "TLS (Transport Layer Security) encrypts the traffic between server and client.\n";
1577 print "STARTTLS extensions allow to start encryption on existing plain text connection.\n";
1578 print "These options add specific PHP and IMAP server configuration requirements.\n";
1579 print "See SquirrelMail documentation about connection security.\n";
1580 print "\n";
1581 print "If your " . $service . " server is localhost, you can safely disable this.\n";
1582 print "If it is remote, you may wish to seriously consider enabling this.\n";
1583 $valid_input=0;
1584 while ($valid_input eq 0) {
1585 print "\nSelect connection security model:\n";
1586 print " 0 - Use plain text connection\n";
1587 print " 1 - Use TLS connection\n";
1588 print " 2 - Use STARTTLS extension\n";
1589 print "Select [$default_val]: ";
1590 $inval=<STDIN>;
1591 $inval=trim($inval);
1592 if ($inval =~ /^[012]$/ || $inval eq '') {
1593 $valid_input = 1;
1594 }
1595 }
1596 if ($inval ne '') {$default_val = $inval};
1597 return $default_val;
1598 }
1599
1600 # This sub is used to display human readable text for
1601 # $use_imap_tls and $use_smtp_tls values in conf.pl menu
1602 sub display_use_tls($) {
1603 my $val = shift(@_);
1604 my $ret = 'disabled';
1605 if ($val eq '2') {
1606 $ret = 'STARTTLS';
1607 } elsif ($val eq '1') {
1608 $ret = 'TLS';
1609 }
1610 return $ret;
1611 }
1612
1613 # $encode_header_key
1614 sub command114{
1615 print "Encryption key allows to hide SquirrelMail Received: headers\n";
1616 print "in outbound messages. Interface uses encryption key to encode\n";
1617 print "username, remote address and proxied address, then stores encoded\n";
1618 print "information in X-Squirrel-* headers.\n";
1619 print "\n";
1620 print "Warning: used encryption function is not bulletproof. When used\n";
1621 print "with static encryption keys, it provides only minimal security\n";
1622 print "measures and information can be decoded quickly.\n";
1623 print "\n";
1624 print "Encoded information can be decoded with decrypt_headers.php script\n";
1625 print "from SquirrelMail contrib/ directory.\n";
1626 print "\n";
1627 print "Enter encryption key: ";
1628 $new_encode_header_key = <STDIN>;
1629 if ( $new_encode_header_key eq "\n" ) {
1630 $new_encode_header_key = $encode_header_key;
1631 } else {
1632 $new_encode_header_key =~ s/[\r\n]//g;
1633 }
1634 return $new_encode_header_key;
1635 }
1636
1637 # MOTD
1638 sub command71 {
1639 print "\nYou can now create the welcome message that is displayed\n";
1640 print "every time a user logs on. You can use HTML or just plain\n";
1641 print
1642 "text. If you do not wish to have one, just make it blank.\n\n(Type @ on a blank line to exit)\n";
1643
1644 $new_motd = "";
1645 do {
1646 print "] ";
1647 $line = <STDIN>;
1648 $line =~ s/[\r\n]//g;
1649 if ( $line ne "@" ) {
1650 $line =~ s/ /\&nbsp;\&nbsp;/g;
1651 $line =~ s/\t/\&nbsp;\&nbsp;\&nbsp;\&nbsp;/g;
1652 $line =~ s/$/ /;
1653 $line =~ s/\"/\\\"/g;
1654
1655 $new_motd = $new_motd . $line;
1656 }
1657 } while ( $line ne "@" );
1658 return $new_motd;
1659 }
1660
1661 ################# PLUGINS ###################
1662
1663 sub command81 {
1664 $command =~ s/[\s\n\r]*//g;
1665 if ( $command > 0 ) {
1666 $command = $command - 1;
1667 if ( $command <= $#plugins ) {
1668 @newplugins = ();
1669 $ct = 0;
1670 while ( $ct <= $#plugins ) {
1671 if ( $ct != $command ) {
1672 @newplugins = ( @newplugins, $plugins[$ct] );
1673 }
1674 $ct++;
1675 }
1676 @plugins = @newplugins;
1677 } elsif ( $command <= $#plugins + $#unused_plugins + 1 ) {
1678 $num = $command - $#plugins - 1;
1679 @newplugins = @plugins;
1680 $ct = 0;
1681 while ( $ct <= $#unused_plugins ) {
1682 if ( $ct == $num ) {
1683 @newplugins = ( @newplugins, $unused_plugins[$ct] );
1684 }
1685 $ct++;
1686 }
1687 @plugins = @newplugins;
1688 }
1689 }
1690 return @plugins;
1691 }
1692
1693 ################# FOLDERS ###################
1694
1695 # default_folder_prefix
1696 sub command21 {
1697 print "Some IMAP servers (UW, for example) store mail and folders in\n";
1698 print "your user space in a separate subdirectory. This is where you\n";
1699 print "specify what that directory is.\n";
1700 print "\n";
1701 print "EXAMPLE: mail/";
1702 print "\n";
1703 print "NOTE: If you use Cyrus, or some server that would not use this\n";
1704 print " option, you must set this to 'none'.\n";
1705 print "\n";
1706 print "[$WHT$default_folder_prefix$NRM]: $WHT";
1707 $new_default_folder_prefix = <STDIN>;
1708
1709 if ( $new_default_folder_prefix eq "\n" ) {
1710 $new_default_folder_prefix = $default_folder_prefix;
1711 } else {
1712 $new_default_folder_prefix =~ s/[\r\n]//g;
1713 }
1714 if ( ( $new_default_folder_prefix =~ /^\s*$/ ) || ( $new_default_folder_prefix =~ m/^none$/i ) ) {
1715 $new_default_folder_prefix = "";
1716 } else {
1717 # add the trailing delimiter only if we know what the server is.
1718 if (($imap_server_type eq 'cyrus' and
1719 $optional_delimiter eq 'detect') or
1720 ($imap_server_type eq 'courier' and
1721 $optional_delimiter eq 'detect')) {
1722 $new_default_folder_prefix =~ s/\.*$/\./;
1723 } elsif ($imap_server_type eq 'uw' and
1724 $optional_delimiter eq 'detect') {
1725 $new_default_folder_prefix =~ s/\/*$/\//;
1726 }
1727 }
1728 return $new_default_folder_prefix;
1729 }
1730
1731 # Show Folder Prefix
1732 sub command22 {
1733 print "It is possible to set up the default folder prefix as a user\n";
1734 print "specific option, where each user can specify what their mail\n";
1735 print "folder is. If you set this to false, they will never see the\n";
1736 print "option, but if it is true, this option will appear in the\n";
1737 print "'options' section.\n";
1738 print "\n";
1739 print "NOTE: You set the default folder prefix in option '1' of this\n";
1740 print " section. That will be the default if the user doesn't\n";
1741 print " specify anything different.\n";
1742 print "\n";
1743
1744 if ( lc($show_prefix_option) eq 'true' ) {
1745 $default_value = "y";
1746 } else {
1747 $default_value = "n";
1748 }
1749 print "\n";
1750 print "Show option (y/n) [$WHT$default_value$NRM]: $WHT";
1751 $new_show = <STDIN>;
1752 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1753 $show_prefix_option = 'true';
1754 } else {
1755 $show_prefix_option = 'false';
1756 }
1757 return $show_prefix_option;
1758 }
1759
1760 # Trash Folder
1761 sub command23a {
1762 print "You can now specify where the default trash folder is located.\n";
1763 print "On servers where you do not want this, you can set it to anything\n";
1764 print "and set option 6 to false.\n";
1765 print "\n";
1766 print "This is relative to where the rest of your email is kept. You do\n";
1767 print "not need to worry about their mail directory. If this folder\n";
1768 print "would be ~/mail/trash on the filesystem, you only need to specify\n";
1769 print "that this is 'trash', and be sure to put 'mail/' in option 1.\n";
1770 print "\n";
1771
1772 print "[$WHT$trash_folder$NRM]: $WHT";
1773 $new_trash_folder = <STDIN>;
1774 if ( $new_trash_folder eq "\n" ) {
1775 $new_trash_folder = $trash_folder;
1776 } else {
1777 if (check_imap_folder($new_trash_folder)) {
1778 $new_trash_folder =~ s/[\r\n]//g;
1779 } else {
1780 $new_trash_folder = $trash_folder;
1781 }
1782 }
1783 return $new_trash_folder;
1784 }
1785
1786 # Sent Folder
1787 sub command23b {
1788 print "This is where messages that are sent will be stored. SquirrelMail\n";
1789 print "by default puts a copy of all outgoing messages in this folder.\n";
1790 print "\n";
1791 print "This is relative to where the rest of your email is kept. You do\n";
1792 print "not need to worry about their mail directory. If this folder\n";
1793 print "would be ~/mail/sent on the filesystem, you only need to specify\n";
1794 print "that this is 'sent', and be sure to put 'mail/' in option 1.\n";
1795 print "\n";
1796
1797 print "[$WHT$sent_folder$NRM]: $WHT";
1798 $new_sent_folder = <STDIN>;
1799 if ( $new_sent_folder eq "\n" ) {
1800 $new_sent_folder = $sent_folder;
1801 } else {
1802 if (check_imap_folder($new_sent_folder)) {
1803 $new_sent_folder =~ s/[\r\n]//g;
1804 } else {
1805 $new_sent_folder = $sent_folder;
1806 }
1807 }
1808 return $new_sent_folder;
1809 }
1810
1811 # Draft Folder
1812 sub command23c {
1813 print "You can now specify where the default draft folder is located.\n";
1814 print "On servers where you do not want this, you can set it to anything\n";
1815 print "and set option 9 to false.\n";
1816 print "\n";
1817 print "This is relative to where the rest of your email is kept. You do\n";
1818 print "not need to worry about their mail directory. If this folder\n";
1819 print "would be ~/mail/drafts on the filesystem, you only need to specify\n";
1820 print "that this is 'drafts', and be sure to put 'mail/' in option 1.\n";
1821 print "\n";
1822
1823 print "[$WHT$draft_folder$NRM]: $WHT";
1824 $new_draft_folder = <STDIN>;
1825 if ( $new_draft_folder eq "\n" ) {
1826 $new_draft_folder = $draft_folder;
1827 } else {
1828 if (check_imap_folder($new_draft_folder)) {
1829 $new_draft_folder =~ s/[\r\n]//g;
1830 } else {
1831 $new_draft_folder = $draft_folder;
1832 }
1833 }
1834 return $new_draft_folder;
1835 }
1836
1837 # default move to trash
1838 sub command24a {
1839 print "By default, should messages get moved to the trash folder? You\n";
1840 print "can specify the default trash folder in option 3. If this is set\n";
1841 print "to false, messages will get deleted immediately without moving\n";
1842 print "to the trash folder.\n";
1843 print "\n";
1844 print "Trash folder is currently: $trash_folder\n";
1845 print "\n";
1846
1847 if ( lc($default_move_to_trash) eq 'true' ) {
1848 $default_value = "y";
1849 } else {
1850 $default_value = "n";
1851 }
1852 print "By default, move to trash (y/n) [$WHT$default_value$NRM]: $WHT";
1853 $new_show = <STDIN>;
1854 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1855 $default_move_to_trash = 'true';
1856 } else {
1857 $default_move_to_trash = 'false';
1858 }
1859 return $default_move_to_trash;
1860 }
1861
1862 # default move to sent
1863 sub command24b {
1864 print "By default, should messages get moved to the sent folder? You\n";
1865 print "can specify the default sent folder in option 4. If this is set\n";
1866 print "to false, messages will get sent and no copy will be made.\n";
1867 print "\n";
1868 print "Sent folder is currently: $sent_folder\n";
1869 print "\n";
1870
1871 if ( lc($default_move_to_sent) eq 'true' ) {
1872 $default_value = "y";
1873 } else {
1874 $default_value = "n";
1875 }
1876 print "By default, move to sent (y/n) [$WHT$default_value$NRM]: $WHT";
1877 $new_show = <STDIN>;
1878 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1879 $default_move_to_sent = 'true';
1880 } else {
1881 $default_move_to_sent = 'false';
1882 }
1883 return $default_move_to_sent;
1884 }
1885
1886 # default save as draft
1887 sub command24c {
1888 print "By default, should the save to draft option be shown? You can\n";
1889 print "specify the default drafts folder in option 5. If this is set\n";
1890 print "to false, users will not be shown the save to draft option.\n";
1891 print "\n";
1892 print "Drafts folder is currently: $draft_folder\n";
1893 print "\n";
1894
1895 if ( lc($default_move_to_draft) eq 'true' ) {
1896 $default_value = "y";
1897 } else {
1898 $default_value = "n";
1899 }
1900 print "By default, save as draft (y/n) [$WHT$default_value$NRM]: $WHT";
1901 $new_show = <STDIN>;
1902 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1903 $default_save_as_draft = 'true';
1904 } else {
1905 $default_save_as_draft = 'false';
1906 }
1907 return $default_save_as_draft;
1908 }
1909
1910 # List special folders first
1911 sub command27 {
1912 print "SquirrelMail has what we call 'special folders' that are not\n";
1913 print "manipulated and viewed like normal folders. Some examples of\n";
1914 print "these folders would be INBOX, Trash, Sent, etc. This option\n";
1915 print "Simply asks if you want these folders listed first in the folder\n";
1916 print "listing.\n";
1917 print "\n";
1918
1919 if ( lc($list_special_folders_first) eq 'true' ) {
1920 $default_value = "y";
1921 } else {
1922 $default_value = "n";
1923 }
1924 print "\n";
1925 print "List first (y/n) [$WHT$default_value$NRM]: $WHT";
1926 $new_show = <STDIN>;
1927 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1928 $list_special_folders_first = 'true';
1929 } else {
1930 $list_special_folders_first = 'false';
1931 }
1932 return $list_special_folders_first;
1933 }
1934
1935 # Show special folders color
1936 sub command28 {
1937 print "SquirrelMail has what we call 'special folders' that are not\n";
1938 print "manipulated and viewed like normal folders. Some examples of\n";
1939 print "these folders would be INBOX, Trash, Sent, etc. This option\n";
1940 print "wants to know if we should display special folders in a\n";
1941 print "color than the other folders.\n";
1942 print "\n";
1943
1944 if ( lc($use_special_folder_color) eq 'true' ) {
1945 $default_value = "y";
1946 } else {
1947 $default_value = "n";
1948 }
1949 print "\n";
1950 print "Show color (y/n) [$WHT$default_value$NRM]: $WHT";
1951 $new_show = <STDIN>;
1952 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1953 $use_special_folder_color = 'true';
1954 } else {
1955 $use_special_folder_color = 'false';
1956 }
1957 return $use_special_folder_color;
1958 }
1959
1960 # Auto expunge
1961 sub command29 {
1962 print "The way that IMAP handles deleting messages is as follows. You\n";
1963 print "mark the message as deleted, and then to 'really' delete it, you\n";
1964 print "expunge it. This option asks if you want to just have messages\n";
1965 print "marked as deleted, or if you want SquirrelMail to expunge the \n";
1966 print "messages too.\n";
1967 print "\n";
1968
1969 if ( lc($auto_expunge) eq 'true' ) {
1970 $default_value = "y";
1971 } else {
1972 $default_value = "n";
1973 }
1974 print "Auto expunge (y/n) [$WHT$default_value$NRM]: $WHT";
1975 $new_show = <STDIN>;
1976 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1977 $auto_expunge = 'true';
1978 } else {
1979 $auto_expunge = 'false';
1980 }
1981 return $auto_expunge;
1982 }
1983
1984 # Default sub of inbox
1985 sub command210 {
1986 print "Some IMAP servers (Cyrus) have all folders as subfolders of INBOX.\n";
1987 print "This can cause some confusion in folder creation for users when\n";
1988 print "they try to create folders and don't put it as a subfolder of INBOX\n";
1989 print "and get permission errors. This option asks if you want folders\n";
1990 print "to be subfolders of INBOX by default.\n";
1991 print "\n";
1992
1993 if ( lc($default_sub_of_inbox) eq 'true' ) {
1994 $default_value = "y";
1995 } else {
1996 $default_value = "n";
1997 }
1998 print "Default sub of INBOX (y/n) [$WHT$default_value$NRM]: $WHT";
1999 $new_show = <STDIN>;
2000 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2001 $default_sub_of_inbox = 'true';
2002 } else {
2003 $default_sub_of_inbox = 'false';
2004 }
2005 return $default_sub_of_inbox;
2006 }
2007
2008 # Show contain subfolder option
2009 sub command211 {
2010 print "Some IMAP servers (UW) make it so that there are two types of\n";
2011 print "folders. Those that contain messages, and those that contain\n";
2012 print "subfolders. If this is the case for your server, set this to\n";
2013 print "true, and it will ask the user whether the folder they are\n";
2014 print "creating contains subfolders or messages.\n";
2015 print "\n";
2016
2017 if ( lc($show_contain_subfolders_option) eq 'true' ) {
2018 $default_value = "y";
2019 } else {
2020 $default_value = "n";
2021 }
2022 print "Show option (y/n) [$WHT$default_value$NRM]: $WHT";
2023 $new_show = <STDIN>;
2024 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2025 $show_contain_subfolders_option = 'true';
2026 } else {
2027 $show_contain_subfolders_option = 'false';
2028 }
2029 return $show_contain_subfolders_option;
2030 }
2031
2032 # Default Unseen Notify
2033 sub command212 {
2034 print "This option specifies where the users will receive notification\n";
2035 print "about unseen messages by default. This is of course an option that\n";
2036 print "can be changed on a user level.\n";
2037 print " 1 = No notification\n";
2038 print " 2 = Only on the INBOX\n";
2039 print " 3 = On all folders\n";
2040 print "\n";
2041
2042 print "Which one should be default (1,2,3)? [$WHT$default_unseen_notify$NRM]: $WHT";
2043 $new_show = <STDIN>;
2044 if ( $new_show =~ /^[123]\n/i ) {
2045 $default_unseen_notify = $new_show;
2046 }
2047 $default_unseen_notify =~ s/[\r\n]//g;
2048 return $default_unseen_notify;
2049 }
2050
2051 # Default Unseen Type
2052 sub command213 {
2053 print "Here you can define the default way that unseen messages will be displayed\n";
2054 print "to the user in the folder listing on the left side.\n";
2055 print " 1 = Only unseen messages (4)\n";
2056 print " 2 = Unseen and Total messages (4/27)\n";
2057 print "\n";
2058
2059 print "Which one should be default (1,2)? [$WHT$default_unseen_type$NRM]: $WHT";
2060 $new_show = <STDIN>;
2061 if ( $new_show =~ /^[12]\n/i ) {
2062 $default_unseen_type = $new_show;
2063 }
2064 $default_unseen_type =~ s/[\r\n]//g;
2065 return $default_unseen_type;
2066 }
2067
2068 # Auto create special folders
2069 sub command214 {
2070 print "Would you like the Sent, Trash, and Drafts folders to be created\n";
2071 print "automatically print for you when a user logs in? If the user\n";
2072 print "accidentally deletes their special folders, this option will\n";
2073 print "automatically create it again for them.\n";
2074 print "\n";
2075
2076 if ( lc($auto_create_special) eq 'true' ) {
2077 $default_value = "y";
2078 } else {
2079 $default_value = "n";
2080 }
2081 print "Auto create special folders? (y/n) [$WHT$default_value$NRM]: $WHT";
2082 $new_show = <STDIN>;
2083 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2084 $auto_create_special = 'true';
2085 } else {
2086 $auto_create_special = 'false';
2087 }
2088 return $auto_create_special;
2089 }
2090
2091 # Automatically delete folders
2092 sub command215 {
2093 if ( $imap_server_type eq "uw" ) {
2094 print "UW IMAP servers will not allow folders containing mail to also contain folders.\n";
2095 print "Deleting folders will bypass the trash folder and be immediately deleted\n\n";
2096 print "If this is not the correct value for your server,\n";
2097 print "please use option D on the Main Menu to configure your server correctly.\n\n";
2098 print "Press enter to continue...\n";
2099 $new_delete = <STDIN>;
2100 $delete_folder = 'true';
2101 } else {
2102 if ( $imap_server_type eq "courier" ) {
2103 print "Courier (or Courier-IMAP) IMAP servers may not support ";
2104 print "subfolders of Trash. \n";
2105 print "Specifically, if Courier is set to always move messages to Trash, \n";
2106 print "Trash will be treated by Courier as a special folder that does not \n";
2107 print "allow subfolders. \n\n";
2108 print "Please verify your Courier configuration, and test folder deletion \n";
2109 print "when changing this setting.\n\n";
2110 }
2111
2112 print "Are subfolders of the Trash supported by your IMAP server?\n";
2113 print "If so, should deleted folders be sent to Trash?\n";
2114 print "If not, say no (deleted folders should not be sent to Trash)\n\n";
2115 # reversal of logic.
2116 # question was: Should folders be automatically deleted instead of sent to trash..
2117 # we've changed the question to make it more clear,
2118 # and are here handling that to avoid changing the answers..
2119 if ( lc($delete_folder) eq 'true' ) {
2120 $default_value = "n";
2121 } else {
2122 $default_value = "y";
2123 }
2124 print "Send deleted folders to Trash? (y/n) [$WHT$default_value$NRM]: $WHT";
2125 $new_delete = <STDIN>;
2126 if ( ( $new_delete =~ /^y\n/i ) || ( ( $new_delete =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2127 $delete_folder = 'false';
2128 } else {
2129 $delete_folder = 'true';
2130 }
2131 }
2132 return $delete_folder;
2133 }
2134
2135 #noselect fix
2136 sub command216 {
2137 print "Some IMAP server allow subfolders to exist even if the parent\n";
2138 print "folders do not. This fixes some problems with the folder list\n";
2139 print "when this is the case, causing the /NoSelect folders to be displayed\n";
2140 print "\n";
2141
2142 if ( lc($noselect_fix_enable) eq 'true' ) {
2143 $default_value = "y";
2144 } else {
2145 $default_value = "n";
2146 }
2147 print "enable noselect fix? (y/n) [$WHT$noselect_fix_enable$NRM]: $WHT";
2148 $noselect_fix_enable = <STDIN>;
2149 if ( ( $noselect_fix_enable =~ /^y\n/i ) || ( ( $noselect_fix_enable =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2150 $noselect_fix_enable = 'true';
2151 } else {
2152 $noselect_fix_enable = 'false';
2153 }
2154 return $noselect_fix_enable;
2155 }
2156 ############# GENERAL OPTIONS #####################
2157
2158 # Data directory
2159 sub command33a {
2160 print "Specify the location for your data directory.\n";
2161 print "You need to create this directory yourself.\n";
2162 print "The path name can be absolute or relative (to the config directory).\n";
2163 print "Here are two examples:\n";
2164 print " Absolute: /var/local/squirrelmail/data/\n";
2165 print " Relative: ../data/\n";
2166 print "Relative paths to directories outside of the SquirrelMail distribution\n";
2167 print "will be converted to their absolute path equivalents in config.php.\n\n";
2168 print "Note: There are potential security risks with having a writeable directory\n";
2169 print "under the web server's root directory (ex: /home/httpd/html).\n";
2170 print "For this reason, it is recommended to put the data directory\n";
2171 print "in an alternate location of your choice. \n";
2172 print "\n";
2173
2174 print "[$WHT$data_dir$NRM]: $WHT";
2175 $new_data_dir = <STDIN>;
2176 if ( $new_data_dir eq "\n" ) {
2177 $new_data_dir = $data_dir;
2178 } else {
2179 $new_data_dir =~ s/[\r\n]//g;
2180 }
2181 if ( $new_data_dir =~ /^\s*$/ ) {
2182 $new_data_dir = "";
2183 } else {
2184 $new_data_dir =~ s/\/*$//g;
2185 $new_data_dir =~ s/$/\//g;
2186 }
2187 return $new_data_dir;
2188 }
2189
2190 # Attachment directory
2191 sub command33b {
2192 print "Path to directory used for storing attachments while a mail is\n";
2193 print "being composed. The path name can be absolute or relative (to the\n";
2194 print "config directory). Here are two examples:\n";
2195 print " Absolute: /var/local/squirrelmail/attach/\n";
2196 print " Relative: ../attach/\n";
2197 print "Relative paths to directories outside of the SquirrelMail distribution\n";
2198 print "will be converted to their absolute path equivalents in config.php.\n\n";
2199 print "Note: There are a few security considerations regarding this\n";
2200 print "directory:\n";
2201 print " 1. It should have the permission 733 (rwx-wx-wx) to make it\n";
2202 print " impossible for a random person with access to the webserver\n";
2203 print " to list files in this directory. Confidential data might\n";
2204 print " be laying around in there.\n";
2205 print " Depending on your user:group assignments, 730 (rwx-wx---)\n";
2206 print " may be possible, and more secure (e.g. root:apache)\n";
2207 print " 2. Since the webserver is not able to list the files in the\n";
2208 print " content is also impossible for the webserver to delete files\n";
2209 print " lying around there for too long.\n";
2210 print " 3. It should probably be another directory than the data\n";
2211 print " directory specified in option 3.\n";
2212 print "\n";
2213
2214 print "[$WHT$attachment_dir$NRM]: $WHT";
2215 $new_attachment_dir = <STDIN>;
2216 if ( $new_attachment_dir eq "\n" ) {
2217 $new_attachment_dir = $attachment_dir;
2218 } else {
2219 $new_attachment_dir =~ s/[\r\n]//g;
2220 }
2221 if ( $new_attachment_dir =~ /^\s*$/ ) {
2222 $new_attachment_dir = "";
2223 } else {
2224 $new_attachment_dir =~ s/\/*$//g;
2225 $new_attachment_dir =~ s/$/\//g;
2226 }
2227 return $new_attachment_dir;
2228 }
2229
2230 sub command33c {
2231 print "The directory hash level setting allows you to configure the level\n";
2232 print "of hashing that SquirrelMail employs in your data and attachment\n";
2233 print "directories. This value must be an integer ranging from 0 to 4.\n";
2234 print "When this value is set to 0, SquirrelMail will simply store all\n";
2235 print "files as normal in the data and attachment directories. However,\n";
2236 print "when set to a value from 1 to 4, a simple hashing scheme will be\n";
2237 print "used to organize the files in this directory. In short, the crc32\n";
2238 print "value for a username will be computed. Then, up to the first 4\n";
2239 print "digits of the hash, as set by this configuration value, will be\n";
2240 print "used to directory hash the files for that user in the data and\n";
2241 print "attachment directory. This allows for better performance on\n";
2242 print "servers with larger numbers of users.\n";
2243 print "\n";
2244
2245 print "[$WHT$dir_hash_level$NRM]: $WHT";
2246 $new_dir_hash_level = <STDIN>;
2247 if ( $new_dir_hash_level eq "\n" ) {
2248 $new_dir_hash_level = $dir_hash_level;
2249 } else {
2250 $new_dir_hash_level =~ s/[\r\n]//g;
2251 }
2252 if ( ( int($new_dir_hash_level) < 0 )
2253 || ( int($new_dir_hash_level) > 4 )
2254 || !( int($new_dir_hash_level) eq $new_dir_hash_level ) ) {
2255 print "Invalid Directory Hash Level.\n";
2256 print "Value must be an integer ranging from 0 to 4\n";
2257 print "Hit enter to continue.\n";
2258 $enter_key = <STDIN>;
2259
2260 $new_dir_hash_level = $dir_hash_level;
2261 }
2262
2263 return $new_dir_hash_level;
2264 }
2265
2266 sub command35 {
2267 print "This is the default size (in pixels) of the left folder list.\n";
2268 print "Default is 200, but you can set it to whatever you wish. This\n";
2269 print "is a user preference, so this will only show up as their default.\n";
2270 print "\n";
2271 print "[$WHT$default_left_size$NRM]: $WHT";
2272 $new_default_left_size = <STDIN>;
2273 if ( $new_default_left_size eq "\n" ) {
2274 $new_default_left_size = $default_left_size;
2275 } else {
2276 $new_default_left_size =~ s/[\r\n]//g;
2277 }
2278 return $new_default_left_size;
2279 }
2280
2281 sub command36 {
2282 print "Some IMAP servers only have lowercase letters in the usernames\n";
2283 print "but they still allow people with uppercase to log in. This\n";
2284 print "causes a problem with the user's preference files. This option\n";
2285 print "transparently changes all usernames to lowercase.";
2286 print "\n";
2287
2288 if ( lc($force_username_lowercase) eq 'true' ) {
2289 $default_value = "y";
2290 } else {
2291 $default_value = "n";
2292 }
2293 print "Convert usernames to lowercase (y/n) [$WHT$default_value$NRM]: $WHT";
2294 $new_show = <STDIN>;
2295 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2296 return 'true';
2297 }
2298 return 'false';
2299 }
2300
2301 sub command37 {
2302 print "";
2303 print "\n";
2304
2305 if ( lc($default_use_priority) eq 'true' ) {
2306 $default_value = "y";
2307 } else {
2308 $default_value = "n";
2309 }
2310
2311 print "Allow users to specify priority of outgoing mail (y/n) [$WHT$default_value$NRM]: $WHT";
2312 $new_show = <STDIN>;
2313 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2314 return 'true';
2315 }
2316 return 'false';
2317 }
2318
2319 sub command38 {
2320 print "";
2321 print "\n";
2322
2323 if ( lc($default_hide_attribution) eq 'true' ) {
2324 $default_value = "y";
2325 } else {
2326 $default_value = "n";
2327 }
2328
2329 print "Hide SM attributions (y/n) [$WHT$default_value$NRM]: $WHT";
2330 $new_show = <STDIN>;
2331 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2332 return 'true';
2333 }
2334 return 'false';
2335 }
2336
2337 sub command39 {
2338 print "";
2339 print "\n";
2340
2341 if ( lc($default_use_mdn) eq 'true' ) {
2342 $default_value = "y";
2343 } else {
2344 $default_value = "n";
2345 }
2346
2347 print "Enable support for read/delivery receipt support (y/n) [$WHT$default_value$NRM]: $WHT";
2348 $new_show = <STDIN>;
2349 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2350 return 'true';
2351 }
2352 return 'false';
2353 }
2354
2355
2356 sub command310 {
2357 print " In loosely managed environments, you may want to allow users
2358 to edit their full name and email address. In strictly managed
2359 environments, you may want to force users to use the name
2360 and email address assigned to them.
2361
2362 'y' - allow a user to edit their full name and email address,
2363 'n' - users must use the assigned values.
2364
2365 ";
2366
2367 if ( lc($edit_identity) eq 'true' ) {
2368 $default_value = "y";
2369 } else {
2370 $default_value = "n";
2371 }
2372 print "Allow editing of user's identity? (y/n) [$WHT$default_value$NRM]: $WHT";
2373 $new_edit = <STDIN>;
2374 if ( ( $new_edit =~ /^y\n/i ) || ( ( $new_edit =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2375 $edit_identity = 'true';
2376 $edit_name = 'true';
2377 $hide_auth_header = command311b();
2378 } else {
2379 $edit_identity = 'false';
2380 $edit_name = command311();
2381 $hide_auth_header = command311b();
2382 }
2383 return $edit_identity;
2384 }
2385
2386 sub command311 {
2387 print " Given that users are not allowed to modify their
2388 email address, can they edit their full name?
2389
2390 ";
2391
2392 if ( lc($edit_name) eq 'true' ) {
2393 $default_value = "y";
2394 } else {
2395 $default_value = "n";
2396 }
2397 print "Allow the user to edit their full name? (y/n) [$WHT$default_value$NRM]: $WHT";
2398 $new_edit = <STDIN>;
2399 if ( ( $new_edit =~ /^y\n/i ) || ( ( $new_edit =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2400 $edit_name = 'true';
2401 } else {
2402 $edit_name = 'false';
2403 }
2404 return $edit_name;
2405 }
2406
2407 sub command311b {
2408 print " SquirrelMail adds username information to every sent email
2409 in order to prevent possible sender forging when users are allowed
2410 to change their email and/or full name.
2411
2412 You can remove user information from this header (y), if you think that
2413 it violates privacy or security.
2414
2415 Note: If users are allowed to change their email addresses,
2416 this setting will make it difficult to determine who sent what where.
2417 Use at your own risk.
2418
2419 ";
2420
2421 if ( lc($hide_auth_header) eq "true" ) {
2422 $default_value = "y";
2423 } else {
2424 $default_value = "n";
2425 }
2426 print "Remove username from email headers? (y/n) [$WHT$default_value$NRM]: $WHT";
2427 $new_header = <STDIN>;
2428 if ( ( $new_header =~ /^y\n/i ) || ( ( $new_header =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2429 $hide_auth_header = "true";
2430 } else {
2431 $hide_auth_header = "false";
2432 }
2433 return $hide_auth_header;
2434 }
2435
2436 sub command312 {
2437 print "This option allows you to disable server side thread sorting if your server \n";
2438 print "declares THREAD support, but you don't want to provide threading options \n";
2439 print "to end users or THREAD extension is broken or extension does not work with \n";
2440 print "options used by SquirrelMail. Option is not used, if THREAD extension is \n";
2441 print "not declared in IMAP CAPABILITY.\n";
2442 print "\n";
2443
2444 if ( lc($disable_thread_sort) eq 'true' ) {
2445 $default_value = "y";
2446 } else {
2447 $default_value = "n";
2448 }
2449 print "Disable server side thread sorting? (y/n) [$WHT$default_value$NRM]: $WHT";
2450 $disable_thread_sort = <STDIN>;
2451 if ( ( $disable_thread_sort =~ /^y\n/i ) || ( ( $disable_thread_sort =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2452 $disable_thread_sort = 'true';
2453 } else {
2454 $disable_thread_sort = 'false';
2455 }
2456 return $disable_thread_sort;
2457 }
2458
2459 sub command313 {
2460 print "This option allows you to disable server side sorting if your server declares \n";
2461 print "SORT support, but SORT extension is broken or does not work with options \n";
2462 print "used by SquirrelMail. Option is not used, if SORT extension is not declared \n";
2463 print "in IMAP CAPABILITY.\n";
2464 print "\n";
2465 print "It is strongly recommended to keep server side sorting enabled, if your ";
2466 print "IMAP server supports it.";
2467 print "\n";
2468
2469 if ( lc($disable_server_sort) eq 'true' ) {
2470 $default_value = "y";
2471 } else {
2472 $default_value = "n";
2473 }
2474 print "Disable server-side sorting? (y/n) [$WHT$default_value$NRM]: $WHT";
2475 $disable_server_sort = <STDIN>;
2476 if ( ( $disable_server_sort =~ /^y\n/i ) || ( ( $disable_server_sort =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2477 $disable_server_sort = 'true';
2478 } else {
2479 $disable_server_sort = 'false';
2480 }
2481 return $disable_server_sort;
2482 }
2483
2484 sub command314 {
2485 print "This option allows you to choose if SM uses charset search\n";
2486 print "Your IMAP server must support the SEARCH CHARSET command for this to work\n";
2487 print "\n";
2488
2489 if ( lc($allow_charset_search) eq 'true' ) {
2490 $default_value = "y";
2491 } else {
2492 $default_value = "n";
2493 }
2494 print "Allow charset searching? (y/n) [$WHT$default_value$NRM]: $WHT";
2495 $allow_charset_search = <STDIN>;
2496 if ( ( $allow_charset_search =~ /^y\n/i ) || ( ( $allow_charset_search =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2497 $allow_charset_search = 'true';
2498 } else {
2499 $allow_charset_search = 'false';
2500 }
2501 return $allow_charset_search;
2502 }
2503
2504 # command315 (UID support) obsoleted.
2505
2506 # advanced search option
2507 sub command316 {
2508 print "This option allows you to control the use of advanced search form.\n";
2509 print " 0 = enable basic search only\n";
2510 print " 1 = enable advanced search only\n";
2511 print " 2 = enable both\n";
2512 print "\n";
2513
2514 print "Allowed search (0,1,2)? [$WHT$allow_advanced_search$NRM]: $WHT";
2515 $new_allow_advanced_search = <STDIN>;
2516 if ( $new_allow_advanced_search =~ /^[012]\n/i ) {
2517 $allow_advanced_search = $new_allow_advanced_search;
2518 }
2519 $allow_advanced_search =~ s/[\r\n]//g;
2520 return $allow_advanced_search;
2521 }
2522
2523
2524 sub command317 {
2525 print "This option allows you to change the name of the PHP session used\n";
2526 print "by SquirrelMail. Unless you know what you are doing, you probably\n";
2527 print "don't need or want to change this from the default of SQMSESSID.\n";
2528 print "[$WHT$session_name$NRM]: $WHT";
2529 $new_session_name = <STDIN>;
2530 chomp($new_session_name);
2531 if ( $new_session_name eq "" ) {
2532 $new_session_name = $session_name;
2533 }
2534 return $new_session_name;
2535 }
2536
2537 # time zone config (since 1.5.1)
2538 sub command318 {
2539 print "This option allows you to control the use of time zones.\n";
2540 print " 0 = (default) standard, GNU C time zone names\n";
2541 print " 1 = strict, generic time zone codes with offsets\n";
2542 print " 2 = custom, GNU C time zones loaded from config/timezones.php\n";
2543 print " 3 = custom strict, generic time zone codes with offsets loaded \n";
2544 print " from config/timezones.php\n";
2545 print "See SquirrelMail documentation about format of config/timezones.php file.\n";
2546 print "\n";
2547
2548 print "Used time zone configuration (0,1,2,3)? [$WHT$time_zone_type$NRM]: $WHT";
2549 $new_time_zone_type = <STDIN>;
2550 if ( $new_time_zone_type =~ /^[0123]\n/i ) {
2551 $time_zone_type = $new_time_zone_type;
2552 } else {
2553 print "\nInvalid configuration value.\n";
2554 print "\nPress enter to continue...";
2555 $tmp = <STDIN>;
2556 }
2557 $time_zone_type =~ s/[\r\n]//g;
2558 return $time_zone_type;
2559 }
2560
2561 # set the location base for redirects (since 1.5.2)
2562 sub command_config_location_base {
2563 print "Here you can set the base part of the SquirrelMail URL.\n";
2564 print "It is normally autodetected but if that fails, use this\n";
2565 print "option to override.\n";
2566 print "It should contain only the protocol and hostname/port parts\n";
2567 print "of the URL; the full path will be appended automatically.\n\n";
2568 print "Examples:\nhttp://webmail.example.org\nhttp://webmail.example.com:8080\nhttps://webmail.example.com:6691\n\n";
2569 print "Do not add any path elements.\n";
2570
2571 print "URL base? [" .$WHT."autodetect$NRM]: $WHT";
2572 $new_config_location_base = <STDIN>;
2573 chomp($new_config_location_base);
2574 $config_location_base = $new_config_location_base;
2575
2576 return $config_location_base;
2577 }
2578
2579
2580 sub command_userThemes {
2581 print "\nDefine the user themes that you wish to use. If you have added\n";
2582 print "a theme of your own, just follow the instructions (?) about\n";
2583 print "how to add them. You can also change the default theme.\n\n";
2584
2585 print "Available user themes:\n";
2586 $count = 0;
2587 while ( $count <= $#user_theme_name ) {
2588 if ( $count == $user_theme_default ) {
2589 print " *";
2590 } else {
2591 print " ";
2592 }
2593 if ( $count < 10 ) {
2594 print " ";
2595 }
2596 $name = $user_theme_name[$count];
2597 $num_spaces = 35 - length($name);
2598 for ( $i = 0 ; $i < $num_spaces ; $i++ ) {
2599 $name = $name . " ";
2600 }
2601
2602 print " $count. $name";
2603 print "($user_theme_path[$count])\n";
2604
2605 $count++;
2606 }
2607
2608 print "\n";
2609 print ".------------------------------------.\n";
2610 print "| t (detect user themes) |\n";
2611 print "| + (add user theme) |\n";
2612 print "| - N (remove user theme) |\n";
2613 print "| m N (mark default user theme) |\n";
2614 print "| l (list user themes) |\n";
2615 print "| d (done) |\n";
2616 print "`------------------------------------'\n";
2617
2618 print "\n[user_themes] command (?=help) > ";
2619 $input = <STDIN>;
2620 $input =~ s/[\r\n]//g;
2621 while ( $input ne "d" ) {
2622 if ( $input =~ /^\s*l\s*/i ) {
2623 $count = 0;
2624 while ( $count <= $#user_theme_name ) {
2625 if ( $count == $user_theme_default ) {
2626 print " *";
2627 } else {
2628 print " ";
2629 }
2630 if ( $count < 10 ) {
2631 print " ";
2632 }
2633 $name = $user_theme_name[$count];
2634 $num_spaces = 35 - length($name);
2635 for ( $i = 0 ; $i < $num_spaces ; $i++ ) {
2636 $name = $name . " ";
2637 }
2638
2639 print " $count. $name";
2640 print "($user_theme_path[$count])\n";
2641
2642 $count++;
2643 }
2644 } elsif ( $input =~ /^\s*m\s*[0-9]+/i ) {
2645 $old_def = $user_theme_default;
2646 $user_theme_default = $input;
2647 $user_theme_default =~ s/^\s*m\s*//;
2648 if ( ( $user_theme_default > $#user_theme_name ) || ( $user_theme_default < 0 ) ) {
2649 print "Cannot set default theme to $user_theme_default. That theme does not exist.\n";
2650 $user_theme_default = $old_def;
2651 }
2652 } elsif ( $input =~ /^\s*\+/ ) {
2653 print "What is the name of this theme? ";
2654 $name = <STDIN>;
2655 $name =~ s/[\r\n]//g;
2656 $user_theme_name[ $#user_theme_name + 1 ] = $name;
2657 print "Be sure to put ../css/ before the filename.\n";
2658 print "What file is this stored in (ex: ../css/my_theme/): ";
2659 $name = <STDIN>;
2660 $name =~ s/[\r\n]//g;
2661 $user_theme_path[ $#user_theme_path + 1 ] = $name;
2662 } elsif ( $input =~ /^\s*-\s*[0-9]?/ ) {
2663 if ( $input =~ /[0-9]+\s*$/ ) {
2664 $rem_num = $input;
2665 $rem_num =~ s/^\s*-\s*//g;
2666 $rem_num =~ s/\s*$//;
2667 } else {
2668 $rem_num = $#user_theme_name;
2669 }
2670 if ( $rem_num == $user_theme_default ) {
2671 print "You cannot remove the default theme!\n";
2672 } else {
2673 $count = 0;
2674 @new_theme_name = ();
2675 @new_theme_path = ();
2676 while ( $count <= $#user_theme_name ) {
2677 if ( $count != $rem_num ) {
2678 @new_theme_name = ( @new_theme_name, $user_theme_name[$count] );
2679 @new_theme_path = ( @new_theme_path, $user_theme_path[$count] );
2680 }
2681 $count++;
2682 }
2683 @user_theme_name = @new_theme_name;
2684 @user_theme_path = @new_theme_path;
2685 if ( $user_theme_default > $rem_num ) {
2686 $user_theme_default--;
2687 }
2688 }
2689 } elsif ( $input =~ /^\s*t\s*/i ) {
2690 print "\nStarting detection...\n\n";
2691
2692 opendir( DIR, "../css" );
2693 @files = readdir(DIR);
2694 $cnt = 0;
2695 while ( $cnt <= $#files ) {
2696 $filename = "../css/" . $files[$cnt] .'/';
2697 if ( $filename ne "../css/rtl.css" && -e $filename . "default.css" ) {
2698 $found = 0;
2699 for ( $x = 0 ; $x <= $#user_theme_path ; $x++ ) {
2700 if ( $user_theme_path[$x] eq $filename ) {
2701 $found = 1;
2702 }
2703 }
2704 if ( $found != 1 ) {
2705 print "** Found user theme: $filename\n";
2706 print " What is its name? ";
2707 $nm = <STDIN>;
2708 $nm =~ s/[\n\r]//g;
2709 $user_theme_name[ $#user_theme_name + 1 ] = $nm;
2710 $user_theme_path[ $#user_theme_path + 1 ] = $filename;
2711 }
2712 }
2713 $cnt++;
2714 }
2715 print "\n";
2716 for ( $cnt = 0 ; $cnt <= $#user_theme_path ; $cnt++ ) {
2717 $filename = $user_theme_path[$cnt];
2718 if ( $filename != 'none' && !( -e $filename ."/default.css" ) ) {
2719 print " Removing $filename (file not found)\n";
2720 $offset = 0;
2721 @new_user_theme_name = ();
2722 @new_user_theme_path = ();
2723 for ( $x = 0 ; $x < $#user_theme_path ; $x++ ) {
2724 if ( $user_theme_path[$x] eq $filename ) {
2725 $offset = 1;
2726 }
2727 if ( $offset == 1 ) {
2728 $new_user_theme_name[$x] = $user_theme_name[ $x + 1 ];
2729 $new_user_theme_path[$x] = $user_theme_path[ $x + 1 ];
2730 } else {
2731 $new_user_theme_name[$x] = $user_theme_name[$x];
2732 $new_user_theme_path[$x] = $user_theme_path[$x];
2733 }
2734 }
2735 @user_theme_name = @new_user_theme_name;
2736 @user_theme_path = @new_user_theme_path;
2737 }
2738 }
2739 print "\nDetection complete!\n\n";
2740
2741 closedir DIR;
2742 } elsif ( $input =~ /^\s*\?\s*/ ) {
2743 print ".------------------------------------.\n";
2744 print "| t (detect user themes) |\n";
2745 print "| + (add user theme) |\n";
2746 print "| - N (remove user theme) |\n";
2747 print "| m N (mark default user theme) |\n";
2748 print "| l (list user themes) |\n";
2749 print "| d (done) |\n";
2750 print "`------------------------------------'\n";
2751 }
2752 print "[user_themes] command (?=help) > ";
2753 $input = <STDIN>;
2754 $input =~ s/[\r\n]//g;
2755 }
2756 }
2757
2758 sub command_iconSets {
2759 print "\nDefine the icon themes that you wish to use. If you have added\n";
2760 print "a theme of your own, just follow the instructions (?) about\n";
2761 print "how to add them. You can also change the default and fallback\n";
2762 print "themes. The default theme will be used when no icon theme is\n";
2763 print "set by the user. The fallback theme will be used if an icon\n";
2764 print "cannot be found in the currently selected icon theme.\n\n";
2765
2766 print "Available icon themes:\n\n";
2767
2768 $count = 0;
2769 while ( $count <= $#icon_theme_name ) {
2770 if ( $count == $icon_theme_def ) {
2771 print " d";
2772 } else {
2773 print " ";
2774 }
2775 if ( $count eq $icon_theme_fallback ) {
2776 print "f ";
2777 } else {
2778 print " ";
2779 }
2780 if ( $count < 10 ) {
2781 print " ";
2782 }
2783 $name = $icon_theme_name[$count];
2784 $num_spaces = 35 - length($name);
2785 for ( $i = 0 ; $i < $num_spaces ; $i++ ) {
2786 $name = $name . " ";
2787 }
2788
2789 print " $count. $name";
2790 print "($icon_theme_path[$count])\n";
2791
2792 $count++;
2793 }
2794
2795 print "\n d = Default icon theme\n";
2796 print " f = Fallback icon theme\n";
2797 print "\n";
2798 print ".------------------------------------.\n";
2799 print "| t (detect icon themes) |\n";
2800 print "| + (add icon theme) |\n";
2801 print "| - N (remove icon theme) |\n";
2802 print "| m N (mark default icon theme) |\n";
2803 print "| f N (set fallback icon set) |\n";
2804 print "| l (list icon themes) |\n";
2805 print "| d (done) |\n";
2806 print "`------------------------------------'\n";
2807
2808 print "\n[icon_themes] command (?=help) > ";
2809 $input = <STDIN>;
2810 $input =~ s/[\r\n]//g;
2811 while ( $input ne "d" ) {
2812 if ( $input =~ /^\s*l\s*/i ) {
2813 $count = 0;
2814 print "\n";
2815 while ( $count <= $#icon_theme_name ) {
2816 if ( $count == $icon_theme_def ) {
2817 print " d";
2818 } else {
2819 print " ";
2820 }
2821 if ( $count eq $icon_theme_fallback ) {
2822 print "f ";
2823 } else {
2824 print " ";
2825 }
2826 $name = $icon_theme_name[$count];
2827 $num_spaces = 35 - length($name);
2828 for ( $i = 0 ; $i < $num_spaces ; $i++ ) {
2829 $name = $name . " ";
2830 }
2831
2832 print " $count. $name";
2833 print "($icon_theme_path[$count])\n";
2834
2835 $count++;
2836 }
2837 print "\n d = Default icon theme\n";
2838 print " f = Fallback icon theme\n\n";
2839 } elsif ( $input =~ /^\s*m\s*[0-9]+/i ) {
2840 $old_def = $icon_theme_def;
2841 $icon_theme_def = $input;
2842 $icon_theme_def =~ s/^\s*m\s*//;
2843 if ( ( $icon_theme_default > $#icon_theme_name ) || ( $icon_theme_default < 0 ) ) {
2844 print "Cannot set default icon theme to $icon_theme_default. That theme does not exist.\n";
2845 $icon_theme_def = $old_def;
2846 }
2847 } elsif ( $input =~ /^\s*f\s*[0-9]+/i ) {
2848 $old_fb = $icon_theme_fallback;
2849 $icon_theme_fallback = $input;
2850 $icon_theme_fallback =~ s/^\s*f\s*//;
2851 if ( ( $icon_theme_fallback > $#icon_theme_name ) || ( $icon_theme_fallback < 0 ) ) {
2852 print "Cannot set fallback icon theme to $icon_theme_fallback. That theme does not exist.\n";
2853 $icon_theme_fallback = $old_fb;
2854 }
2855 } elsif ( $input =~ /^\s*\+/ ) {
2856 print "What is the name of this icon theme? ";
2857 $name = <STDIN>;
2858 $name =~ s/[\r\n]//g;
2859 $icon_theme_name[ $#icon_theme_name + 1 ] = $name;
2860 print "Be sure to put ../images/themes/ before the filename.\n";
2861 print "What directory is this icon theme stored in (ex: ../images/themes/my_theme/)? ";
2862 $name = <STDIN>;
2863 $name =~ s/[\r\n]//g;
2864 $icon_theme_path[ $#icon_theme_path + 1 ] = $name;
2865 } elsif ( $input =~ /^\s*-\s*[0-9]?/ ) {
2866 if ( $input =~ /[0-9]+\s*$/ ) {
2867 $rem_num = $input;
2868 $rem_num =~ s/^\s*-\s*//g;
2869 $rem_num =~ s/\s*$//;
2870 } else {
2871 $rem_num = $#icon_theme_name;
2872 }
2873 if ( $rem_num == $icon_theme_def ) {
2874 print "You cannot remove the default icon theme!\n";
2875 } elsif ( $rem_num == $icon_theme_fallback ) {
2876 print "You cannot remove the fallback icon theme!\n";
2877 } else {
2878 $count = 0;
2879 @new_theme_name = ();
2880 @new_theme_path = ();
2881 while ( $count <= $#icon_theme_name ) {
2882 if ( $count != $rem_num ) {
2883 @new_theme_name = ( @new_theme_name, $icon_theme_name[$count] );
2884 @new_theme_path = ( @new_theme_path, $icon_theme_path[$count] );
2885 }
2886 $count++;
2887 }
2888 @icon_theme_name = @new_theme_name;
2889 @icon_theme_path = @new_theme_path;
2890 if ( $icon_theme_def > $rem_num ) {
2891 $icon_theme_def--;
2892 }
2893 }
2894 } elsif ( $input =~ /^\s*t\s*/i ) {
2895 print "\nStarting detection...\n\n";
2896
2897 opendir( DIR, "../images/themes/" );
2898 @files = readdir(DIR);
2899 $cnt = 0;
2900 while ( $cnt <= $#files ) {
2901 $filename = "../images/themes/" . $files[$cnt] .'/';
2902 if ( -d "../images/themes/" . $files[$cnt] && $files[$cnt] !~ /^\./ && $files[$cnt] ne "CVS" ) {
2903 $found = 0;
2904 for ( $x = 0 ; $x <= $#icon_theme_path ; $x++ ) {
2905 if ( $icon_theme_path[$x] eq $filename ) {
2906 $found = 1;
2907 }
2908 }
2909 if ( $found != 1 ) {
2910 print "** Found icon theme: $filename\n";
2911 print " What is its name? ";
2912 $nm = <STDIN>;
2913 $nm =~ s/[\n\r]//g;
2914 $icon_theme_name[ $#icon_theme_name + 1 ] = $nm;
2915 $icon_theme_path[ $#icon_theme_path + 1 ] = $filename;
2916 }
2917 }
2918 $cnt++;
2919 }
2920 print "\n";
2921 for ( $cnt = 0 ; $cnt <= $#icon_theme_path ; $cnt++ ) {
2922 $filename = $icon_theme_path[$cnt];
2923 if ( $filename ne "none" && $filename ne "template" && ! -d $filename ) {
2924 print " Removing $filename (file not found)\n";
2925 $offset = 0;
2926 @new_icon_theme_name = ();
2927 @new_icon_theme_path = ();
2928 for ( $x = 0 ; $x < $#icon_theme_path ; $x++ ) {
2929 if ( $icon_theme_path[$x] eq $filename ) {
2930 $offset = 1;
2931 }
2932 if ( $offset == 1 ) {
2933 $new_icon_theme_name[$x] = $icon_theme_name[ $x + 1 ];
2934 $new_icon_theme_path[$x] = $icon_theme_path[ $x + 1 ];
2935 } else {
2936 $new_icon_theme_name[$x] = $icon_theme_name[$x];
2937 $new_icon_theme_path[$x] = $icon_theme_path[$x];
2938 }
2939 }
2940 @icon_theme_name = @new_icon_theme_name;
2941 @icon_theme_path = @new_icon_theme_path;
2942 }
2943 }
2944 print "\nDetection complete!\n\n";
2945
2946 closedir DIR;
2947 } elsif ( $input =~ /^\s*\?\s*/ ) {
2948 print ".------------------------------------.\n";
2949 print "| t (detect icon themes) |\n";
2950 print "| + (add icon theme) |\n";
2951 print "| - N (remove icon theme) |\n";
2952 print "| m N (mark default icon theme) |\n";
2953 print "| f N (set fallback icon set) |\n";
2954 print "| l (list icon themes) |\n";
2955 print "| d (done) |\n";
2956 print "`------------------------------------'\n";
2957 }
2958 print "[icon_themes] command (?=help) > ";
2959 $input = <STDIN>;
2960 $input =~ s/[\r\n]//g;
2961 }
2962 }
2963
2964 sub command_templates {
2965 print "\nDefine the template sets that you wish to use. If you have added\n";
2966 print "a template set of your own, just follow the instructions (?) about\n";
2967 print "how to add them. You can also change the default template.\n";
2968
2969 print "\n Available Templates:\n";
2970
2971 $count = 0;
2972 while ( $count <= $#templateset_name ) {
2973 if ( $templateset_id[$count] eq $templateset_default ) {
2974 print " d";
2975 } else {
2976 print " ";
2977 }
2978 if ( $templateset_id[$count] eq $templateset_fallback ) {
2979 print "f ";
2980 } else {
2981 print " ";
2982 }
2983 if ( $count < 10 ) {
2984 print " ";
2985 }
2986 $name = $templateset_name[$count];
2987 $num_spaces = 35 - length($name);
2988 for ( $i = 0 ; $i < $num_spaces ; $i++ ) {
2989 $name = $name . " ";
2990 }
2991
2992 print " $count. $name";
2993 print "($templateset_id[$count])\n";
2994
2995 $count++;
2996 }
2997 print "\n d = default template set\n"
2998 . " f = fallback template set\n\n";
2999
3000 $menu_text = ".-------------------------------------.\n"
3001 . "| t (detect template set) |\n"
3002 . "| + (add template set) |\n"
3003 . "| - N (remove template set) |\n"
3004 . "| m N (mark default template set) |\n"
3005 . "| f N (set fallback template set) |\n"
3006 . "| l (list template sets) |\n"
3007 . "| d (done) |\n"
3008 . "|-------------------------------------|\n"
3009 . "| where N is a template set number |\n"
3010 . "`-------------------------------------'\n";
3011 print "\n";
3012 print $menu_text;
3013 print "\n[template set] command (?=help) > ";
3014
3015 $input = <STDIN>;
3016 $input =~ s/[\r\n]//g;
3017 while ( $input ne "d" ) {
3018
3019 # list template sets
3020 #
3021 if ( $input =~ /^\s*l\s*/i ) {
3022 $count = 0;
3023 while ( $count <= $#templateset_name ) {
3024 if ( $templateset_id[$count] eq $templateset_default ) {
3025 print " d";
3026 } else {
3027 print " ";
3028 }
3029 if ( $templateset_id[$count] eq $templateset_fallback ) {
3030 print "f ";
3031 } else {
3032 print " ";
3033 }
3034 if ( $count < 10 ) {
3035 print " ";
3036 }
3037 $name = $templateset_name[$count];
3038 $num_spaces = 35 - length($name);
3039 for ( $i = 0 ; $i < $num_spaces ; $i++ ) {
3040 $name = $name . " ";
3041 }
3042
3043 print " $count. $name";
3044 print "($templateset_id[$count])\n";
3045
3046 $count++;
3047 }
3048 print "\n d = default template set\n"
3049 . " f = fallback template set\n\n";
3050
3051 # mark default template set
3052 #
3053 } elsif ( $input =~ /^\s*m\s*[0-9]+/i ) {
3054 $old_def = $templateset_default;
3055 $input =~ s/^\s*m\s*//;
3056 $templateset_default = $templateset_id[$input];
3057 if ( $templateset_default =~ /^\s*$/ ) {
3058 print "Cannot set default template set to $input. That template set does not exist.\n";
3059 $templateset_default = $old_def;
3060 }
3061
3062 # set fallback template set
3063 #
3064 } elsif ( $input =~ /^\s*f\s*[0-9]+/i ) {
3065 $old_def = $templateset_fallback;
3066 $input =~ s/^\s*f\s*//;
3067 $templateset_fallback = $templateset_id[$input];
3068 if ( $templateset_fallback =~ /^\s*$/ ) {
3069 print "Cannot set fallback template set to $input. That template set does not exist.\n";
3070 $templateset_fallback = $old_def;
3071 }
3072
3073 # add template set
3074 #
3075 } elsif ( $input =~ /^\s*\+/ ) {
3076 print "\nWhat is the name of this template (as shown to your users): ";
3077 $name = <STDIN>;
3078 $name =~ s/[\r\n]//g;
3079 $templateset_name[ $#templateset_name + 1 ] = $name;
3080 print "\n\nThe directory name should not contain any path information\n"
3081 . "or slashes, and should be the name of the directory that the\n"
3082 . "template set is found in within the SquirrelMail templates\n"
3083 . "directory.\n\n";
3084 print "What directory is this stored in (ex: default_advanced): ";
3085 $name = <STDIN>;
3086 $name =~ s/[\r\n]//g;
3087 $templateset_id[ $#templateset_id + 1 ] = $name;
3088
3089 # detect template sets
3090 #
3091 } elsif ( $input =~ /^\s*t\s*/i ) {
3092 print "\nStarting detection...\n\n";
3093 opendir( DIR, "../templates" );
3094 @files = readdir(DIR);
3095 $cnt = 0;
3096 while ( $cnt <= $#files ) {
3097 if ( -d "../templates/" . $files[$cnt] && $files[$cnt] !~ /^\./ && $files[$cnt] ne "CVS" ) {
3098 $filename = $files[$cnt];
3099 $found = 0;
3100 for ( $x = 0 ; $x <= $#templateset_id ; $x++ ) {
3101 if ( $templateset_id[$x] eq $filename ) {
3102 $found = 1;
3103 last;
3104 }
3105 }
3106 if ( $found != 1) {
3107 print "** Found template set: $filename\n";
3108 print " What is it's name (as shown to your users)? ";
3109 $nm = <STDIN>;
3110 $nm =~ s/[\n\r]//g;
3111 $templateset_id[ $#templateset_id + 1 ] = $filename;
3112 $templateset_name[ $#templateset_name + 1 ] = $nm;
3113 }
3114 }
3115 $cnt++;
3116 }
3117 print "\n";
3118 for ( $cnt= 0 ; $cnt <= $#templateset_id ; ) {
3119 $filename = $templateset_id[$cnt];
3120 if ( !(-d change_to_rel_path('SM_PATH . \'templates/' . $filename)) ) {
3121 print " Removing \"$filename\" (template set directory not found)\n";
3122 if ( $templateset_default eq $filename ) { $templateset_default = 'default'; }
3123 if ( $templateset_fallback eq $filename ) { $templateset_fallback = 'default'; }
3124 $offset = 0;
3125 @new_templateset_name = ();
3126 @new_templateset_id = ();
3127 for ( $x = 0 ; $x < $#templateset_id ; $x++ ) {
3128 if ( $templateset_id[$x] eq $filename ) {
3129 $offset = 1;
3130 }
3131 if ( $offset == 1 ) {
3132 $new_templateset_name[$x] = $templateset_name[ $x + 1 ];
3133 $new_templateset_id[$x] = $templateset_id[ $x + 1 ];
3134 } else {
3135 $new_templateset_name[$x] = $templateset_name[$x];
3136 $new_templateset_id[$x] = $templateset_id[$x];
3137 }
3138 }
3139 @templateset_name = @new_templateset_name;
3140 @templateset_id = @new_templateset_id;
3141 } else { $cnt++; }
3142 }
3143 print "\nDetection complete!\n\n";
3144
3145 closedir DIR;
3146
3147 # remove template set
3148 #
3149 # undocumented functionality of removing last template set isn't that great
3150 #} elsif ( $input =~ /^\s*-\s*[0-9]?/ ) {
3151 } elsif ( $input =~ /^\s*-\s*[0-9]+/ ) {
3152 if ( $input =~ /[0-9]+\s*$/ ) {
3153 $rem_num = $input;
3154 $rem_num =~ s/^\s*-\s*//g;
3155 $rem_num =~ s/\s*$//;
3156 } else {
3157 $rem_num = $#templateset_name;
3158 }
3159 if ( $templateset_id[$rem_num] eq $templateset_default ) {
3160 print "You cannot remove the default template set!\n";
3161 } elsif ( $templateset_id[$rem_num] eq $templateset_fallback ) {
3162 print "You cannot remove the fallback template set!\n";
3163 } else {
3164 $count = 0;
3165 @new_templateset_name = ();
3166 @new_templateset_id = ();
3167 while ( $count <= $#templateset_name ) {
3168 if ( $count != $rem_num ) {
3169 @new_templateset_name = ( @new_templateset_name, $templateset_name[$count] );
3170 @new_templateset_id = ( @new_templateset_id, $templateset_id[$count] );
3171 }
3172 $count++;
3173 }
3174 @templateset_name = @new_templateset_name;
3175 @templateset_id = @new_templateset_id;
3176 }
3177
3178 # help
3179 #
3180 } elsif ( $input =~ /^\s*\?\s*/ ) {
3181 print $menu_text;
3182
3183 # command not understood
3184 #
3185 } else {
3186 print "Command not understood\n";
3187 }
3188
3189 print "[template set] command (?=help) > ";
3190 $input = <STDIN>;
3191 $input =~ s/[\r\n]//g;
3192 }
3193 return $templateset_default;
3194 }
3195
3196
3197 # sets default font size option
3198 sub command_default_fontsize {
3199 print "Enter default font size [$WHT$$default_fontsize$NRM]: $WHT";
3200 $new_size = <STDIN>;
3201 if ( $new_size eq "\n" ) {
3202 $new_size = $size;
3203 } else {
3204 $new_size =~ s/[\r\n]//g;
3205 }
3206 return $new_size;
3207 }
3208
3209 # controls available fontsets
3210 sub command_fontsets {
3211 # Greeting
3212 print "You can control fontsets available to end users here.\n";
3213 # set initial $input value
3214 $input = 'l';
3215 while ( $input ne "x" ) {
3216 if ( $input =~ /^\s*a\s*/i ) {
3217 # add new fontset
3218 print "\nFontset name: ";
3219 $name = <STDIN>;
3220 if (! $fontsets{trim($name)}) {
3221 print "Fontset string: ";
3222 $value = <STDIN>;
3223 $fontsets{trim($name)} = trim($value);
3224 } else {
3225 print "\nERROR: Such fontset already exists.\n";
3226 }
3227 } elsif ( $input =~ /^\s*e\s*/i ) {
3228 # edit existing fontset
3229 print "\nFontset name: ";
3230 $name = <STDIN>;
3231 if (! $fontsets{trim($name)}) {
3232 print "\nERROR: No such fontset.\n";
3233 } else {
3234 print "Fontset string [$fontsets{trim($name)}]: ";
3235 $value = <STDIN>;
3236 $fontsets{trim($name)} = trim($value);
3237 }
3238 } elsif ( $input =~ /^\s*d\s*/ ) {
3239 # delete existing fontset
3240 print "\nFontset name: ";
3241 $name = <STDIN>;
3242 if (! $fontsets{trim($name)}) {
3243 print "\nERROR: No such fontset.\n";
3244 } else {
3245 delete $fontsets{trim($name)};
3246 }
3247 } elsif ( $input =~ /^\s*l\s*/ ) {
3248 # list fontsets
3249 print "\nConfigured fontsets:\n";
3250 while (($fontset_name, $fontset_string) = each(%fontsets)) {
3251 print " $fontset_name = $fontset_string\n";
3252 }
3253 print "Default fontset: $default_fontset\n";
3254 } elsif ( $input =~ /^\s*m\s*/ ) {
3255 # set default fontset
3256 print "\nSet default fontset [$default_fontset]: ";
3257 $name = <STDIN>;
3258 if (trim($name) ne '' and ! $fontsets{trim($name)}) {
3259 print "\nERROR: No such fontset.\n";
3260 } else {
3261 $default_fontset = trim($name);
3262 }
3263 } else {
3264 # print available commands on any other input
3265 print "\nAvailable commands:\n";
3266 print " a - Adds new fontset.\n";
3267 print " d - Deletes existing fontset.\n";
3268 print " e - Edits existing fontset.\n";
3269 print " h or ? - Shows this help screen.\n";
3270 print " l - Lists available fontsets.\n";
3271 print " m - Sets default fontset.\n";
3272 print " x - Exits fontset editor mode.\n";
3273 }
3274 print "\nCommand [fontsets] (a,d,e,h,?=help,l,m,x)> ";
3275 $input = <STDIN>;
3276 $input =~ s/[\r\n]//g;
3277 }
3278 }
3279
3280 sub command61 {
3281 print "You can now define different LDAP servers.\n";
3282 print "Please ensure proper permissions for config.php when including\n";
3283 print "sensitive passwords.\n\n";
3284 print "[ldap] command (?=help) > ";
3285 $input = <STDIN>;
3286 $input =~ s/[\r\n]//g;
3287 while ( $input ne "d" ) {
3288 if ( $input =~ /^\s*l\s*/i ) {
3289 $count = 0;
3290 while ( $count <= $#ldap_host ) {
3291 print "$count. $ldap_host[$count]\n";
3292 print " base: $ldap_base[$count]\n";
3293 if ( $ldap_charset[$count] ) {
3294 print " charset: $ldap_charset[$count]\n";
3295 }
3296 if ( $ldap_port[$count] ) {
3297 print " port: $ldap_port[$count]\n";
3298 }
3299 if ( $ldap_name[$count] ) {
3300 print " name: $ldap_name[$count]\n";
3301 }
3302 if ( $ldap_maxrows[$count] ) {
3303 print " maxrows: $ldap_maxrows[$count]\n";
3304 }
3305 if ( $ldap_filter[$count] ) {
3306 print " filter: $ldap_filter[$count]\n";
3307 }
3308 if ( $ldap_binddn[$count] ) {
3309 print " binddn: $ldap_binddn[$count]\n";
3310 if ( $ldap_bindpw[$count] ) {
3311 print " bindpw: $ldap_bindpw[$count]\n";
3312 }
3313 }
3314 if ( $ldap_protocol[$count] ) {
3315 print " protocol: $ldap_protocol[$count]\n";
3316 }
3317 if ( $ldap_limit_scope[$count] ) {
3318 print " limit_scope: $ldap_limit_scope[$count]\n";
3319 }
3320 if ( $ldap_listing[$count] ) {
3321 print " listing: $ldap_listing[$count]\n";
3322 }
3323 if ( $ldap_writeable[$count] ) {
3324 print " writeable: $ldap_writeable[$count]\n";
3325 }
3326 if ( $ldap_search_tree[$count] ) {
3327 print " search_tree: $ldap_search_tree[$count]\n";
3328 }
3329 if ( $ldap_starttls[$count] ) {
3330 print " starttls: $ldap_starttls[$count]\n";
3331 }
3332
3333 print "\n";
3334 $count++;
3335 }
3336 } elsif ( $input =~ /^\s*\+/ ) {
3337 $sub = $#ldap_host + 1;
3338
3339 print "First, we need to have the hostname or the IP address where\n";
3340 print "this LDAP server resides. Example: ldap.bigfoot.com\n";
3341 print "\n";
3342 print "You can use any URI compatible with your LDAP library. Please\n";
3343 print "note that StartTLS option is not compatible with ldaps and\n";
3344 print "ldapi URIs.\n";
3345 print "hostname: ";
3346 $name = <STDIN>;
3347 $name =~ s/[\r\n]//g;
3348 $ldap_host[$sub] = $name;
3349
3350 print "\n";
3351
3352 print "Next, we need the server root (base dn). For this, an empty\n";
3353 print "string is allowed.\n";
3354 print "Example: ou=member_directory,o=netcenter.com\n";
3355 print "base: ";
3356 $name = <STDIN>;
3357 $name =~ s/[\r\n]//g;
3358 $ldap_base[$sub] = $name;
3359
3360 print "\n";
3361
3362 print "This is the TCP/IP port number for the LDAP server. Default\n";
3363 print "port is 389. This is optional. Press ENTER for default.\n";
3364 print "port: ";
3365 $name = <STDIN>;
3366 $name =~ s/[\r\n]//g;
3367 $ldap_port[$sub] = $name;
3368
3369 print "\n";
3370
3371 print "This is the charset for the server. Default is utf-8. This\n";
3372 print "is also optional. Press ENTER for default.\n";
3373 print "charset: ";
3374 $name = <STDIN>;
3375 $name =~ s/[\r\n]//g;
3376 $ldap_charset[$sub] = $name;
3377
3378 print "\n";
3379
3380 print "This is the name for the server, used to tag the results of\n";
3381 print "the search. Default it \"LDAP: hostname\". Press ENTER for default\n";
3382 print "name: ";
3383 $name = <STDIN>;
3384 $name =~ s/[\r\n]//g;
3385 $ldap_name[$sub] = $name;
3386
3387 print "\n";
3388
3389 print "You can specify the maximum number of rows in the search result.\n";
3390 print "Default value is equal to 250 rows. Press ENTER for default.\n";
3391 print "maxrows: ";
3392 $name = <STDIN>;
3393 $name =~ s/[\r\n]//g;
3394 $ldap_maxrows[$sub] = $name;
3395
3396
3397 print "\n";
3398
3399 print "If your LDAP server does not like anonymous logins, you can specify bind DN.\n";
3400 print "Default is none, anonymous bind. Press ENTER for default.\n";
3401 print "binddn: ";
3402 $name = <STDIN>;
3403 $name =~ s/[\r\n]//g;
3404 $ldap_binddn[$sub] = $name;
3405
3406 print "\n";
3407
3408 if ( $ldap_binddn[$sub] ne '' ) {
3409
3410 print "Now, please specify password for that DN.\n";
3411 print "bindpw: ";
3412 $name = <STDIN>;
3413 $name =~ s/[\r\n]//g;
3414 $ldap_bindpw[$sub] = $name;
3415
3416 print "\n";
3417 }
3418
3419 print "You can specify bind protocol version here.\n";
3420 print "Default protocol version depends on your php ldap settings.\n";
3421 print "Press ENTER for default.\n";
3422 print "protocol: ";
3423 $name = <STDIN>;
3424 $name =~ s/[\r\n]//g;
3425 $ldap_protocol[$sub] = $name;
3426
3427 print "\n";
3428
3429 print "This configuration section allows to set some rarely used\n";
3430 print "options and options specific to some LDAP implementations.\n";
3431 print "\n";
3432 print "Do you want to set advanced LDAP directory settings? (y/N):";
3433 $ldap_advanced_settings = <STDIN>;
3434 if ( $ldap_advanced_settings =~ /^y\n/i ) {
3435 $ldap_advanced_settings = 'true';
3436 } else {
3437 $ldap_advanced_settings = 'false';
3438 }
3439
3440 if ($ldap_advanced_settings eq 'true') {
3441 print "\n";
3442
3443 print "You can control LDAP directory listing here. This option can\n";
3444 print "be useful if you run small LDAP server and want to provide listing\n";
3445 print "of all addresses stored in LDAP to users of webmail interface.\n";
3446 print "Number of displayed entries is limited by maxrows setting.\n";
3447 print "\n";
3448 print "Don't enable this option for public LDAP directories.\n";
3449 print "\n";
3450 print "Allow listing of LDAP directory? (y/N):";
3451 $name = <STDIN>;
3452 if ( $name =~ /^y\n/i ) {
3453 $name = 'true';
3454 } else {
3455 $name = 'false';
3456 }
3457 $ldap_listing[$sub] = $name;
3458
3459 print "\n";
3460
3461 print "You can control write access to LDAP address book here. This option can\n";
3462 print "be useful if you run small LDAP server and want to provide writable\n";
3463 print "shared address book stored in LDAP to users of webmail interface.\n";
3464 print "\n";
3465 print "Don't enable this option for public LDAP directories.\n";
3466 print "\n";
3467 print "Allow writing to LDAP directory? (y/N):";
3468 $name = <STDIN>;
3469 if ( $name =~ /^y\n/i ) {
3470 $name = 'true';
3471 } else {
3472 $name = 'false';
3473 }
3474 $ldap_writeable[$sub] = $name;
3475
3476 print "\n";
3477
3478 print "You can specify an additional search filter.\n";
3479 print "This could be something like \"(objectclass=posixAccount)\".\n";
3480 print "No filtering is performed by default. Press ENTER for default.\n";
3481 print "filter: ";
3482 $name = <STDIN>;
3483 $name =~ s/[\r|\n]//g;
3484 $ldap_filter[$sub] = $name;
3485
3486 print "\n";
3487
3488 print "You can control search scope here.\n";
3489 print "This option is specific to Microsoft ADS implementation.\n";
3490 print "It requires use of v3 or newer LDAP protocol.\n";
3491 print "Don't enable it, if you use other LDAP server.\n";
3492 print "\n";
3493 print "Limit ldap scope? (y/N):";
3494 $name = <STDIN>;
3495 if ( $name =~ /^y\n/i ) {
3496 $name = 'true';
3497 } else {
3498 $name = 'false';
3499 }
3500 $ldap_limit_scope[$sub] = $name;
3501
3502 print "\n";
3503
3504 print "You can control ldap search type here.\n";
3505 print "Addresses can be searched in entire LDAP subtree (default)\n";
3506 print "or only first level entries are returned.\n";
3507 print "\n";
3508 print "Search entire LDAP subtree? (Y/n):";
3509 $name = <STDIN>;
3510 if ( $name =~ /^n\n/i ) {
3511 $name = 'false';
3512 } else {
3513 $name = 'true';
3514 }
3515 $ldap_search_tree[$sub] = $name;
3516
3517 print "\n";
3518
3519 print "You can control use of StartTLS on LDAP connection here.\n";
3520 print "This option requires use of v3 or newer LDAP protocol and php 4.2+.\n";
3521 print "\n";
3522 print "Use StartTLS? (y/N):";
3523 $name = <STDIN>;
3524 if ( $name =~ /^y\n/i ) {
3525 $name = 'true';
3526 } else {
3527 $name = 'false';
3528 }
3529 $ldap_starttls[$sub] = $name;
3530 }
3531 print "\n";
3532
3533 } elsif ( $input =~ /^\s*-\s*[0-9]?/ ) {
3534 if ( $input =~ /[0-9]+\s*$/ ) {
3535 $rem_num = $input;
3536 $rem_num =~ s/^\s*-\s*//g;
3537 $rem_num =~ s/\s*$//;
3538 } else {
3539 $rem_num = $#ldap_host;
3540 }
3541 $count = 0;
3542 @new_ldap_host = ();
3543 @new_ldap_base = ();
3544 @new_ldap_port = ();
3545 @new_ldap_name = ();
3546 @new_ldap_charset = ();
3547 @new_ldap_maxrows = ();
3548 @new_ldap_filter = ();
3549 @new_ldap_bindpw = ();
3550 @new_ldap_binddn = ();
3551 @new_ldap_protocol = ();
3552 @new_ldap_limit_scope = ();
3553 @new_ldap_listing = ();
3554 @new_ldap_writeable = ();
3555 @new_ldap_search_tree = ();
3556 @new_ldap_starttls = ();
3557
3558 while ( $count <= $#ldap_host ) {
3559 if ( $count != $rem_num ) {
3560 @new_ldap_host = ( @new_ldap_host, $ldap_host[$count] );
3561 @new_ldap_base = ( @new_ldap_base, $ldap_base[$count] );
3562 @new_ldap_port = ( @new_ldap_port, $ldap_port[$count] );
3563 @new_ldap_name = ( @new_ldap_name, $ldap_name[$count] );
3564 @new_ldap_charset = ( @new_ldap_charset, $ldap_charset[$count] );
3565 @new_ldap_maxrows = ( @new_ldap_maxrows, $ldap_maxrows[$count] );
3566 @new_ldap_filter = ( @new_ldap_filter, $ldap_filter[$count] );
3567 @new_ldap_binddn = ( @new_ldap_binddn, $ldap_binddn[$count] );
3568 @new_ldap_bindpw = ( @new_ldap_bindpw, $ldap_bindpw[$count] );
3569 @new_ldap_protocol = ( @new_ldap_protocol, $ldap_protocol[$count] );
3570 @new_ldap_limit_scope = ( @new_ldap_limit_scope, $ldap_limit_scope[$count] );
3571 @new_ldap_listing = ( @new_ldap_listing, $ldap_listing[$count] );
3572 @new_ldap_writeable = ( @new_ldap_writeable, $ldap_writeable[$count] );
3573 @new_ldap_search_tree = ( @new_ldap_search_tree, $ldap_search_tree[$count] );
3574 @new_ldap_starttls = ( @new_ldap_starttls, $ldap_starttls[$count] );
3575 }
3576 $count++;
3577 }
3578 @ldap_host = @new_ldap_host;
3579 @ldap_base = @new_ldap_base;
3580 @ldap_port = @new_ldap_port;
3581 @ldap_name = @new_ldap_name;
3582 @ldap_charset = @new_ldap_charset;
3583 @ldap_maxrows = @new_ldap_maxrows;
3584 @ldap_filter = @new_ldap_filter;
3585 @ldap_binddn = @new_ldap_binddn;
3586 @ldap_bindpw = @new_ldap_bindpw;
3587 @ldap_protocol = @new_ldap_protocol;
3588 @ldap_limit_scope = @new_ldap_limit_scope;
3589 @ldap_listing = @new_ldap_listing;
3590 @ldap_writeable = @new_ldap_writeable;
3591 @ldap_search_tree = @new_ldap_search_tree;
3592 @ldap_starttls = @new_ldap_starttls;
3593
3594 } elsif ( $input =~ /^\s*\?\s*/ ) {
3595 print ".-------------------------.\n";
3596 print "| + (add host) |\n";
3597 print "| - N (remove host) |\n";
3598 print "| l (list hosts) |\n";
3599 print "| d (done) |\n";
3600 print "`-------------------------'\n";
3601 }
3602 print "[ldap] command (?=help) > ";
3603 $input = <STDIN>;
3604 $input =~ s/[\r\n]//g;
3605 }
3606 }
3607
3608 sub command62 {
3609 print "Some of our developers have come up with very good javascript interface\n";
3610 print "for searching through address books, however, our original goals said\n";
3611 print "that we would be 100% HTML. In order to make it possible to use their\n";
3612 print "interface, and yet stick with our goals, we have also written a plain\n";
3613 print "HTML version of the search. Here, you can choose which version to use.\n";
3614 print "\n";
3615 print "This is just the default value. It is also a user option that each\n";
3616 print "user can configure individually\n";
3617 print "\n";
3618
3619 if ( lc($default_use_javascript_addr_book) eq 'true' ) {
3620 $default_value = "y";
3621 } else {
3622 $default_use_javascript_addr_book = 'false';
3623 $default_value = "n";
3624 }
3625 print "Use javascript version by default (y/n) [$WHT$default_value$NRM]: $WHT";
3626 $new_show = <STDIN>;
3627 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
3628 $default_use_javascript_addr_book = 'true';
3629 } else {
3630 $default_use_javascript_addr_book = 'false';
3631 }
3632 return $default_use_javascript_addr_book;
3633 }
3634
3635 # global filebased address book
3636 sub command63 {
3637 print "If you want to use global file address book, then you\n";
3638 print "must set this option to a valid value. If option does\n";
3639 print "not have path elements, system assumes that file is\n";
3640 print "stored in data directory. If relative path is set, it is\n";
3641 print "relative to main SquirrelMail directory. If value is empty,\n";
3642 print "address book is not enabled.\n";
3643 print "\n";
3644
3645 print "[$WHT$abook_global_file$NRM]: $WHT";
3646 $new_abook_global_file = <STDIN>;
3647 if ( $new_abook_global_file eq "\n" ) {
3648 $new_abook_global_file = $abook_global_file;
3649 } else {
3650 $new_abook_global_file =~ s/[\r\n]//g;
3651 }
3652 return $new_abook_global_file;
3653 }
3654
3655 # writing into global filebased abook control
3656 sub command64 {
3657 print "This setting controls writing into global file address\n";
3658 print "book options. Address book file must be writeable by\n";
3659 print "webserver's user, if you want to enable this option.\n";
3660 print "\n";
3661
3662 if ( lc($abook_global_file_writeable) eq 'true' ) {
3663 $default_value = "y";
3664 } else {
3665 $abook_global_file_writeable = 'false';
3666 $default_value = "n";
3667 }
3668 print "Allow writing into global file address book (y/n) [$WHT$default_value$NRM]: $WHT";
3669 $new_show = <STDIN>;
3670 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
3671 $abook_global_file_writeable = 'true';
3672 } else {
3673 $abook_global_file_writeable = 'false';
3674 }
3675 return $abook_global_file_writeable;
3676 }
3677
3678 # listing of global filebased abook control
3679 sub command65 {
3680 print "This setting controls listing of global file address\n";
3681 print "book in addresses page.\n";
3682 print "\n";
3683
3684 if ( lc($abook_global_file_listing) eq 'true' ) {
3685 $default_value = "y";
3686 } else {
3687 $abook_global_file_listing = 'false';
3688 $default_value = "n";
3689 }
3690 print "Allow listing of global file address book (y/n) [$WHT$default_value$NRM]: $WHT";
3691 $new_show = <STDIN>;
3692 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
3693 $abook_global_file_listing = 'true';
3694 } else {
3695 $abook_global_file_listing = 'false';
3696 }
3697 return $abook_global_file_listing;
3698 }
3699
3700 # controls $abook_file_line_length setting
3701 sub command_abook_file_line_length {
3702 print "This setting controls space allocated to file based address book records.\n";
3703 print "End users will be unable to save address book entry, if total entry size \n";
3704 print "(quoted address book fields + 4 delimiters + linefeed) exceeds allowed \n";
3705 print "address book length size.\n";
3706 print "\n";
3707 print "Same setting is applied to personal and global file based address books.\n";
3708 print "\n";
3709 print "It is strongly recommended to keep default setting value. Change it only\n";
3710 print "if you really want to store address book entries that are bigger than two\n";
3711 print "kilobytes (2048).\n";
3712 print "\n";
3713
3714 print "Enter allowed address book line length [$abook_file_line_length]: ";
3715 my $tmp = <STDIN>;
3716 $tmp = trim($tmp);
3717 # value is not modified, if user hits Enter or enters space
3718 if ($tmp ne '') {
3719 # make sure that input is numeric
3720 if ($tmp =~ /^\d+$/) {
3721 $abook_file_line_length = $tmp;
3722 } else {
3723 print "If you want to change this setting, you must enter number.\n";
3724 print "If you want to keep original setting - enter space.\n\n";
3725 print "Press Enter to continue...";
3726 $tmp = <STDIN>;
3727 }
3728 }
3729 }
3730
3731 sub command91 {
3732 print "If you want to store your users address book details in a database then\n";
3733 print "you need to set this DSN to a valid value. The format for this is:\n";
3734 print "mysql://user:pass\@hostname/dbname\n";
3735 print "Where mysql can be one of the databases PHP supports, the most common\n";
3736 print "of these are mysql, msql and pgsql.\n";
3737 print "Please ensure proper permissions for config.php when including\n";
3738 print "sensitive passwords.\n\n";
3739 print "If the DSN is left empty (hit space and then return) the database\n";
3740 print "related code for address books will not be used.\n";
3741 print "\n";
3742
3743 if ( $addrbook_dsn eq "" ) {
3744 $default_value = "Disabled";
3745 } else {
3746 $default_value = $addrbook_dsn;
3747 }
3748 print "[$WHT$addrbook_dsn$NRM]: $WHT";
3749 $new_dsn = <STDIN>;
3750 if ( $new_dsn eq "\n" ) {
3751 $new_dsn = "";
3752 } else {
3753 $new_dsn =~ s/[\r\n]//g;
3754 $new_dsn =~ s/^\s+$//g;
3755 }
3756 return $new_dsn;
3757 }
3758
3759 sub command92 {
3760 print "This is the name of the table you want to store the address book\n";
3761 print "data in, it defaults to 'address'\n";
3762 print "\n";
3763 print "[$WHT$addrbook_table$NRM]: $WHT";
3764 $new_table = <STDIN>;
3765 if ( $new_table eq "\n" ) {
3766 $new_table = $addrbook_table;
3767 } else {
3768 $new_table =~ s/[\r\n]//g;
3769 }
3770 return $new_table;
3771 }
3772
3773 sub command93 {
3774 print "If you want to store your users preferences in a database then\n";
3775 print "you need to set this DSN to a valid value. The format for this is:\n";
3776 print "mysql://user:pass\@hostname/dbname\n";
3777 print "Where mysql can be one of the databases PHP supports, the most common\n";
3778 print "of these are mysql, msql and pgsql.\n";
3779 print "Please ensure proper permissions for config.php when including\n";
3780 print "sensitive passwords.\n\n";
3781 print "If the DSN is left empty (hit space and then return) the database\n";
3782 print "related code for address books will not be used.\n";
3783 print "\n";
3784
3785 if ( $prefs_dsn eq "" ) {
3786 $default_value = "Disabled";
3787 } else {
3788 $default_value = $prefs_dsn;
3789 }
3790 print "[$WHT$prefs_dsn$NRM]: $WHT";
3791 $new_dsn = <STDIN>;
3792 if ( $new_dsn eq "\n" ) {
3793 $new_dsn = "";
3794 } else {
3795 $new_dsn =~ s/[\r\n]//g;
3796 $new_dsn =~ s/^\s+$//g;
3797 }
3798 return $new_dsn;
3799 }
3800
3801 sub command94 {
3802 print "This is the name of the table you want to store the preferences\n";
3803 print "data in, it defaults to 'userprefs'\n";
3804 print "\n";
3805 print "[$WHT$prefs_table$NRM]: $WHT";
3806 $new_table = <STDIN>;
3807 if ( $new_table eq "\n" ) {
3808 $new_table = $prefs_table;
3809 } else {
3810 $new_table =~ s/[\r\n]//g;
3811 }
3812 return $new_table;
3813 }
3814
3815 sub command95 {
3816 print "This is the name of the field in which you want to store the\n";
3817 print "username of the person the prefs are for. It default to 'user'\n";
3818 print "which clashes with a reserved keyword in PostgreSQL so this\n";
3819 print "will need to be changed for that database at least\n";
3820 print "\n";
3821 print "[$WHT$prefs_user_field$NRM]: $WHT";
3822 $new_field = <STDIN>;
3823 if ( $new_field eq "\n" ) {
3824 $new_field = $prefs_user_field;
3825 } else {
3826 $new_field =~ s/[\r\n]//g;
3827 }
3828 $prefs_user_size = db_pref_size($prefs_user_size);
3829 return $new_field;
3830 }
3831
3832 sub command96 {
3833 print "This is the name of the field in which you want to store the\n";
3834 print "preferences keyword. It defaults to 'prefkey'\n";
3835 print "\n";
3836 print "[$WHT$prefs_key_field$NRM]: $WHT";
3837 $new_field = <STDIN>;
3838 if ( $new_field eq "\n" ) {
3839 $new_field = $prefs_key_field;
3840 } else {
3841 $new_field =~ s/[\r\n]//g;
3842 }
3843 $prefs_key_size = db_pref_size($prefs_key_size);
3844 return $new_field;
3845 }
3846
3847 sub command97 {
3848 print "This is the name of the field in which you want to store the\n";
3849 print "preferences value. It defaults to 'prefval'\n";
3850 print "\n";
3851 print "[$WHT$prefs_val_field$NRM]: $WHT";
3852 $new_field = <STDIN>;
3853 if ( $new_field eq "\n" ) {
3854 $new_field = $prefs_val_field;
3855 } else {
3856 $new_field =~ s/[\r\n]//g;
3857 }
3858 $prefs_val_size = db_pref_size($prefs_val_size);
3859 return $new_field;
3860 }
3861
3862 # routine is used to set database field limits
3863 # it needs one argument
3864 sub db_pref_size() {
3865 my ($size) = $_[0];
3866 print "\nDatabase fields have size limits.\n";
3867 print "\n";
3868 print "What limit is set for this field? [$WHT$size$NRM]: $WHT";
3869 $new_size = <STDIN>;
3870 if ( $new_size eq "\n" ) {
3871 $new_size = $size;
3872 } else {
3873 $new_size =~ s/[\r\n]//g;
3874 }
3875 return $new_size;
3876 }
3877
3878 sub command98 {
3879 print "If you want to store your global address book in a database then\n";
3880 print "you need to set this DSN to a valid value. The format for this is:\n";
3881 print "mysql://user:pass\@hostname/dbname\n";
3882 print "Where mysql can be one of the databases PHP supports, the most common\n";
3883 print "of these are mysql, msql and pgsql.\n";
3884 print "Please ensure proper permissions for config.php when including\n";
3885 print "sensitive passwords.\n\n";
3886 print "If the DSN is left empty (hit space and then return) the database\n";
3887 print "related code for global SQL address book will not be used.\n";
3888 print "\n";
3889
3890 if ( $addrbook_global_dsn eq "" ) {
3891 $default_value = "Disabled";
3892 } else {
3893 $default_value = $addrbook_global_dsn;
3894 }
3895 print "[$WHT$addrbook_global_dsn$NRM]: $WHT";
3896 $new_dsn = <STDIN>;
3897 if ( $new_dsn eq "\n" ) {
3898 $new_dsn = "";
3899 } else {
3900 $new_dsn =~ s/[\r\n]//g;
3901 $new_dsn =~ s/^\s+$//g;
3902 }
3903 return $new_dsn;
3904 }
3905
3906 sub command99 {
3907 print "This is the name of the table you want to store the global address book\n";
3908 print "data in. Default table name is 'global_abook'. Address book uses same\n";
3909 print "database format as personal address book.\n";
3910 print "\n";
3911 print "[$WHT$addrbook_global_table$NRM]: $WHT";
3912 $new_table = <STDIN>;
3913 if ( $new_table eq "\n" ) {
3914 $new_table = $addrbook_global_table;
3915 } else {
3916 $new_table =~ s/[\r\n]//g;
3917 }
3918 return $new_table;
3919 }
3920
3921 sub command910 {
3922 print "This option controls users\' ability to add or modify records stored \n";
3923 print "in global address book\n";
3924
3925 if ( lc($addrbook_global_writeable) eq 'true' ) {
3926 $default_value = "y";
3927 } else {
3928 $default_value = "n";
3929 }
3930 print "Allow writing into global address book? (y/n) [$WHT$default_value$NRM]: $WHT";
3931 $addrbook_global_writeable = <STDIN>;
3932 if ( ( $addrbook_global_writeable =~ /^y\n/i ) || ( ( $addrbook_global_writeable =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
3933 $addrbook_global_writeable = 'true';
3934 } else {
3935 $addrbook_global_writeable = 'false';
3936 }
3937 return $addrbook_global_writeable;
3938 }
3939
3940 sub command911 {
3941 print "Enable this option if you want to see listing of addresses stored \n";
3942 print "in global address book\n";
3943
3944 if ( lc($addrbook_global_listing) eq 'true' ) {
3945 $default_value = "y";
3946 } else {
3947 $default_value = "n";
3948 }
3949 print "Allow listing of global address book? (y/n) [$WHT$default_value$NRM]: $WHT";
3950 $addrbook_global_listing = <STDIN>;
3951 if ( ( $addrbook_global_listing =~ /^y\n/i ) || ( ( $addrbook_global_listing =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
3952 $addrbook_global_listing = 'true';
3953 } else {
3954 $addrbook_global_listing = 'false';
3955 }
3956 return $addrbook_global_listing;
3957 }
3958
3959
3960 # Default language
3961 sub commandA1 {
3962 print "SquirrelMail attempts to set the language in many ways. If it\n";
3963 print "can not figure it out in another way, it will default to this\n";
3964 print "language. Please use the code for the desired language.\n";
3965 print "\n";
3966 print "[$WHT$squirrelmail_default_language$NRM]: $WHT";
3967 $new_squirrelmail_default_language = <STDIN>;
3968 if ( $new_squirrelmail_default_language eq "\n" ) {
3969 $new_squirrelmail_default_language = $squirrelmail_default_language;
3970 } else {
3971 $new_squirrelmail_default_language =~ s/[\r\n]//g;
3972 $new_squirrelmail_default_language =~ s/^\s+$//g;
3973 }
3974 return $new_squirrelmail_default_language;
3975 }
3976 # Default Charset
3977 sub commandA2 {
3978 print "This option controls what character set is used when sending\n";
3979 print "mail and when sending HTML to the browser. Option works only\n";
3980 print "with US English (en_US) translation. Other translations use\n";
3981 print "charsets that are set in translation settings.\n";
3982 print "\n";
3983
3984 print "[$WHT$default_charset$NRM]: $WHT";
3985 $new_default_charset = <STDIN>;
3986 if ( $new_default_charset eq "\n" ) {
3987 $new_default_charset = $default_charset;
3988 } else {
3989 $new_default_charset =~ s/[\r\n]//g;
3990 }
3991 return $new_default_charset;
3992 }
3993 # Alternative language names
3994 sub commandA3 {
3995 print "Enable this option if you want to see localized language names in\n";
3996 print "language selection box. Note, that this option can trigger\n";
3997 print "installation of foreign language support modules in some browsers.\n";
3998 print "\n";
3999
4000 if ( lc($show_alternative_names) eq 'true' ) {
4001 $default_value = "y";
4002 } else {
4003 $default_value = "n";
4004 }
4005 print "Show alternative language names? (y/n) [$WHT$default_value$NRM]: $WHT";
4006 $show_alternative_names = <STDIN>;
4007 if ( ( $show_alternative_names =~ /^y\n/i ) || ( ( $show_alternative_names =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
4008 $show_alternative_names = 'true';
4009 } else {
4010 $show_alternative_names = 'false';
4011 }
4012 return $show_alternative_names;
4013 }
4014
4015 # Aggressive decoding
4016 sub commandA4 {
4017 print "Enable this option if you want to use CPU and memory intensive decoding\n";
4018 print "functions. This option allows reading multibyte charset, that are used\n";
4019 print "in Eastern Asia. SquirrelMail will try to use recode functions here,\n";
4020 print "even when you have disabled use of recode in Tweaks section.\n";
4021 print "\n";
4022
4023 if ( lc($aggressive_decoding) eq 'true' ) {
4024 $default_value = "y";
4025 } else {
4026 $default_value = "n";
4027 }
4028 print "Enable aggressive decoding? (y/n) [$WHT$default_value$NRM]: $WHT";
4029 $aggressive_decoding = <STDIN>;
4030 if ( ( $aggressive_decoding =~ /^y\n/i ) || ( ( $aggressive_decoding =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
4031 $aggressive_decoding = 'true';
4032 } else {
4033 $aggressive_decoding = 'false';
4034 }
4035 return $aggressive_decoding;
4036 }
4037
4038 # Lossy encoding
4039 sub commandA5 {
4040 print "Enable this option if you want to allow lossy charset encoding in message\n";
4041 print "composition pages. This option allows charset conversions when output\n";
4042 print "charset does not support all symbols used in original charset. Symbols\n";
4043 print "unsupported by output charset will be replaced with question marks.\n";
4044 print "\n";
4045
4046 if ( lc($lossy_encoding) eq 'true' ) {
4047 $default_value = "y";
4048 } else {
4049 $default_value = "n";
4050 }
4051 print "Enable lossy encoding? (y/n) [$WHT$default_value$NRM]: $WHT";
4052 $lossy_encoding = <STDIN>;
4053 if ( ( $lossy_encoding =~ /^y\n/i ) || ( ( $lossy_encoding =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
4054 $lossy_encoding = 'true';
4055 } else {
4056 $lossy_encoding = 'false';
4057 }
4058 return $lossy_encoding;
4059 }
4060
4061 # display html emails in iframe
4062 sub commandB2 {
4063 print "This option can enable html email rendering inside iframe.\n";
4064 print "Inline frames are used in order to provide sandbox environment";
4065 print "for html code included in html formated emails.";
4066 print "Option is experimental and might have glitches in some parts of code.";
4067 print "\n";
4068
4069 if ( lc($use_iframe) eq 'true' ) {
4070 $default_value = "y";
4071 } else {
4072 $default_value = "n";
4073 }
4074 print "Display html emails in iframe? (y/n) [$WHT$default_value$NRM]: $WHT";
4075 $use_iframe = <STDIN>;
4076 if ( ( $use_iframe =~ /^y\n/i ) || ( ( $use_iframe =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
4077 $use_iframe = 'true';
4078 } else {
4079 $use_iframe = 'false';
4080 }
4081 return $use_iframe;
4082 }
4083 # use icons
4084 sub commandB3 {
4085 print "Enabling this option will cause icons to be used instead of text\n";
4086 print "markers next to each message in mailbox lists that represent\n";
4087 print "new, read, flagged, and deleted messages, as well as those that\n";
4088 print "have been replied to and forwarded. Icons are also used next to\n";
4089 print "(un)expanded folders in the folder list (Oldway = false). These\n";
4090 print "icons are quite small, but will obviously be more of a resource\n";
4091 print "drain than text markers.\n";
4092 print "\n";
4093
4094 if ( lc($use_icons) eq 'true' ) {
4095 $default_value = "y";
4096 } else {
4097 $default_value = "n";
4098 }
4099 print "Use icons? (y/n) [$WHT$default_value$NRM]: $WHT";
4100 $use_icons = <STDIN>;
4101 if ( ( $use_icons =~ /^y\n/i ) || ( ( $use_icons =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
4102 $use_icons = 'true';
4103 } else {
4104 $use_icons = 'false';
4105 }
4106 return $use_icons;
4107 }
4108 # php recode
4109 sub commandB4 {
4110 print "Enable this option if you want to use php recode functions to read\n";
4111 print "emails written in charset that differs from the one that is set in\n";
4112 print "translation selected by user. Code is experimental, it might cause\n";
4113 print "errors, if email contains charset unsupported by recode or if your\n";
4114 print "php does not have recode support.\n";
4115 print "\n";
4116
4117 if ( lc($use_php_recode) eq 'true' ) {
4118 $default_value = "y";
4119 } else {
4120 $default_value = "n";
4121 }
4122 print "Use php recode functions? (y/n) [$WHT$default_value$NRM]: $WHT";
4123 $use_php_recode = <STDIN>;
4124 if ( ( $use_php_recode =~ /^y\n/i ) || ( ( $use_php_recode =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
4125 $use_php_recode = 'true';
4126 } else {
4127 $use_php_recode = 'false';
4128 }
4129 return $use_php_recode;
4130 }
4131 # php iconv
4132 sub commandB5 {
4133 print "Enable this option if you want to use php iconv functions to read\n";
4134 print "emails written in charset that differs from the one that is set in\n";
4135 print "translation selected by user. Code is experimental, it works only\n";
4136 print "with translations that use utf-8 charset. Code might cause errors,\n";
4137 print "if email contains charset unsupported by iconv or if your php does\n";
4138 print "not have iconv support.\n";
4139 print "\n";
4140
4141 if ( lc($use_php_iconv) eq 'true' ) {
4142 $default_value = "y";
4143 } else {
4144 $default_value = "n";
4145 }
4146 print "Use php iconv functions? (y/n) [$WHT$default_value$NRM]: $WHT";
4147 $use_php_iconv = <STDIN>;
4148 if ( ( $use_php_iconv =~ /^y\n/i ) || ( ( $use_php_iconv =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
4149 $use_php_iconv = 'true';
4150 } else {
4151 $use_php_iconv = 'false';
4152 }
4153 return $use_php_iconv;
4154 }
4155
4156 # configtest block
4157 sub commandB6 {
4158 print "Enable this option if you want to check SquirrelMail configuration\n";
4159 print "remotely with configtest.php script.\n";
4160 print "\n";
4161
4162 if ( lc($allow_remote_configtest) eq 'true' ) {
4163 $default_value = "y";
4164 } else {
4165 $default_value = "n";
4166 }
4167 print "Allow remote configuration tests? (y/n) [$WHT$default_value$NRM]: $WHT";
4168 $allow_remote_configtest = <STDIN>;
4169 if ( ( $allow_remote_configtest =~ /^y\n/i ) || ( ( $allow_remote_configtest =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
4170 $allow_remote_configtest = 'true';
4171 } else {
4172 $allow_remote_configtest = 'false';
4173 }
4174 return $allow_remote_configtest;
4175 }
4176
4177 # Default Icon theme
4178 sub commandB7 {
4179 print "You may change the path to the default icon theme to be used, if icons\n";
4180 print "have been enabled. This theme will be used when an icon cannot be\n";
4181 print "found in the current theme, or when no icon theme is specified. If\n";
4182 print "left blank, and icons are enabled, the default theme will be used\n";
4183 print "from images/themes/default/.\n";
4184 print "\n";
4185 print "To clear out an existing value, just type a space for the input.\n";
4186 print "\n";
4187 print "Please be aware of the following: \n";
4188 print " - Relative URLs are relative to the config dir\n";
4189 print " to use the icon themes directory, use ../images/themes/newtheme/\n";
4190 print " - The icon theme may be outside the SquirrelMail directory, but\n";
4191 print " it must be web accessible.\n";
4192 print "[$WHT$icon_theme_def$NRM]: $WHT";
4193 $new_icon_theme_def = <STDIN>;
4194
4195 if ( $new_icon_theme_def eq "\n" ) {
4196 $new_icon_theme_def = $icon_theme_def;
4197 } else {
4198 $new_icon_theme_def =~ s/[\r\n]//g;
4199 }
4200 $new_icon_theme_def =~ s/^\s*//;
4201 return $new_icon_theme_def;
4202 }
4203
4204 sub save_data {
4205 $tab = " ";
4206 if ( open( CF, ">config.php" ) ) {
4207 print CF "<?php\n";
4208 print CF "\n";
4209
4210 print CF "/**\n";
4211 print CF " * SquirrelMail Configuration File\n";
4212 print CF " * Created using the configure script, conf.pl\n";
4213 print CF " */\n";
4214 print CF "\n";
4215 print CF "global \$version;\n";
4216
4217 if ($print_config_version) {
4218 print CF "\$config_version = '$print_config_version';\n";
4219 }
4220 # integer
4221 print CF "\$config_use_color = $config_use_color;\n";
4222 print CF "\n";
4223
4224 # string
4225 print CF "\$org_name = \"$org_name\";\n";
4226 # string
4227 print CF "\$org_logo = " . &change_to_SM_path($org_logo) . ";\n";
4228 $org_logo_width |= 0;
4229 $org_logo_height |= 0;
4230 # string
4231 print CF "\$org_logo_width = '$org_logo_width';\n";
4232 # string
4233 print CF "\$org_logo_height = '$org_logo_height';\n";
4234 # string that can contain variables.
4235 print CF "\$org_title = \"$org_title\";\n";
4236 # string
4237 print CF "\$signout_page = " . &change_to_SM_path($signout_page) . ";\n";
4238 # string
4239 print CF "\$frame_top = '$frame_top';\n";
4240 print CF "\n";
4241
4242 print CF "\$provider_uri = '$provider_uri';\n";
4243 print CF "\n";
4244
4245 print CF "\$provider_name = '$provider_name';\n";
4246 print CF "\n";
4247
4248 # string that can contain variables
4249 print CF "\$motd = \"$motd\";\n";
4250 print CF "\n";
4251
4252 # string
4253 print CF "\$squirrelmail_default_language = '$squirrelmail_default_language';\n";
4254 # string
4255 print CF "\$default_charset = '$default_charset';\n";
4256 # boolean
4257 print CF "\$show_alternative_names = $show_alternative_names;\n";
4258 # boolean
4259 print CF "\$aggressive_decoding = $aggressive_decoding;\n";
4260 # boolean
4261 print CF "\$lossy_encoding = $lossy_encoding;\n";
4262 print CF "\n";
4263
4264 # string
4265 print CF "\$domain = '$domain';\n";
4266 # string
4267 print CF "\$imapServerAddress = '$imapServerAddress';\n";
4268 # integer
4269 print CF "\$imapPort = $imapPort;\n";
4270 # boolean
4271 print CF "\$useSendmail = $useSendmail;\n";
4272 # string
4273 print CF "\$smtpServerAddress = '$smtpServerAddress';\n";
4274 # integer
4275 print CF "\$smtpPort = $smtpPort;\n";
4276 # string
4277 print CF "\$sendmail_path = '$sendmail_path';\n";
4278 # string
4279 print CF "\$sendmail_args = '$sendmail_args';\n";
4280 # boolean
4281 # print CF "\$use_authenticated_smtp = $use_authenticated_smtp;\n";
4282 # boolean
4283 print CF "\$pop_before_smtp = $pop_before_smtp;\n";
4284 # string
4285 print CF "\$imap_server_type = '$imap_server_type';\n";
4286 # boolean
4287 print CF "\$invert_time = $invert_time;\n";
4288 # string
4289 print CF "\$optional_delimiter = '$optional_delimiter';\n";
4290 # string
4291 print CF "\$encode_header_key = '$encode_header_key';\n";
4292 print CF "\n";
4293
4294 # string
4295 print CF "\$default_folder_prefix = '$default_folder_prefix';\n";
4296 # string
4297 print CF "\$trash_folder = '$trash_folder';\n";
4298 # string
4299 print CF "\$sent_folder = '$sent_folder';\n";
4300 # string
4301 print CF "\$draft_folder = '$draft_folder';\n";
4302 # boolean
4303 print CF "\$default_move_to_trash = $default_move_to_trash;\n";
4304 # boolean
4305 print CF "\$default_move_to_sent = $default_move_to_sent;\n";
4306 # boolean
4307 print CF "\$default_save_as_draft = $default_save_as_draft;\n";
4308 # boolean
4309 print CF "\$show_prefix_option = $show_prefix_option;\n";
4310 # boolean
4311 print CF "\$list_special_folders_first = $list_special_folders_first;\n";
4312 # boolean
4313 print CF "\$use_special_folder_color = $use_special_folder_color;\n";
4314 # boolean
4315 print CF "\$auto_expunge = $auto_expunge;\n";
4316 # boolean
4317 print CF "\$default_sub_of_inbox = $default_sub_of_inbox;\n";
4318 # boolean
4319 print CF "\$show_contain_subfolders_option = $show_contain_subfolders_option;\n";
4320 # integer
4321 print CF "\$default_unseen_notify = $default_unseen_notify;\n";
4322 # integer
4323 print CF "\$default_unseen_type = $default_unseen_type;\n";
4324 # boolean
4325 print CF "\$auto_create_special = $auto_create_special;\n";
4326 # boolean
4327 print CF "\$delete_folder = $delete_folder;\n";
4328 # boolean
4329 print CF "\$noselect_fix_enable = $noselect_fix_enable;\n";
4330
4331 print CF "\n";
4332
4333 # string
4334 print CF "\$data_dir = " . &change_to_SM_path($data_dir) . ";\n";
4335 # string that can contain a variable
4336 print CF "\$attachment_dir = " . &change_to_SM_path($attachment_dir) . ";\n";
4337 # integer
4338 print CF "\$dir_hash_level = $dir_hash_level;\n";
4339 # string
4340 print CF "\$default_left_size = '$default_left_size';\n";
4341 # boolean
4342 print CF "\$force_username_lowercase = $force_username_lowercase;\n";
4343 # boolean
4344 print CF "\$default_use_priority = $default_use_priority;\n";
4345 # boolean
4346 print CF "\$hide_sm_attributions = $hide_sm_attributions;\n";
4347 # boolean
4348 print CF "\$default_use_mdn = $default_use_mdn;\n";
4349 # boolean
4350 print CF "\$edit_identity = $edit_identity;\n";
4351 # boolean
4352 print CF "\$edit_name = $edit_name;\n";
4353 # boolean
4354 print CF "\$hide_auth_header = $hide_auth_header;\n";
4355 # boolean
4356 print CF "\$disable_thread_sort = $disable_thread_sort;\n";
4357 # boolean
4358 print CF "\$disable_server_sort = $disable_server_sort;\n";
4359 # boolean
4360 print CF "\$allow_charset_search = $allow_charset_search;\n";
4361 # integer
4362 print CF "\$allow_advanced_search = $allow_advanced_search;\n";
4363 print CF "\n";
4364 # integer
4365 print CF "\$time_zone_type = $time_zone_type;\n";
4366 print CF "\n";
4367 # string
4368 print CF "\$config_location_base = '$config_location_base';\n";
4369 print CF "\n";
4370
4371 # all plugins are strings
4372 for ( $ct = 0 ; $ct <= $#plugins ; $ct++ ) {
4373 print CF "\$plugins[] = '$plugins[$ct]';\n";
4374 }
4375 print CF "\n";
4376
4377 # strings
4378 if ( $user_theme_default eq '' ) { $user_theme_default = '0'; }
4379 print CF "\$user_theme_default = $user_theme_default;\n";
4380
4381 for ( $count = 0 ; $count <= $#user_theme_name ; $count++ ) {
4382 if ($user_theme_path[$count] eq 'none') {
4383 $path = '\'none\'';
4384 } else {
4385 $path = &change_to_SM_path($user_theme_path[$count]);
4386 }
4387 print CF "\$user_themes[$count]['PATH'] = " . $path . ";\n";
4388 # escape theme name so it can contain single quotes.
4389 $esc_name = $user_theme_name[$count];
4390 $esc_name =~ s/\\/\\\\/g;
4391 $esc_name =~ s/'/\\'/g;
4392 print CF "\$user_themes[$count]['NAME'] = '$esc_name';\n";
4393 }
4394 print CF "\n";
4395
4396 if ( $icon_theme_def eq '' ) { $icon_theme_def = '0'; }
4397 print CF "\$icon_theme_def = $icon_theme_def;\n";
4398 if ( $icon_theme_fallback eq '' ) { $icon_theme_fallback = '0'; }
4399 print CF "\$icon_theme_fallback = $icon_theme_fallback;\n";
4400
4401 for ( $count = 0 ; $count <= $#icon_theme_name ; $count++ ) {
4402 $path = $icon_theme_path[$count];
4403 if ($path eq 'none' || $path eq 'template') {
4404 $path = "'".$path."'";
4405 } else {
4406 $path = &change_to_SM_path($icon_theme_path[$count]);
4407 }
4408 print CF "\$icon_themes[$count]['PATH'] = " . $path . ";\n";
4409 # escape theme name so it can contain single quotes.
4410 $esc_name = $icon_theme_name[$count];
4411 $esc_name =~ s/\\/\\\\/g;
4412 $esc_name =~ s/'/\\'/g;
4413 print CF "\$icon_themes[$count]['NAME'] = '$esc_name';\n";
4414 }
4415 print CF "\n";
4416
4417 if ( $templateset_default eq '' ) { $templateset_default = 'default'; }
4418 print CF "\$templateset_default = '$templateset_default';\n";
4419
4420 if ( $templateset_fallback eq '' ) { $templateset_fallback = 'default'; }
4421 print CF "\$templateset_fallback = '$templateset_fallback';\n";
4422
4423 for ( $count = 0 ; $count <= $#templateset_name ; $count++ ) {
4424 print CF "\$aTemplateSet[$count]['ID'] = '" . $templateset_id[$count] . "';\n";
4425 # escape theme name so it can contain single quotes.
4426 $esc_name = $templateset_name[$count];
4427 $esc_name =~ s/\\/\\\\/g;
4428 $esc_name =~ s/'/\\'/g;
4429 print CF "\$aTemplateSet[$count]['NAME'] = '$esc_name';\n";
4430 }
4431 print CF "\n";
4432
4433
4434 # integer
4435 print CF "\$default_fontsize = '$default_fontsize';\n";
4436 # string
4437 print CF "\$default_fontset = '$default_fontset';\n";
4438 print CF "\n";
4439 # assoc. array (maybe initial value should be set somewhere else)
4440 print CF '$fontsets = array();'."\n";
4441 while (($fontset_name, $fontset_value) = each(%fontsets)) {
4442 print CF "\$fontsets\['$fontset_name'\] = '$fontset_value';\n";
4443 }
4444 print CF "\n";
4445
4446 ## Address books
4447 # boolean
4448 print CF "\$default_use_javascript_addr_book = $default_use_javascript_addr_book;\n";
4449 for ( $count = 0 ; $count <= $#ldap_host ; $count++ ) {
4450 print CF "\$ldap_server[$count] = array(\n";
4451 # string
4452 print CF " 'host' => '$ldap_host[$count]',\n";
4453 # string
4454 print CF " 'base' => '$ldap_base[$count]'";
4455 if ( $ldap_name[$count] ) {
4456 print CF ",\n";
4457 # string
4458 print CF " 'name' => '$ldap_name[$count]'";
4459 }
4460 if ( $ldap_port[$count] ) {
4461 print CF ",\n";
4462 # integer
4463 print CF " 'port' => $ldap_port[$count]";
4464 }
4465 if ( $ldap_charset[$count] ) {
4466 print CF ",\n";
4467 # string
4468 print CF " 'charset' => '$ldap_charset[$count]'";
4469 }
4470 if ( $ldap_maxrows[$count] ) {
4471 print CF ",\n";
4472 # integer
4473 print CF " 'maxrows' => $ldap_maxrows[$count]";
4474 }
4475 # string
4476 if ( $ldap_filter[$count] ) {
4477 print CF ",\n";
4478 print CF " 'filter' => '$ldap_filter[$count]'";
4479 }
4480 if ( $ldap_binddn[$count] ) {
4481 print CF ",\n";
4482 # string
4483 print CF " 'binddn' => '$ldap_binddn[$count]'";
4484 if ( $ldap_bindpw[$count] ) {
4485 print CF ",\n";
4486 # string
4487 print CF " 'bindpw' => '$ldap_bindpw[$count]'";
4488 }
4489 }
4490 if ( $ldap_protocol[$count] ) {
4491 print CF ",\n";
4492 # integer
4493 print CF " 'protocol' => $ldap_protocol[$count]";
4494 }
4495 if ( $ldap_limit_scope[$count] ) {
4496 print CF ",\n";
4497 # boolean
4498 print CF " 'limit_scope' => $ldap_limit_scope[$count]";
4499 }
4500 if ( $ldap_listing[$count] ) {
4501 print CF ",\n";
4502 # boolean
4503 print CF " 'listing' => $ldap_listing[$count]";
4504 }
4505 if ( $ldap_writeable[$count] ) {
4506 print CF ",\n";
4507 # boolean
4508 print CF " 'writeable' => $ldap_writeable[$count]";
4509 }
4510 if ( $ldap_search_tree[$count] ) {
4511 print CF ",\n";
4512 # integer
4513 print CF " 'search_tree' => $ldap_search_tree[$count]";
4514 }
4515 if ( $ldap_listing[$count] ) {
4516 print CF ",\n";
4517 # boolean
4518 print CF " 'starttls' => $ldap_starttls[$count]";
4519 }
4520 print CF "\n";
4521 print CF ");\n";
4522 print CF "\n";
4523 }
4524
4525 # string
4526 print CF "\$addrbook_dsn = '$addrbook_dsn';\n";
4527 # string
4528 print CF "\$addrbook_table = '$addrbook_table';\n\n";
4529 # string
4530 print CF "\$prefs_dsn = '$prefs_dsn';\n";
4531 # string
4532 print CF "\$prefs_table = '$prefs_table';\n";
4533 # string
4534 print CF "\$prefs_user_field = '$prefs_user_field';\n";
4535 # integer
4536 print CF "\$prefs_user_size = $prefs_user_size;\n";
4537 # string
4538 print CF "\$prefs_key_field = '$prefs_key_field';\n";
4539 # integer
4540 print CF "\$prefs_key_size = $prefs_key_size;\n";
4541 # string
4542 print CF "\$prefs_val_field = '$prefs_val_field';\n";
4543 # integer
4544 print CF "\$prefs_val_size = $prefs_val_size;\n\n";
4545 # string
4546 print CF "\$addrbook_global_dsn = '$addrbook_global_dsn';\n";
4547 # string
4548 print CF "\$addrbook_global_table = '$addrbook_global_table';\n";
4549 # boolean
4550 print CF "\$addrbook_global_writeable = $addrbook_global_writeable;\n";
4551 # boolean
4552 print CF "\$addrbook_global_listing = $addrbook_global_listing;\n\n";
4553 # string
4554 print CF "\$abook_global_file = '$abook_global_file';\n";
4555 # boolean
4556 print CF "\$abook_global_file_writeable = $abook_global_file_writeable;\n\n";
4557 # boolean
4558 print CF "\$abook_global_file_listing = $abook_global_file_listing;\n\n";
4559 # integer
4560 print CF "\$abook_file_line_length = $abook_file_line_length;\n\n";
4561 # boolean
4562 print CF "\$no_list_for_subscribe = $no_list_for_subscribe;\n";
4563
4564 # string
4565 print CF "\$smtp_auth_mech = '$smtp_auth_mech';\n";
4566 print CF "\$smtp_sitewide_user = '". quote_single($smtp_sitewide_user) ."';\n";
4567 print CF "\$smtp_sitewide_pass = '". quote_single($smtp_sitewide_pass) ."';\n";
4568 # string
4569 print CF "\$imap_auth_mech = '$imap_auth_mech';\n";
4570 # boolean
4571 print CF "\$use_imap_tls = $use_imap_tls;\n";
4572 # boolean
4573 print CF "\$use_smtp_tls = $use_smtp_tls;\n";
4574 # string
4575 print CF "\$session_name = '$session_name';\n";
4576
4577 print CF "\n";
4578
4579 # boolean
4580 print CF "\$use_iframe = $use_iframe;\n";
4581 print CF "\n";
4582 # boolean
4583 print CF "\$use_icons = $use_icons;\n";
4584 print CF "\n";
4585 # boolean
4586 print CF "\$use_php_recode = $use_php_recode;\n";
4587 print CF "\n";
4588 # boolean
4589 print CF "\$use_php_iconv = $use_php_iconv;\n";
4590 print CF "\n";
4591 # boolean
4592 print CF "\$allow_remote_configtest = $allow_remote_configtest;\n";
4593 print CF "\n";
4594
4595 close CF;
4596
4597 print "Data saved in config.php\n";
4598
4599 build_plugin_hook_array();
4600
4601 } else {
4602 print "Error saving config.php: $!\n";
4603 }
4604 }
4605
4606 sub set_defaults {
4607 clear_screen();
4608 print $WHT. "SquirrelMail Configuration : " . $NRM;
4609 if ( $config == 1 ) { print "Read: config.php"; }
4610 elsif ( $config == 2 ) { print "Read: config_default.php"; }
4611 print "\n";
4612 print "---------------------------------------------------------\n";
4613
4614 print "While we have been building SquirrelMail, we have discovered some\n";
4615 print "preferences that work better with some servers that don't work so\n";
4616 print "well with others. If you select your IMAP server, this option will\n";
4617 print "set some pre-defined settings for that server.\n";
4618 print "\n";
4619 print "Please note that you will still need to go through and make sure\n";
4620 print "everything is correct. This does not change everything. There are\n";
4621 print "only a few settings that this will change.\n";
4622 print "\n";
4623
4624 $continue = 0;
4625 while ( $continue != 1 ) {
4626 print "Please select your IMAP server:\n";
4627 print " bincimap = Binc IMAP server\n";
4628 print " courier = Courier IMAP server\n";
4629 print " cyrus = Cyrus IMAP server\n";
4630 print " dovecot = Dovecot Secure IMAP server\n";
4631 print " exchange = Microsoft Exchange IMAP server\n";
4632 print " hmailserver = hMailServer\n";
4633 print " macosx = Mac OS X Mailserver\n";
4634 print " mercury32 = Mercury/32\n";
4635 print " uw = University of Washington's IMAP server\n";
4636 print "\n";
4637 print " quit = Do not change anything\n";
4638 print "\n";
4639 print "Command >> ";
4640 $server = <STDIN>;
4641 $server =~ s/[\r\n]//g;
4642
4643 # variable is used to display additional messages.
4644 $message = "";
4645
4646 print "\n";
4647 if ( $server eq "cyrus" ) {
4648 $imap_server_type = "cyrus";
4649 $default_folder_prefix = "";
4650 $trash_folder = "INBOX.Trash";
4651 $sent_folder = "INBOX.Sent";
4652 $draft_folder = "INBOX.Drafts";
4653 $show_prefix_option = false;
4654 $default_sub_of_inbox = true;
4655 $show_contain_subfolders_option = false;
4656 $optional_delimiter = ".";
4657 $disp_default_folder_prefix = "<none>";
4658 $force_username_lowercase = false;
4659
4660 # Delimiter might differ if unixhierarchysep is set to yes.
4661 $message = "\nIf you have enabled unixhierarchysep, you must change delimiter and special folder names.\n";
4662
4663 $continue = 1;
4664 } elsif ( $server eq "uw" ) {
4665 $imap_server_type = "uw";
4666 $default_folder_prefix = "mail/";
4667 $trash_folder = "Trash";
4668 $sent_folder = "Sent";
4669 $draft_folder = "Drafts";
4670 $show_prefix_option = true;
4671 $default_sub_of_inbox = false;
4672 $show_contain_subfolders_option = true;
4673 $optional_delimiter = "/";
4674 $disp_default_folder_prefix = $default_folder_prefix;
4675 $delete_folder = true;
4676 $force_username_lowercase = true;
4677
4678 $continue = 1;
4679 } elsif ( $server eq "exchange" ) {
4680 $imap_server_type = "exchange";
4681 $default_folder_prefix = "";
4682 $default_sub_of_inbox = true;
4683 $trash_folder = "INBOX/Deleted Items";
4684 $sent_folder = "INBOX/Sent Items";
4685 $drafts_folder = "INBOX/Drafts";
4686 $show_prefix_option = false;
4687 $show_contain_subfolders_option = false;
4688 $optional_delimiter = "detect";
4689 $disp_default_folder_prefix = "<none>";
4690 $force_username_lowercase = true;
4691
4692 $continue = 1;
4693 } elsif ( $server eq "courier" ) {
4694 $imap_server_type = "courier";
4695 $default_folder_prefix = "INBOX.";
4696 $trash_folder = "Trash";
4697 $sent_folder = "Sent";
4698 $draft_folder = "Drafts";
4699 $show_prefix_option = false;
4700 $default_sub_of_inbox = false;
4701 $show_contain_subfolders_option = false;
4702 $optional_delimiter = ".";
4703 $disp_default_folder_prefix = $default_folder_prefix;
4704 $delete_folder = true;
4705 $force_username_lowercase = false;
4706
4707 $continue = 1;
4708 } elsif ( $server eq "macosx" ) {
4709 $imap_server_type = "macosx";
4710 $default_folder_prefix = "INBOX/";
4711 $trash_folder = "Trash";
4712 $sent_folder = "Sent";
4713 $draft_folder = "Drafts";
4714 $show_prefix_option = false;
4715 $default_sub_of_inbox = true;
4716 $show_contain_subfolders_option = false;
4717 $optional_delimiter = "detect";
4718 $allow_charset_search = false;
4719 $disp_default_folder_prefix = $default_folder_prefix;
4720
4721 $continue = 1;
4722 } elsif ( $server eq "hmailserver" ) {
4723 $imap_server_type = "hmailserver";
4724 $default_folder_prefix = "";
4725 $trash_folder = "INBOX.Trash";
4726 $sent_folder = "INBOX.Sent";
4727 $draft_folder = "INBOX.Drafts";
4728 $show_prefix_option = false;
4729 $default_sub_of_inbox = true;
4730 $show_contain_subfolders_option = false;
4731 $optional_delimiter = "detect";
4732 $allow_charset_search = false;
4733 $disp_default_folder_prefix = $default_folder_prefix;
4734 $delete_folder = false;
4735 $force_username_lowercase = false;
4736
4737 $continue = 1;
4738 } elsif ( $server eq "mercury32" ) {
4739 $imap_server_type = "mercury32";
4740 $default_folder_prefix = "";
4741 $trash_folder = "Trash";
4742 $sent_folder = "Sent";
4743 $draft_folder = "Drafts";
4744 $show_prefix_option = false;
4745 $default_sub_of_inbox = true;
4746 $show_contain_subfolders_option = true;
4747 $optional_delimiter = "detect";
4748 $delete_folder = true;
4749 $force_username_lowercase = true;
4750
4751 $continue = 1;
4752 } elsif ( $server eq "dovecot" ) {
4753 $imap_server_type = "dovecot";
4754 $default_folder_prefix = "";
4755 $trash_folder = "Trash";
4756 $sent_folder = "Sent";
4757 $draft_folder = "Drafts";
4758 $show_prefix_option = false;
4759 $default_sub_of_inbox = false;
4760 $show_contain_subfolders_option = false;
4761 $delete_folder = false;
4762 $force_username_lowercase = true;
4763 $optional_delimiter = "detect";
4764 $disp_default_folder_prefix = "<none>";
4765
4766 $continue = 1;
4767 } elsif ( $server eq "bincimap" ) {
4768 $imap_server_type = "bincimap";
4769 $default_folder_prefix = "INBOX/";
4770 $trash_folder = "Trash";
4771 $sent_folder = "Sent";
4772 $draft_folder = "Drafts";
4773 $show_prefix_option = false;
4774 $default_sub_of_inbox = false;
4775 $show_contain_subfolders_option = false;
4776 $delete_folder = true;
4777 $force_username_lowercase = false;
4778 $optional_delimiter = "detect";
4779 $disp_default_folder_prefix = $default_folder_prefix;
4780
4781 # Default folder prefix depends on used depot.
4782 $message = "\nIf you use IMAPdir depot, you must set default folder prefix to empty string.\n";
4783
4784 $continue = 1;
4785 } elsif ( $server eq "quit" ) {
4786 $continue = 1;
4787 } else {
4788 $disp_default_folder_prefix = $default_folder_prefix;
4789 print "Unrecognized server: $server\n";
4790 print "\n";
4791 }
4792
4793 print " imap_server_type = $imap_server_type\n";
4794 print " default_folder_prefix = $disp_default_folder_prefix\n";
4795 print " trash_folder = $trash_folder\n";
4796 print " sent_folder = $sent_folder\n";
4797 print " draft_folder = $draft_folder\n";
4798 print " show_prefix_option = $show_prefix_option\n";
4799 print " default_sub_of_inbox = $default_sub_of_inbox\n";
4800 print "show_contain_subfolders_option = $show_contain_subfolders_option\n";
4801 print " optional_delimiter = $optional_delimiter\n";
4802 print " delete_folder = $delete_folder\n";
4803 print " force_username_lowercase = $force_username_lowercase\n";
4804
4805 print "$message";
4806 }
4807 print "\nPress enter to continue...";
4808 $tmp = <STDIN>;
4809 }
4810
4811 # This subroutine corrects relative paths to ensure they
4812 # will work within the SM space. If the path falls within
4813 # the SM directory tree, the SM_PATH variable will be
4814 # prepended to the path, if not, then the path will be
4815 # converted to an absolute path, e.g.
4816 # '../images/logo.gif' --> SM_PATH . 'images/logo.gif'
4817 # '../../someplace/data' --> '/absolute/path/someplace/data'
4818 # 'images/logo.gif' --> SM_PATH . 'config/images/logo.gif'
4819 # '/absolute/path/logo.gif' --> '/absolute/path/logo.gif'
4820 # 'http://whatever/' --> 'http://whatever'
4821 # $some_var/path --> "$some_var/path"
4822 sub change_to_SM_path() {
4823 my ($old_path) = @_;
4824 my $new_path = '';
4825 my @rel_path;
4826 my @abs_path;
4827 my $subdir;
4828
4829 # If the path is absolute, don't bother.
4830 return "\'" . $old_path . "\'" if ( $old_path eq '');
4831 return "\'" . $old_path . "\'" if ( $old_path =~ /^(\/|http)/ );
4832 return "\'" . $old_path . "\'" if ( $old_path =~ /^\w:\// );
4833 return $old_path if ( $old_path =~ /^\'(\/|http)/ );
4834 return $old_path if ( $old_path =~ /^\'\w:\// );
4835 return $old_path if ( $old_path =~ /^SM_PATH/);
4836
4837 if ( $old_path =~ /^\$/ ) {
4838 # check if it's a single var, or a $var/path combination
4839 # if it's $var/path, enclose in ""
4840 if ( $old_path =~ /\// ) {
4841 return '"'.$old_path.'"';
4842 }
4843 return $old_path;
4844 }
4845
4846 # Remove remaining '
4847 $old_path =~ s/\'//g;
4848
4849 # For relative paths, split on '../'
4850 @rel_path = split(/\.\.\//, $old_path);
4851
4852 if ( $#rel_path > 1 ) {
4853 # more than two levels away. Make it absolute.
4854 @abs_path = split(/\//, $dir);
4855
4856 # Lop off the relative pieces of the absolute path..
4857 for ( $i = 0; $i <= $#rel_path; $i++ ) {
4858 pop @abs_path;
4859 shift @rel_path;
4860 }
4861 push @abs_path, @rel_path;
4862 $new_path = "\'" . join('/', @abs_path) . "\'";
4863 } elsif ( $#rel_path > 0 ) {
4864 # it's within the SM tree, prepend SM_PATH
4865 $new_path = $old_path;
4866 $new_path =~ s/^\.\.\//SM_PATH . \'/;
4867 $new_path .= "\'";
4868 } else {
4869 # Last, it's a relative path without any leading '.'
4870 # Prepend SM_PATH and config, since the paths are
4871 # relative to the config directory
4872 $new_path = "SM_PATH . \'config/" . $old_path . "\'";
4873 }
4874 return $new_path;
4875 }
4876
4877
4878 # Change SM_PATH to admin-friendly version, e.g.:
4879 # SM_PATH . 'images/logo.gif' --> '../images/logo.gif'
4880 # SM_PATH . 'config/some.php' --> 'some.php'
4881 # '/absolute/path/logo.gif' --> '/absolute/path/logo.gif'
4882 # 'http://whatever/' --> 'http://whatever'
4883 sub change_to_rel_path() {
4884 my ($old_path) = @_;
4885 my $new_path = $old_path;
4886
4887 if ( $old_path =~ /^SM_PATH/ ) {
4888 # FIXME: the following replacement loses the opening quote mark!
4889 $new_path =~ s/^SM_PATH . \'/\.\.\//;
4890 $new_path =~ s/\.\.\/config\///;
4891 }
4892
4893 return $new_path;
4894 }
4895
4896 # Attempts to auto-detect if a specific auth mechanism is supported.
4897 # Called by 'command112a' and 'command112b'
4898 # ARGS: service-name (IMAP or SMTP), host:port, mech-name (ie. CRAM-MD5)
4899 sub detect_auth_support {
4900 # Try loading IO::Socket
4901 unless (eval("use IO::Socket; 1")) {
4902 print "Perl IO::Socket module is not available.";
4903 return undef;
4904 }
4905 # Misc setup
4906 my $service = shift;
4907 my $host = shift;
4908 my $mech = shift;
4909 # Sanity checks
4910 if ((!defined($service)) or (!defined($host)) or (!defined($mech))) {
4911 # Error - wrong # of args
4912 print "BAD ARGS!\n";
4913 return undef;
4914 }
4915
4916 if ($service eq 'SMTP') {
4917 $cmd = "AUTH $mech\r\n";
4918 $logout = "QUIT\r\n";
4919 } elsif ($service eq 'IMAP') {
4920 $cmd = "A01 AUTHENTICATE $mech\n";
4921 $logout = "C01 LOGOUT\n";
4922 } else {
4923 # unknown service - whoops.
4924 return undef;
4925 }
4926
4927 # Get this show on the road
4928 my $sock=IO::Socket::INET->new($host);
4929 if (!defined($sock)) {
4930 # Connect failed
4931 return undef;
4932 }
4933 my $discard = <$sock>; # Server greeting/banner - who cares..
4934
4935 if ($service eq 'SMTP') {
4936 # Say hello first..
4937 print $sock "HELO $domain\r\n";
4938 $discard = <$sock>; # Yeah yeah, you're happy to see me..
4939 }
4940 print $sock $cmd;
4941
4942 my $response = <$sock>;
4943 chomp($response);
4944 if (!defined($response)) {
4945 return undef;
4946 }
4947
4948 # So at this point, we have a response, and it is (hopefully) valid.
4949 if ($service eq 'SMTP') {
4950 if (($response =~ /^535/) or ($response =~/^502/)) {
4951 # Not supported
4952 print $sock $logout;
4953 close $sock;
4954 return 'NO';
4955 } elsif ($response =~ /^503/) {
4956 #Something went wrong
4957 return undef;
4958 }
4959 } elsif ($service eq 'IMAP') {
4960 if ($response =~ /^A01/) {
4961 # Not supported
4962 print $sock $logout;
4963 close $sock;
4964 return 'NO';
4965 }
4966 } else {
4967 # Unknown service - this shouldn't be able to happen.
4968 close $sock;
4969 return undef;
4970 }
4971
4972 # If it gets here, the mech is supported
4973 print $sock "*\n"; # Attempt to cancel authentication
4974 print $sock $logout; # Try to log out, but we don't really care if this fails
4975 close $sock;
4976 return 'YES';
4977 }
4978
4979 # trims whitespace
4980 # Example code from O'Reilly Perl Cookbook
4981 sub trim {
4982 my @out = @_;
4983 for (@out) {
4984 s/^\s+//;
4985 s/\s+$//;
4986 }
4987 return wantarray ? @out : $out[0];
4988 }
4989
4990 sub clear_screen() {
4991 if ( $^O =~ /^mswin/i) {
4992 system "cls";
4993 } else {
4994 system "clear";
4995 }
4996 }
4997
4998 # checks IMAP mailbox name. Refuses to accept 8bit folders
4999 # returns 0 (folder name is not correct) or 1 (folder name is correct)
5000 sub check_imap_folder($) {
5001 my $folder_name = shift(@_);
5002
5003 if ($folder_name =~ /[\x80-\xFFFF]/) {
5004 print "Folder name contains 8bit characters. Configuration utility requires\n";
5005 print "UTF7-IMAP encoded folder names.\n";
5006 print "Press enter to continue...";
5007 my $tmp = <STDIN>;
5008 return 0;
5009 } elsif ($folder_name =~ /[&\*\%]/) {
5010 # check for ampersand and list-wildcards
5011 print "Folder name contains special UTF7-IMAP characters.\n";
5012 print "Are you sure that folder name is correct? (yN): ";
5013 my $tmp = <STDIN>;
5014 $tmp = lc(trim($tmp));
5015 if ($tmp =~ /^y$/) {
5016 return 1;
5017 } else {
5018 return 0;
5019 }
5020 } else {
5021 return 1;
5022 }
5023 }
5024
5025 # quotes string written in single quotes
5026 sub quote_single($) {
5027 my $string = shift(@_);
5028 $string =~ s/\'/\\'/g;
5029 return $string;
5030 }
5031
5032 # parses the setup.php files for all activated plugins and
5033 # builds static plugin hooks array so we don't have to load
5034 # ALL plugins are runtime and build the hook array on every
5035 # page request
5036 #
5037 # hook array is saved in config/plugin_hooks.php
5038 #
5039 # Note the $verbose variable at the top of this routine
5040 # can be set to zero to quiet it down.
5041 #
5042 # NOTE/FIXME: we aren't necessarily interested in writing
5043 # a full-blown PHP parsing engine, so plenty
5044 # of assumptions are included herein about the
5045 # coding of the plugin setup files, and things
5046 # like commented out curly braces or other
5047 # such oddities can break this in a bad way.
5048 #
5049 sub build_plugin_hook_array() {
5050
5051 $verbose = 1;
5052
5053 if ($verbose) {
5054 print "\n\n";
5055 }
5056
5057 if ( open( HOOKFILE, ">plugin_hooks.php" ) ) {
5058 print HOOKFILE "<?php\n";
5059 print HOOKFILE "\n";
5060
5061 print HOOKFILE "/**\n";
5062 print HOOKFILE " * SquirrelMail Plugin Hook Registration File\n";
5063 print HOOKFILE " * Auto-generated using the configure script, conf.pl\n";
5064 print HOOKFILE " */\n";
5065 print HOOKFILE "\n";
5066 print HOOKFILE "global \$squirrelmail_plugin_hooks;\n";
5067 print HOOKFILE "\n";
5068
5069 PLUGIN: for ( $ct = 0 ; $ct <= $#plugins ; $ct++ ) {
5070
5071 if ($verbose) {
5072 print "Activating plugin \"" . $plugins[$ct] . "\"...\n";
5073 }
5074
5075 $setup_file = '../plugins/' . $plugins[$ct] . '/setup.php';
5076 if ( -e "$setup_file" ) {
5077 # Make sure that file is readable
5078 if (! -r "$setup_file") {
5079 print "\n";
5080 print "WARNING:\n";
5081 print "The file \"$setup_file\" was found, but you don't\n";
5082 print "have rights to read it. The plugin \"";
5083 print $plugins[$ct] . "\" will not be activated until you fix this.\n";
5084 print "\nPress enter to continue";
5085 $ctu = <STDIN>;
5086 print "\n";
5087 next;
5088 }
5089 open( FILE, "$setup_file" );
5090 $inside_init_fxn = 0;
5091 $brace_count = 0;
5092 while ( $line = <FILE> ) {
5093
5094 # throw away lines until we get to target function
5095 #
5096 if (!$inside_init_fxn
5097 && $line !~ /^\s*function\s*squirrelmail_plugin_init_/i) {
5098 next;
5099 }
5100 $inside_init_fxn = 1;
5101
5102
5103 # throw away lines that are not exactly one "brace set" deep
5104 #
5105 if ($brace_count > 1) {
5106 next;
5107 }
5108
5109
5110 # count open braces
5111 #
5112 if ($line =~ /{/) {
5113 $brace_count++;
5114 }
5115
5116
5117 # count close braces
5118 #
5119 if ($line =~ /}/) {
5120 $brace_count--;
5121
5122 # leaving <plugin>_init() function...
5123 if ($brace_count == 0) {
5124 close(FILE);
5125 next PLUGIN;
5126 }
5127
5128 }
5129
5130
5131 # also not interested in lines that are not
5132 # hook registration points
5133 #
5134 if ($line !~ /^\s*\$squirrelmail_plugin_hooks/i) {
5135 next;
5136 }
5137
5138
5139 # if $line does not have an ending semicolon,
5140 # we need to recursively read in subsequent
5141 # lines until we find one
5142 while ( $line !~ /;\s*$/ ) {
5143 $line =~ s/[\n\r]\s*$//;
5144 $line .= <FILE>;
5145 }
5146
5147
5148 $line =~ s/^\s+//;
5149 $line =~ s/^\$//;
5150 $var = $line;
5151
5152 $var =~ s/=/EQUALS/;
5153 if ( $var =~ /^([a-z])/i ) {
5154 @options = split ( /\s*EQUALS\s*/, $var );
5155 $options[1] =~ s/[\n\r]//g;
5156 $options[1] =~ s/[\'\"];\s*$//;
5157 $options[1] =~ s/;$//;
5158 $options[1] =~ s/^[\'\"]//;
5159 # de-escape escaped strings
5160 $options[1] =~ s/\\'/'/g;
5161 $options[1] =~ s/\\\\/\\/g;
5162
5163 if ( $options[0] =~ /^squirrelmail_plugin_hooks\s*\[\s*['"]([a-z0-9._-]+)['"]\s*\]\s*\[\s*['"]([0-9a-z._-]+)['"]\s*\]/i ) {
5164 $hook_name = $1;
5165 $hooked_plugin_name = $2;
5166 # Note: if we wanted to stop plugins from registering
5167 # a *different* plugin on a hook, we could catch
5168 # it here, however this has actually proven to be
5169 # a useful *feature*
5170 #if ($hooked_plugin_name ne $plugins[$ct]) {
5171 # print "...plugin is tring to hook in under different name...\n";
5172 #}
5173
5174 #FIXME: do we want to count the number of hook registrations for each plugin and warn if a plugin doesn't have any?
5175 # hook registration has been found!
5176 if ($verbose) {
5177 if ($hooked_plugin_name ne $plugins[$ct]) {
5178 print " registering on hook \"" . $hook_name . "\" (as \"$hooked_plugin_name\" plugin)\n";
5179 } else {
5180 print " registering on hook \"" . $hook_name . "\"\n";
5181 }
5182 }
5183 $line =~ s/ {2,}/ /g;
5184 $line =~ s/=/\n =/;
5185 print HOOKFILE "\$$line";
5186
5187 }
5188
5189 }
5190
5191 }
5192 close(FILE);
5193
5194 } else {
5195 print "\n";
5196 print "WARNING:\n";
5197 print "The file \"$setup_file\" was not found.\n";
5198 print "The plugin \"" . $plugins[$ct];
5199 print "\" will not be activated until you fix this.\n";
5200 print "\nPress enter to continue";
5201 $ctu = <STDIN>;
5202 print "\n";
5203 next;
5204 }
5205
5206 }
5207
5208 print HOOKFILE "\n\n";
5209 close(HOOKFILE);
5210 # if ($verbose) {
5211 print "\nDone activating plugins; registration data saved in plugin_hooks.php\n\n";
5212 # }
5213
5214 } else {
5215
5216 print "\n";
5217 print "WARNING:\n";
5218 print "The file \"plugin_hooks.php\" was not able to be written to.\n";
5219 print "No plugins will be activated until you fix this.\n";
5220 print "\nPress enter to continue";
5221 $ctu = <STDIN>;
5222 print "\n";
5223
5224 }
5225
5226 }
5227