Add two new command line options in conf.pl: --update-plugins or -u updates plugin_ho...
[squirrelmail.git] / config / conf.pl
CommitLineData
23afd0bd 1#!/usr/bin/env perl
bbd30ac8 2# conf.pl
bbd30ac8 3#
47ccfad4 4# Copyright (c) 1999-2006 The SquirrelMail Project Team
6614128e 5# Licensed under the GNU GPL. For full terms see COPYING.
6#
7# A simple configure script to configure SquirrelMail
245a6892 8#
9# $Id$
598294a7 10############################################################
3641f36d 11$conf_pl_version = "1.5.0";
bbd30ac8 12
38b69acb 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############################################################
8bd9e0dd 19my $dir;
eaace00e 20if ( eval q{require "File/Basename.pm"} ) {
8bd9e0dd 21 $dir = File::Basename::dirname($0);
38b69acb 22 chdir($dir);
23}
24
598294a7 25############################################################
d595e32e 26# Some people try to run this as a CGI. That's wrong!
598294a7 27############################################################
eaace00e 28if ( 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 }
d595e32e 35
8bd9e0dd 36############################################################
37# If we got here, use Cwd to get the full directory path
38# (the Basename stuff above will sometimes return '.' as
598294a7 39# the base directory, which is not helpful here).
8bd9e0dd 40############################################################
41use Cwd;
42$dir = cwd();
43
598294a7 44
45############################################################
bbd30ac8 46# First, lets read in the data already in there...
598294a7 47############################################################
eaace00e 48if ( -e "config.php" ) {
9061389c 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";
8b56e282 56 print "Press enter to continue";
9061389c 57 $ctu = <STDIN>;
58 exit;
59 }
eaace00e 60 open( FILE, "config.php" );
61 while ( $line = <FILE> ) {
62 $line =~ s/^\s+//;
63 $line =~ s/^\$//;
64 $var = $line;
65
66 $var =~ s/=/EQUALS/;
85645192 67 if ( $var =~ /^([a-z])/i ) {
eaace00e 68 @o = split ( /\s*EQUALS\s*/, $var );
69 if ( $o[0] eq "config_version" ) {
85645192 70 $o[1] =~ s/[\n\r]//g;
71 $o[1] =~ s/[\'\"];\s*$//;
eaace00e 72 $o[1] =~ s/;$//;
85645192 73 $o[1] =~ s/^[\'\"]//;
eaace00e 74
75 $config_version = $o[1];
76 close(FILE);
77 }
78 }
79 }
80 close(FILE);
81
82 if ( $config_version ne $conf_pl_version ) {
f8c17cdd 83 clear_screen();
9061389c 84 print "WARNING:\n";
eaace00e 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/;
85645192 120 if ( $var =~ /^([a-z])/i ) {
eaace00e 121 @o = split ( /\s*EQUALS\s*/, $var );
122 if ( $o[0] eq "config_version" ) {
85645192 123 $o[1] =~ s/[\n\r]//g;
124 $o[1] =~ s/[\'\"];\s*$//;
eaace00e 125 $o[1] =~ s/;$//;
85645192 126 $o[1] =~ s/^[\'\"]//;
eaace00e 127
128 $config_version = $o[1];
129 close(FILE);
130 }
131 }
132 }
133 close(FILE);
134
135 if ( $config_version ne $conf_pl_version ) {
f8c17cdd 136 clear_screen();
9061389c 137 print "WARNING:\n";
eaace00e 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" );
1e0628fb 164} else {
eaace00e 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;
bbd30ac8 169}
170
a3439b27 171# Read and parse the current configuration file
172# (either config.php or config_default.php).
eaace00e 173while ( $line = <FILE> ) {
598294a7 174 $line =~ s/^\s+//;
eaace00e 175 $line =~ s/^\$//;
176 $var = $line;
177
178 $var =~ s/=/EQUALS/;
85645192 179 if ( $var =~ /^([a-z])/i ) {
eaace00e 180 @options = split ( /\s*EQUALS\s*/, $var );
85645192 181 $options[1] =~ s/[\n\r]//g;
182 $options[1] =~ s/[\'\"];\s*$//;
eaace00e 183 $options[1] =~ s/;$//;
85645192 184 $options[1] =~ s/^[\'\"]//;
ed65d11b 185 # de-escape escaped strings
186 $options[1] =~ s/\\'/'/g;
187 $options[1] =~ s/\\\\/\\/g;
eaace00e 188
82351c82 189 if ( $options[0] =~ /^user_themes\[[0-9]+\]\[['"]PATH['"]\]/ ) {
eaace00e 190 $sub = $options[0];
85645192 191 $sub =~ s/\]\[['"]PATH['"]\]//;
eaace00e 192 $sub =~ s/.*\[//;
82351c82 193 if ( -e "../css/" ) {
194 $options[1] =~ s/^\.\.\/config/\.\.\/css/;
a3439b27 195 }
82351c82 196 $user_theme_path[$sub] = &change_to_rel_path($options[1]);
197 } elsif ( $options[0] =~ /^user_themes\[[0-9]+\]\[['"]NAME['"]\]/ ) {
eaace00e 198 $sub = $options[0];
85645192 199 $sub =~ s/\]\[['"]NAME['"]\]//;
eaace00e 200 $sub =~ s/.*\[//;
82351c82 201 $user_theme_name[$sub] = $options[1];
83139c0b 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];
5e78e498 215 } elsif ( $options[0] =~ /^aTemplateSet\[[0-9]+\]\[['"]ID['"]\]/ ) {
85bacb8f 216 $sub = $options[0];
5e78e498 217 $sub =~ s/\]\[['"]ID['"]\]//;
85bacb8f 218 $sub =~ s/.*\[//;
219 if ( -e "../templates" ) {
220 $options[1] =~ s/^\.\.\/config/\.\.\/templates/;
221 }
5e78e498 222 $templateset_id[$sub] = $options[1];
649162c3 223##### FIXME: This section BELOW here so old prefs files don't blow up when running conf.pl
b4e8b4a3 224##### Remove after a month or two
649162c3 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
b4e8b4a3 234##### Remove after a month or two
85bacb8f 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];
a1b036d6 240 } elsif ( $options[0] =~ /^plugins\[[0-9]*\]/ ) {
eaace00e 241 $sub = $options[0];
242 $sub =~ s/\]//;
243 $sub =~ s/^plugins\[//;
a1b036d6 244 if ($sub eq '') {
245 push @plugins, $options[1];
246 } else {
247 $plugins[$sub] = $options[1];
248 }
81132de8 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];
e2409f9c 255 } elsif ( $options[0] =~ /^theme\[[0-9]+\]\[['"]PATH|NAME['"]\]/ ) {
9061389c 256 ##
257 ## $color themes are no longer supported. Please leave this
258 ## so conf.pl doesn't barf if it encounters a $theme.
259 ##
eaace00e 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
85645192 270 if ( $tmp =~ /^\s*[\'\"]host[\'\"]/i ) {
271 $tmp =~ s/^\s*[\'\"]host[\'\"]\s*=>\s*[\'\"]//i;
272 $tmp =~ s/[\'\"],?\s*$//;
273 $tmp =~ s/[\'\"]\);\s*$//;
eaace00e 274 $host = $tmp;
85645192 275 } elsif ( $tmp =~ /^\s*[\'\"]base[\'\"]/i ) {
276 $tmp =~ s/^\s*[\'\"]base[\'\"]\s*=>\s*[\'\"]//i;
277 $tmp =~ s/[\'\"],?\s*$//;
278 $tmp =~ s/[\'\"]\);\s*$//;
eaace00e 279 $base = $tmp;
85645192 280 } elsif ( $tmp =~ /^\s*[\'\"]charset[\'\"]/i ) {
281 $tmp =~ s/^\s*[\'\"]charset[\'\"]\s*=>\s*[\'\"]//i;
282 $tmp =~ s/[\'\"],?\s*$//;
283 $tmp =~ s/[\'\"]\);\s*$//;
eaace00e 284 $charset = $tmp;
85645192 285 } elsif ( $tmp =~ /^\s*[\'\"]port[\'\"]/i ) {
286 $tmp =~ s/^\s*[\'\"]port[\'\"]\s*=>\s*[\'\"]?//i;
287 $tmp =~ s/[\'\"]?,?\s*$//;
288 $tmp =~ s/[\'\"]?\);\s*$//;
eaace00e 289 $port = $tmp;
85645192 290 } elsif ( $tmp =~ /^\s*[\'\"]maxrows[\'\"]/i ) {
291 $tmp =~ s/^\s*[\'\"]maxrows[\'\"]\s*=>\s*[\'\"]?//i;
292 $tmp =~ s/[\'\"]?,?\s*$//;
293 $tmp =~ s/[\'\"]?\);\s*$//;
eaace00e 294 $maxrows = $tmp;
43397658 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;
85645192 300 } elsif ( $tmp =~ /^\s*[\'\"]name[\'\"]/i ) {
301 $tmp =~ s/^\s*[\'\"]name[\'\"]\s*=>\s*[\'\"]//i;
302 $tmp =~ s/[\'\"],?\s*$//;
303 $tmp =~ s/[\'\"]\);\s*$//;
eaace00e 304 $name = $tmp;
85645192 305 } elsif ( $tmp =~ /^\s*[\'\"]binddn[\'\"]/i ) {
306 $tmp =~ s/^\s*[\'\"]binddn[\'\"]\s*=>\s*[\'\"]//i;
307 $tmp =~ s/[\'\"],?\s*$//;
308 $tmp =~ s/[\'\"]\);\s*$//;
30e9932c 309 $binddn = $tmp;
85645192 310 } elsif ( $tmp =~ /^\s*[\'\"]bindpw[\'\"]/i ) {
311 $tmp =~ s/^\s*[\'\"]bindpw[\'\"]\s*=>\s*[\'\"]//i;
312 $tmp =~ s/[\'\"],?\s*$//;
313 $tmp =~ s/[\'\"]\);\s*$//;
30e9932c 314 $bindpw = $tmp;
85645192 315 } elsif ( $tmp =~ /^\s*[\'\"]protocol[\'\"]/i ) {
316 $tmp =~ s/^\s*[\'\"]protocol[\'\"]\s*=>\s*[\'\"]?//i;
317 $tmp =~ s/[\'\"]?,?\s*$//;
318 $tmp =~ s/[\'\"]?\);\s*$//;
30e9932c 319 $protocol = $tmp;
43397658 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;
327e2d96 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;
664fd7a0 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;
593370a4 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;
eaace00e 345 }
a3439b27 346 }
eaace00e 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;
43397658 352 $ldap_filter[$sub] = $filter;
eaace00e 353 $ldap_charset[$sub] = $charset;
30e9932c 354 $ldap_binddn[$sub] = $binddn;
355 $ldap_bindpw[$sub] = $bindpw;
356 $ldap_protocol[$sub] = $protocol;
43397658 357 $ldap_limit_scope[$sub] = $limit_scope;
327e2d96 358 $ldap_listing[$sub] = $listing;
664fd7a0 359 $ldap_writeable[$sub] = $writeable;
593370a4 360 $ldap_search_tree[$sub] = $search_tree;
361 $ldap_starttls[$sub] = $starttls;
83139c0b 362 } elsif ( $options[0] =~ /^(data_dir|attachment_dir|org_logo|signout_page|icon_theme_def)$/ ) {
8bd9e0dd 363 ${ $options[0] } = &change_to_rel_path($options[1]);
eaace00e 364 } else {
365 ${ $options[0] } = $options[1];
366 }
367 }
bbd30ac8 368}
1a7a2fcc 369close FILE;
0ae4c1f2 370
a15f9d93 371# FIXME: unknown introduction date
35aaf666 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 );
35aaf666 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 );
35aaf666 389$no_list_for_subscribe = 'false' if ( !$no_list_for_subscribe );
390$allow_charset_search = 'true' if ( !$allow_charset_search );
66bfb27b 391$allow_advanced_search = 0 if ( !$allow_advanced_search) ;
35aaf666 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 );
a15f9d93 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
beebd508 399# since 1.2.0
400$hide_sm_attributions = 'false' if ( !$hide_sm_attributions );
a2aa472a 401# since 1.2.5
402$edit_identity = 'true' if ( !$edit_identity );
403$edit_name = 'true' if ( !$edit_name );
beebd508 404
a15f9d93 405# since 1.4.0
35aaf666 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 );
81132de8 410
71d3f882 411# since 1.5.0
35aaf666 412$show_alternative_names = 'false' if ( !$show_alternative_names );
5ba5dc8e 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 );
f03f6ee7 416$aggressive_decoding = 'false' if ( !$aggressive_decoding );
ca885a4f 417# available only in 1.5.0 and 1.5.1
418# $advanced_tree = 'false' if ( !$advanced_tree );
35aaf666 419$use_php_recode = 'false' if ( !$use_php_recode );
420$use_php_iconv = 'false' if ( !$use_php_iconv );
81132de8 421
71d3f882 422# since 1.5.1
423$use_icons = 'false' if ( !$use_icons );
ef6ad2a1 424$use_iframe = 'false' if ( !$use_iframe );
71d3f882 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 );
432db2fc 433$encode_header_key = '' if ( !$encode_header_key );
434$hide_auth_header = 'false' if ( !$hide_auth_header );
ee20a285 435$time_zone_type = '0' if ( !$time_zone_type );
06316c07 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 );
81132de8 439
fd7ab795 440# add qmail-inject test here for backwards compatibility
85bacb8f 441if ( !$sendmail_args && $sendmail_path =~ /qmail-inject/ ) {
fd7ab795 442 $sendmail_args = '';
443} elsif ( !$sendmail_args ) {
444 $sendmail_args = '-i -t';
445}
39d3ec89 446
81132de8 447$default_fontsize = '' if ( !$default_fontsize);
448$default_fontset = '' if ( !$default_fontset);
449if ( !%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
a15f9d93 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');
801da708 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 );
81132de8 465
7311c377 466# since 1.5.2
467$abook_file_line_length = 2048 if ( !$abook_file_line_length );
3dc5d88f 468$config_location_base = '' if ( !$config_location_base );
029d1fc2 469$smtp_sitewide_user = '' if ( !$smtp_sitewide_user );
470$smtp_sitewide_pass = '' if ( !$smtp_sitewide_pass );
9061389c 471$icon_theme_def = '' if ( !$icon_theme_def );
7311c377 472
eaace00e 473if ( $ARGV[0] eq '--install-plugin' ) {
474 print "Activating plugin " . $ARGV[1] . "\n";
ebd13f55 475 push @plugins, $ARGV[1];
476 save_data();
477 exit(0);
eaace00e 478} elsif ( $ARGV[0] eq '--remove-plugin' ) {
479 print "Removing plugin " . $ARGV[1] . "\n";
ebd13f55 480 foreach $plugin (@plugins) {
eaace00e 481 if ( $plugin ne $ARGV[1] ) {
482 push @newplugins, $plugin;
ebd13f55 483 }
484 }
485 @plugins = @newplugins;
486 save_data();
487 exit(0);
091ee417 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);
ebd13f55 502}
503
5b6ae78a 504#####################################################################################
eaace00e 505if ( $config_use_color == 1 ) {
506 $WHT = "\x1B[37;1m";
507 $NRM = "\x1B[0m";
0ecb47e5 508} else {
eaace00e 509 $WHT = "";
510 $NRM = "";
511 $config_use_color = 2;
512}
513
8b5c49cd 514while ( ( $command ne "q" ) && ( $command ne "Q" ) && ( $command ne ":q" ) ) {
f8c17cdd 515 clear_screen();
eaace00e 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";
348610ca 528 print "5. User Interface\n";
4272758c 529 print "6. Address Books\n";
eaace00e 530 print "7. Message of the Day (MOTD)\n";
531 print "8. Plugins\n";
532 print "9. Database\n";
598294a7 533 print "10. Language settings\n";
534 print "11. Tweaks\n";
eaace00e 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;
b6e0c3b6 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";
39d3ec89 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";
0ae4c1f2 548
eaace00e 549 print "\n";
dcc1cc82 550 print "R Return to Main Menu\n";
eaace00e 551 } elsif ( $menu == 2 ) {
47a29326 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";
35aaf666 558 if ( lc($useSendmail) eq 'true' ) {
eaace00e 559 print "Sendmail";
560 } else {
561 print "SMTP";
562 }
563 print "$NRM\n";
47a29326 564 print "\n";
598294a7 565
47a29326 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";
2b4a868c 571 print "7. Secure IMAP (TLS) : $WHT" . display_use_tls($use_imap_tls) . "$NRM\n";
47a29326 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 ) {
35aaf666 576 if ( lc($useSendmail) eq 'true' ) {
47a29326 577 print $WHT . "Sendmail" . $NRM . "\n--------\n";
578 print "4. Sendmail Path : $WHT$sendmail_path$NRM\n";
fd7ab795 579 print "5. Sendmail arguments : $WHT$sendmail_args$NRM\n";
580 print "6. Header encryption key : $WHT$encode_header_key$NRM\n";
47a29326 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";
029d1fc2 587 print "7. SMTP Authentication : $WHT$smtp_auth_mech" . display_smtp_sitewide_userpass() ."$NRM\n";
2b4a868c 588 print "8. Secure SMTP (TLS) : $WHT" . display_use_tls($use_smtp_tls) . "$NRM\n";
432db2fc 589 print "9. Header encryption key : $WHT$encode_header_key$NRM\n";
47a29326 590 print "\n";
591 }
eaace00e 592 }
47a29326 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";
598294a7 599 }
47a29326 600 if ($show_smtp_settings == 0) {
35aaf666 601 if ( lc($useSendmail) eq 'true' ) {
47a29326 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 {
598294a7 611 print "H. Hide " .
612 ($show_imap_settings ? "IMAP Server" :
35aaf666 613 (lc($useSendmail) eq 'true') ? "Sendmail" : "SMTP") . " Settings\n";
47a29326 614 }
598294a7 615
eaace00e 616 print "\n";
dcc1cc82 617 print "R Return to Main Menu\n";
eaace00e 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";
2eec12b5 636 print "17. Folder Delete Bypasses Trash : $WHT$delete_folder$NRM\n";
ca85aabe 637 print "18. Enable /NoSelect folder fix : $WHT$noselect_fix_enable$NRM\n";
eaace00e 638 print "\n";
dcc1cc82 639 print "R Return to Main Menu\n";
eaace00e 640 } elsif ( $menu == 4 ) {
641 print $WHT. "General Options\n" . $NRM;
39d3ec89 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";
432db2fc 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";
11e00010 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";
39d3ec89 655 print "12. Allow server charset search : $WHT$allow_charset_search$NRM\n";
de74555e 656 print "13. Allow advanced search : $WHT$allow_advanced_search$NRM\n";
66bfb27b 657 print "14. PHP session name : $WHT$session_name$NRM\n";
ee20a285 658 print "15. Time zone configuration : $WHT$time_zone_type$NRM\n";
74530cf4 659 print "16. Location base : $WHT$config_location_base$NRM\n";
eaace00e 660 print "\n";
dcc1cc82 661 print "R Return to Main Menu\n";
eaace00e 662 } elsif ( $menu == 5 ) {
348610ca 663 print $WHT. "User Interface\n" . $NRM;
83139c0b 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";
85bacb8f 671
eaace00e 672 print "\n";
dcc1cc82 673 print "R Return to Main Menu\n";
eaace00e 674 } elsif ( $menu == 6 ) {
4272758c 675 print $WHT. "Address Books\n" . $NRM;
676 print "1. Change LDAP Servers\n";
eaace00e 677 for ( $count = 0 ; $count <= $#ldap_host ; $count++ ) {
678 print " > $ldap_host[$count]\n";
679 }
71d3f882 680 print "2. Use Javascript address book search : $WHT$default_use_javascript_addr_book$NRM\n";
ee20a285 681 print "3. Global address book file : $WHT$abook_global_file$NRM\n";
4272758c 682 print "4. Allow writing into global file address book : $WHT$abook_global_file_writeable$NRM\n";
71d3f882 683 print "5. Allow listing of global file address book : $WHT$abook_global_file_listing$NRM\n";
7311c377 684 print "6. Allowed address book line length : $WHT$abook_file_line_length$NRM\n";
eaace00e 685 print "\n";
dcc1cc82 686 print "R Return to Main Menu\n";
eaace00e 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";
dcc1cc82 693 print "R Return to Main Menu\n";
eaace00e 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 }
1a7a2fcc 719 }
eaace00e 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
eaace00e 728 print "\n";
dcc1cc82 729 print "R Return to Main Menu\n";
eaace00e 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";
99a6c222 734 print "\n";
eaace00e 735 print "3. DSN for Preferences : $WHT$prefs_dsn$NRM\n";
736 print "4. Table for Preferences : $WHT$prefs_table$NRM\n";
06316c07 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";
eaace00e 740 print "\n";
30e9932c 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";
dcc1cc82 746 print "R Return to Main Menu\n";
39d3ec89 747 } elsif ( $menu == 10 ) {
35aaf666 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";
5ba5dc8e 752 print "4. Enable aggressive decoding : $WHT$aggressive_decoding$NRM\n";
753 print "5. Enable lossy encoding : $WHT$lossy_encoding$NRM\n";
35aaf666 754 print "\n";
dcc1cc82 755 print "R Return to Main Menu\n";
39d3ec89 756 } elsif ( $menu == 11 ) {
35aaf666 757 print $WHT. "Interface tweaks\n" . $NRM;
ca885a4f 758 print "1. Display html mails in iframe : $WHT$use_iframe$NRM\n";
35aaf666 759 print "\n";
760 print $WHT. "PHP tweaks\n" . $NRM;
72bf0ae7 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";
71d3f882 763 print "\n";
764 print $WHT. "Configuration tweaks\n" . $NRM;
72bf0ae7 765 print "6. Allow remote configtest : $WHT$allow_remote_configtest$NRM\n";
35aaf666 766 print "\n";
dcc1cc82 767 print "R Return to Main Menu\n";
eaace00e 768 }
769 if ( $config_use_color == 1 ) {
1ef64acb 770 print "C Turn color off\n";
eaace00e 771 } else {
1ef64acb 772 print "C Turn color on\n";
eaace00e 773 }
dcc1cc82 774 print "S Save data\n";
775 print "Q Quit\n";
eaace00e 776
777 print "\n";
778 print "Command >> " . $WHT;
779 $command = <STDIN>;
85645192 780 $command =~ s/[\n\r]//g;
eaace00e 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 ) {
39d3ec89 814 if ( ( $command > 0 ) && ( $command < 12 ) ) {
eaace00e 815 $menu = $command;
1a7a2fcc 816 }
eaace00e 817 } elsif ( $menu == 1 ) {
818 if ( $command == 1 ) { $org_name = command1(); }
819 elsif ( $command == 2 ) { $org_logo = command2(); }
b6e0c3b6 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(); }
39d3ec89 823 elsif ( $command == 6 ) { $frame_top = command6(); }
824 elsif ( $command == 7 ) { $provider_uri = command7(); }
825 elsif ( $command == 8 ) { $provider_name = command8(); }
0ae4c1f2 826
eaace00e 827 } elsif ( $menu == 2 ) {
47a29326 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(); }
b47821fb 839 elsif ( $command == 6 ) { $imap_auth_mech = command112a(); }
a15f9d93 840 elsif ( $command == 7 ) { $use_imap_tls = command_use_tls("IMAP",$use_imap_tls); }
47a29326 841 elsif ( $command == 8 ) { $imap_server_type = command19(); }
842 elsif ( $command == 9 ) { $optional_delimiter = command111(); }
35aaf666 843 } elsif ( $show_smtp_settings && lc($useSendmail) eq 'true' ) {
432db2fc 844 if ( $command == 4 ) { $sendmail_path = command15(); }
fd7ab795 845 elsif ( $command == 5 ) { $sendmail_args = command_sendmail_args(); }
846 elsif ( $command == 6 ) { $encode_header_key = command114(); }
47a29326 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(); }
b47821fb 851 elsif ( $command == 7 ) { $smtp_auth_mech = command112b(); }
a15f9d93 852 elsif ( $command == 8 ) { $use_smtp_tls = command_use_tls("SMTP",$use_smtp_tls); }
432db2fc 853 elsif ( $command == 9 ) { $encode_header_key = command114(); }
47a29326 854 }
eaace00e 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(); }
ca85aabe 873 elsif ( $command == 18 ) { $noselect_fix_enable = command216(); }
eaace00e 874 } elsif ( $menu == 4 ) {
39d3ec89 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(); }
ee20a285 883 elsif ( $command == 9 ) { $edit_identity = command310(); }
11e00010 884 elsif ( $command == 10 ) { $disable_thread_sort = command312(); }
885 elsif ( $command == 11 ) { $disable_server_sort = command313(); }
39d3ec89 886 elsif ( $command == 12 ) { $allow_charset_search = command314(); }
de74555e 887 elsif ( $command == 13 ) { $allow_advanced_search = command316(); }
888 elsif ( $command == 14 ) { $session_name = command317(); }
ee20a285 889 elsif ( $command == 15 ) { $time_zone_type = command318(); }
3dc5d88f 890 elsif ( $command == 16 ) { $config_location_base = command_config_location_base(); }
eaace00e 891 } elsif ( $menu == 5 ) {
83139c0b 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(); }
eaace00e 899 } elsif ( $menu == 6 ) {
900 if ( $command == 1 ) { command61(); }
901 elsif ( $command == 2 ) { command62(); }
4272758c 902 elsif ( $command == 3 ) { $abook_global_file=command63(); }
903 elsif ( $command == 4 ) { command64(); }
71d3f882 904 elsif ( $command == 5 ) { command65(); }
7311c377 905 elsif ( $command == 6 ) { command_abook_file_line_length(); }
eaace00e 906 } elsif ( $menu == 7 ) {
907 if ( $command == 1 ) { $motd = command71(); }
908 } elsif ( $menu == 8 ) {
909 if ( $command =~ /^[0-9]+/ ) { @plugins = command81(); }
eaace00e 910 } elsif ( $menu == 9 ) {
99a6c222 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(); }
30e9932c 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(); }
39d3ec89 922 } elsif ( $menu == 10 ) {
923 if ( $command == 1 ) { $squirrelmail_default_language = commandA1(); }
5ba5dc8e 924 elsif ( $command == 2 ) { $default_charset = commandA2(); }
dcc1cc82 925 elsif ( $command == 3 ) { $show_alternative_names = commandA3(); }
5ba5dc8e 926 elsif ( $command == 4 ) { $aggressive_decoding = commandA4(); }
927 elsif ( $command == 5 ) { $lossy_encoding = commandA5(); }
39d3ec89 928 } elsif ( $menu == 11 ) {
ca885a4f 929 if ( $command == 1 ) { $use_iframe = commandB2(); }
72bf0ae7 930 elsif ( $command == 4 ) { $use_php_recode = commandB4(); }
931 elsif ( $command == 5 ) { $use_php_iconv = commandB5(); }
932 elsif ( $command == 6 ) { $allow_remote_configtest = commandB6(); }
eaace00e 933 }
934 }
828b4753 935}
936
cbd6543c 937# we exit here
938print "\nExiting conf.pl.\n".
35aaf666 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";
cbd6543c 942
943
828b4753 944####################################################################################
945
5b6ae78a 946# org_name
947sub command1 {
eaace00e 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";
360ef370 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";
360ef370 955 print "\n";
eaace00e 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 {
85645192 961 $new_org_name =~ s/[\r\n]//g;
35aaf666 962 $new_org_name =~ s/\"/&quot;/g;
eaace00e 963 }
964 return $new_org_name;
5b6ae78a 965}
966
967# org_logo
968sub command2 {
eaace00e 969 print "Your organization's logo is an image that will be displayed at\n";
25be56ab 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";
5d28b77e 977 print " e.g. http://www.example.com/images/mylogo.gif or /images/mylogo.jpg\n";
eaace00e 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 {
85645192 984 $new_org_logo =~ s/[\r\n]//g;
eaace00e 985 }
986 return $new_org_logo;
5b6ae78a 987}
988
b6e0c3b6 989# org_logo_width
990sub 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 }
0e21688d 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!
e03345e1 1005 if( $new_org_logo_height eq '' ) {
35aaf666 1006 $new_org_logo_height = $org_logo_height;
1007 }
00c4b08d 1008 } else {
0e21688d 1009 $new_org_logo_height = 0;
b6e0c3b6 1010 }
1011 return ($new_org_logo_width, $new_org_logo_height);
1012}
1013
5b6ae78a 1014# org_title
1015sub command3 {
eaace00e 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";
360ef370 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";
360ef370 1023 print "\n";
eaace00e 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 {
85645192 1029 $new_org_title =~ s/[\r\n]//g;
35aaf666 1030 $new_org_title =~ s/\"/\'/g;
eaace00e 1031 }
1032 return $new_org_title;
5b6ae78a 1033}
5b6ae78a 1034
f923b93d 1035# signout_page
1036sub command4 {
eaace00e 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 {
85645192 1047 $new_signout_page =~ s/[\r\n]//g;
eaace00e 1048 $new_signout_page =~ s/^\s+$//g;
1049 }
1050 return $new_signout_page;
6ef7145f 1051}
1052
80e86e94 1053# Default top frame
1054sub 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>;
eaace00e 1061 if ( $new_frame_top eq "\n" ) {
80e86e94 1062 $new_frame_top = '_top';
1063 } else {
85645192 1064 $new_frame_top =~ s/[\r\n]//g;
80e86e94 1065 $new_frame_top =~ s/^\s+$//g;
1066 }
1067 return $new_frame_top;
1068}
1069
0ae4c1f2 1070# Default link to provider
1071sub command7 {
1072 print "Here you can set the link on the right of the page.\n";
8b5c49cd 1073 print "If empty, it will link to the SquirrelMail About page.\n";
0ae4c1f2 1074 print "\n";
1075 print "[$WHT$provider_uri$NRM]: $WHT";
1076 $new_provider_uri = <STDIN>;
1077 if ( $new_provider_uri eq "\n" ) {
8b5c49cd 1078 $new_provider_uri = '';
0ae4c1f2 1079 } else {
85645192 1080 $new_provider_uri =~ s/[\r\n]//g;
0ae4c1f2 1081 $new_provider_uri =~ s/^\s+$//g;
1082 }
7b6563c0 1083 return $new_provider_uri;
0ae4c1f2 1084}
1085
1086sub command8 {
1087 print "Here you can set the name of the link on the right of the page.\n";
26eed4f7 1088 print "The default is 'SquirrelMail'\n";
0ae4c1f2 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 {
85645192 1095 $new_provider_name =~ s/[\r\n]//g;
0ae4c1f2 1096 $new_provider_name =~ s/^\s+$//g;
26eed4f7 1097 $new_provider_name =~ s/\'/\\'/g;
0ae4c1f2 1098 }
7b6563c0 1099 return $new_provider_name;
0ae4c1f2 1100}
1101
828b4753 1102####################################################################################
5b6ae78a 1103
828b4753 1104# domain
1105sub command11 {
e1e4f932 1106 print "The domain name is the suffix at the end of all email addresses. If\n";
5d28b77e 1107 print "for example, your email address is jdoe\@example.com, then your domain\n";
1108 print "would be example.com.\n";
eaace00e 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 {
85645192 1115 $new_domain =~ s/[\r\n]//g;
eaace00e 1116 }
1117 return $new_domain;
828b4753 1118}
5b6ae78a 1119
828b4753 1120# imapServerAddress
1121sub command12 {
47a29326 1122 print "This is the hostname where your IMAP server can be contacted.\n";
eaace00e 1123 print "[$WHT$imapServerAddress$NRM]: $WHT";
1124 $new_imapServerAddress = <STDIN>;
1125 if ( $new_imapServerAddress eq "\n" ) {
1126 $new_imapServerAddress = $imapServerAddress;
1127 } else {
85645192 1128 $new_imapServerAddress =~ s/[\r\n]//g;
eaace00e 1129 }
1130 return $new_imapServerAddress;
828b4753 1131}
5b6ae78a 1132
828b4753 1133# imapPort
1134sub command13 {
eaace00e 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 {
85645192 1141 $new_imapPort =~ s/[\r\n]//g;
eaace00e 1142 }
1143 return $new_imapPort;
828b4753 1144}
1145
1146# useSendmail
1147sub command14 {
eaace00e 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";
35aaf666 1151 if ( lc($useSendmail) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 1163 $useSendmail = 'true';
eaace00e 1164 } else {
35aaf666 1165 $useSendmail = 'false';
eaace00e 1166 }
1167 return $useSendmail;
828b4753 1168}
5b6ae78a 1169
828b4753 1170# sendmail_path
1171sub command15 {
eaace00e 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 {
85645192 1178 $new_sendmail_path =~ s/[\r\n]//g;
eaace00e 1179 }
1180 return $new_sendmail_path;
828b4753 1181}
5b6ae78a 1182
fd7ab795 1183# Extra sendmail arguments
1184sub 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";
85bacb8f 1191 print "empty string or use arguments suitable for your mailer.\n";
fd7ab795 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
828b4753 1204# smtpServerAddress
1205sub command16 {
47a29326 1206 print "This is the hostname of your SMTP server.\n";
eaace00e 1207 print "[$WHT$smtpServerAddress$NRM]: $WHT";
1208 $new_smtpServerAddress = <STDIN>;
1209 if ( $new_smtpServerAddress eq "\n" ) {
1210 $new_smtpServerAddress = $smtpServerAddress;
1211 } else {
85645192 1212 $new_smtpServerAddress =~ s/[\r\n]//g;
eaace00e 1213 }
1214 return $new_smtpServerAddress;
828b4753 1215}
1216
1217# smtpPort
1218sub command17 {
eaace00e 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 {
85645192 1225 $new_smtpPort =~ s/[\r\n]//g;
eaace00e 1226 }
1227 return $new_smtpPort;
bbd30ac8 1228}
d2f4c914 1229
2044f95a 1230# pop before SMTP
1231sub 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';
35aaf666 1236 $YesNo = 'y' if ( lc($pop_before_smtp) eq 'true' );
2044f95a 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;
35aaf666 1242 return 'true' if ( $new_pop_before_smtp eq "y" );
1243 return 'false' if ( $new_pop_before_smtp eq "n" );
2044f95a 1244 return $pop_before_smtp;
1245}
1246
598294a7 1247# imap_server_type
d2f4c914 1248sub command19 {
eaace00e 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";
a33764f6 1255 print " courier = Courier IMAP server\n";
b39825f0 1256 print " cyrus = Cyrus IMAP server\n";
a33764f6 1257 print " dovecot = Dovecot Secure IMAP server\n";
b39825f0 1258 print " exchange = Microsoft Exchange IMAP server\n";
b39825f0 1259 print " hmailserver = hMailServer\n";
a33764f6 1260 print " macosx = Mac OS X Mailserver\n";
67a24f8a 1261 print " mercury32 = Mercury Mail Transport System\n";
a33764f6 1262 print " uw = University of Washington's IMAP server\n";
1263 print "\n";
b39825f0 1264 print " other = Not one of the above servers\n";
a33764f6 1265 print "\n";
eaace00e 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 {
85645192 1272 $new_imap_server_type =~ s/[\r\n]//g;
eaace00e 1273 }
1274 return $new_imap_server_type;
a93b12ba 1275}
3f8fe68e 1276
d47b2518 1277# invert_time
d2f4c914 1278sub command110 {
eaace00e 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';
35aaf666 1289 $YesNo = 'y' if ( lc($invert_time) eq 'true' );
eaace00e 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;
35aaf666 1295 return 'true' if ( $new_invert_time eq "y" );
1296 return 'false' if ( $new_invert_time eq "n" );
eaace00e 1297 return $invert_time;
1298}
d47b2518 1299
d2f4c914 1300sub command111 {
eaace00e 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 {
85645192 1314 $new_optional_delimiter =~ s/[\r\n]//g;
eaace00e 1315 }
1316 return $new_optional_delimiter;
40ba4d36 1317}
b47821fb 1318# IMAP authentication type
33feaaec 1319# Possible values: login, plain, cram-md5, digest-md5
b47821fb 1320# Now offers to detect supported mechs, assuming server & port are set correctly
1321
1322sub command112a {
61e49023 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";
80e3fcf8 1328 } else {
35aaf666 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 }
80e3fcf8 1349 } else {
35aaf666 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 }
598294a7 1364
35aaf666 1365 }
598294a7 1366 }
35aaf666 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";
33feaaec 1369 print $WHT . "plain" . $NRM . " - SASL PLAIN. If you need this, you already know it.\n";
35aaf666 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";
b47821fb 1375 $inval=<STDIN>;
1376 chomp($inval);
33feaaec 1377 if ( ($inval =~ /^cram-md5\b/i) || ($inval =~ /^digest-md5\b/i) || ($inval =~ /^login\b/i) || ($inval =~ /^plain\b/i)) {
b47821fb 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}
40ba4d36 1384
598294a7 1385
b47821fb 1386# SMTP authentication type
1387# Possible choices: none, plain, cram-md5, digest-md5
1388sub command112b {
61e49023 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
80e3fcf8 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";
35aaf666 1395 print "Auto-detection is *optional* - you can safely say \"n\" here.\n";
80e3fcf8 1396 print "\nTry to detect auth mechanisms? [y/N]: ";
1397 $inval=<STDIN>;
1398 chomp($inval);
1399 if ($inval =~ /^y\b/i) {
35aaf666 1400 # Yes, let's try to detect.
1401 print "Trying to detect supported methods (SMTP)...\n";
598294a7 1402
35aaf666 1403 # Special case!
1404 # Check none by trying to relay to junk@microsoft.com
1405 $host = $smtpServerAddress . ':' . $smtpPort;
35aaf666 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 {
5d28b77e 1412 print $sock "HELO $domain\r\n";
35aaf666 1413 $got = <$sock>; # Discard
5d28b77e 1414 print $sock "MAIL FROM:<tester\@squirrelmail.org>\r\n";
1415 $got = <$sock>; # Discard
1416 print $sock "RCPT TO:<junk\@microsoft.com\r\n";
35aaf666 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 }
5d28b77e 1423 print $sock "RSET\r\n";
1424 print $sock "QUIT\r\n";
35aaf666 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 }
598294a7 1439
35aaf666 1440 # Try CRAM-MD5
80e3fcf8 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";
b47821fb 1451 }
598294a7 1452
80e3fcf8 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";
b47821fb 1464 }
598294a7 1465 }
80e3fcf8 1466 }
1467 print "\nWhat authentication mechanism do you want to use for SMTP connections?\n";
b47821fb 1468 print $WHT . "none" . $NRM . " - Your SMTP server does not require authorization.\n";
fe0b18b3 1469 print $WHT . "login" . $NRM . " - Plaintext. If you can do better, you probably should.\n";
33feaaec 1470 print $WHT . "plain" . $NRM . " - SASL PLAIN. You already know it if you need this.\n";
639c7164 1471 print $WHT . "cram-md5" . $NRM . " - Slightly better than plaintext.\n";
1472 print $WHT . "digest-md5" . $NRM . " - Privacy protection - better than cram-md5.\n";
fe0b18b3 1473 print $WHT . "\n*** YOUR SMTP SERVER MUST SUPPORT THE MECHANISM YOU CHOOSE HERE ***\n" . $NRM;
b47821fb 1474 print "If you don't understand or are unsure, you probably want \"none\"\n\n";
fe0b18b3 1475 print "none, login, cram-md5, or digest-md5 [$WHT$smtp_auth_mech$NRM]: $WHT";
47a29326 1476 $inval=<STDIN>;
1477 chomp($inval);
b47821fb 1478 if ($inval =~ /^none\b/i) {
029d1fc2 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;
47a29326 1495 }
029d1fc2 1496}
1497
1498sub 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));
54b27c06 1503 if ($auth_mech eq 'none') {
029d1fc2 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;
47a29326 1522 } else {
029d1fc2 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";
8b56e282 1546 print "Click enter to continue\n";
029d1fc2 1547 $tmp = <STDIN>;
1548 }
1549 } else {
1550 print "Invalid input\n";
8b56e282 1551 print "Click enter to continue\n";
029d1fc2 1552 $tmp = <STDIN>;
47a29326 1553 }
1554}
1555
029d1fc2 1556# Sub adds information about SMTP authentication type to menu
1557sub 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
47a29326 1569# TLS
1570# This sub is reused for IMAP and SMTP
1571# Args: service name, default value
a15f9d93 1572sub command_use_tls {
35aaf666 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";
a15f9d93 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";
35aaf666 1582 print "If it is remote, you may wish to seriously consider enabling this.\n";
a15f9d93 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 }
47a29326 1595 }
a15f9d93 1596 if ($inval ne '') {$default_val = $inval};
47a29326 1597 return $default_val;
35aaf666 1598}
47a29326 1599
2b4a868c 1600# This sub is used to display human readable text for
1601# $use_imap_tls and $use_smtp_tls values in conf.pl menu
1602sub 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
432db2fc 1613# $encode_header_key
35aaf666 1614sub command114{
432db2fc 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;
35aaf666 1635}
47a29326 1636
3f8fe68e 1637# MOTD
1638sub command71 {
eaace00e 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";
dcc1cc82 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";
eaace00e 1643
1644 $new_motd = "";
1645 do {
1646 print "] ";
1647 $line = <STDIN>;
85645192 1648 $line =~ s/[\r\n]//g;
eaace00e 1649 if ( $line ne "@" ) {
1650 $line =~ s/ /\&nbsp;\&nbsp;/g;
1651 $line =~ s/\t/\&nbsp;\&nbsp;\&nbsp;\&nbsp;/g;
1652 $line =~ s/$/ /;
8278a58d 1653 $line =~ s/\"/\\\"/g;
eaace00e 1654
1655 $new_motd = $new_motd . $line;
1656 }
1657 } while ( $line ne "@" );
1658 return $new_motd;
3f8fe68e 1659}
911ad01c 1660
9d0c7bee 1661################# PLUGINS ###################
1662
1663sub command81 {
85645192 1664 $command =~ s/[\s\n\r]*//g;
eaace00e 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++;
9d0c7bee 1675 }
eaace00e 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] );
eaace00e 1684 }
1685 $ct++;
9d0c7bee 1686 }
eaace00e 1687 @plugins = @newplugins;
1688 }
1689 }
1690 return @plugins;
1691}
9d0c7bee 1692
911ad01c 1693################# FOLDERS ###################
1694
1695# default_folder_prefix
1696sub command21 {
eaace00e 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 {
d52532d5 1712 $new_default_folder_prefix =~ s/[\r\n]//g;
eaace00e 1713 }
d52532d5 1714 if ( ( $new_default_folder_prefix =~ /^\s*$/ ) || ( $new_default_folder_prefix =~ m/^none$/i ) ) {
eaace00e 1715 $new_default_folder_prefix = "";
1716 } else {
d52532d5 1717 # add the trailing delimiter only if we know what the server is.
ce9f808b 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')) {
d52532d5 1722 $new_default_folder_prefix =~ s/\.*$/\./;
ce9f808b 1723 } elsif ($imap_server_type eq 'uw' and
1724 $optional_delimiter eq 'detect') {
d52532d5 1725 $new_default_folder_prefix =~ s/\/*$/\//;
0e21688d 1726 }
eaace00e 1727 }
1728 return $new_default_folder_prefix;
911ad01c 1729}
1730
1731# Show Folder Prefix
1732sub command22 {
eaace00e 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
35aaf666 1744 if ( lc($show_prefix_option) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 1753 $show_prefix_option = 'true';
eaace00e 1754 } else {
35aaf666 1755 $show_prefix_option = 'false';
eaace00e 1756 }
1757 return $show_prefix_option;
911ad01c 1758}
1759
598294a7 1760# Trash Folder
f7b1b3b1 1761sub command23a {
eaace00e 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 {
5ef3253e 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 }
eaace00e 1782 }
1783 return $new_trash_folder;
911ad01c 1784}
1785
598294a7 1786# Sent Folder
f7b1b3b1 1787sub command23b {
eaace00e 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 {
5ef3253e 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 }
eaace00e 1807 }
1808 return $new_sent_folder;
911ad01c 1809}
1810
598294a7 1811# Draft Folder
f7b1b3b1 1812sub command23c {
eaace00e 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 {
5ef3253e 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 }
eaace00e 1833 }
1834 return $new_draft_folder;
f7b1b3b1 1835}
1836
598294a7 1837# default move to trash
f7b1b3b1 1838sub command24a {
eaace00e 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
35aaf666 1847 if ( lc($default_move_to_trash) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 1855 $default_move_to_trash = 'true';
eaace00e 1856 } else {
35aaf666 1857 $default_move_to_trash = 'false';
eaace00e 1858 }
1859 return $default_move_to_trash;
2f287147 1860}
1861
598294a7 1862# default move to sent
f7b1b3b1 1863sub command24b {
eaace00e 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";
6517cfd0 1868 print "Sent folder is currently: $sent_folder\n";
eaace00e 1869 print "\n";
1870
35aaf666 1871 if ( lc($default_move_to_sent) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 1879 $default_move_to_sent = 'true';
eaace00e 1880 } else {
35aaf666 1881 $default_move_to_sent = 'false';
eaace00e 1882 }
1883 return $default_move_to_sent;
2f287147 1884}
1885
f7b1b3b1 1886# default save as draft
1887sub command24c {
eaace00e 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
35aaf666 1895 if ( lc($default_move_to_draft) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 1903 $default_save_as_draft = 'true';
eaace00e 1904 } else {
35aaf666 1905 $default_save_as_draft = 'false';
eaace00e 1906 }
1907 return $default_save_as_draft;
f7b1b3b1 1908}
1909
598294a7 1910# List special folders first
2f287147 1911sub command27 {
eaace00e 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
35aaf666 1919 if ( lc($list_special_folders_first) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 1928 $list_special_folders_first = 'true';
eaace00e 1929 } else {
35aaf666 1930 $list_special_folders_first = 'false';
eaace00e 1931 }
1932 return $list_special_folders_first;
911ad01c 1933}
1934
598294a7 1935# Show special folders color
2f287147 1936sub command28 {
eaace00e 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
35aaf666 1944 if ( lc($use_special_folder_color) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 1953 $use_special_folder_color = 'true';
eaace00e 1954 } else {
35aaf666 1955 $use_special_folder_color = 'false';
eaace00e 1956 }
1957 return $use_special_folder_color;
911ad01c 1958}
1959
598294a7 1960# Auto expunge
2f287147 1961sub command29 {
eaace00e 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
35aaf666 1969 if ( lc($auto_expunge) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 1977 $auto_expunge = 'true';
eaace00e 1978 } else {
35aaf666 1979 $auto_expunge = 'false';
eaace00e 1980 }
1981 return $auto_expunge;
911ad01c 1982}
1983
598294a7 1984# Default sub of inbox
2f287147 1985sub command210 {
eaace00e 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
35aaf666 1993 if ( lc($default_sub_of_inbox) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 2001 $default_sub_of_inbox = 'true';
eaace00e 2002 } else {
35aaf666 2003 $default_sub_of_inbox = 'false';
eaace00e 2004 }
2005 return $default_sub_of_inbox;
911ad01c 2006}
2007
598294a7 2008# Show contain subfolder option
2f287147 2009sub command211 {
eaace00e 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
35aaf666 2017 if ( lc($show_contain_subfolders_option) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 2025 $show_contain_subfolders_option = 'true';
eaace00e 2026 } else {
35aaf666 2027 $show_contain_subfolders_option = 'false';
eaace00e 2028 }
2029 return $show_contain_subfolders_option;
911ad01c 2030}
2031
598294a7 2032# Default Unseen Notify
24fc5dd2 2033sub command212 {
eaace00e 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>;
85645192 2044 if ( $new_show =~ /^[123]\n/i ) {
eaace00e 2045 $default_unseen_notify = $new_show;
2046 }
85645192 2047 $default_unseen_notify =~ s/[\r\n]//g;
eaace00e 2048 return $default_unseen_notify;
24fc5dd2 2049}
2050
598294a7 2051# Default Unseen Type
24fc5dd2 2052sub command213 {
eaace00e 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>;
85645192 2061 if ( $new_show =~ /^[12]\n/i ) {
eaace00e 2062 $default_unseen_type = $new_show;
2063 }
85645192 2064 $default_unseen_type =~ s/[\r\n]//g;
eaace00e 2065 return $default_unseen_type;
24fc5dd2 2066}
2067
f7bfc9de 2068# Auto create special folders
2069sub command214 {
eaace00e 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
35aaf666 2076 if ( lc($auto_create_special) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 2084 $auto_create_special = 'true';
eaace00e 2085 } else {
35aaf666 2086 $auto_create_special = 'false';
eaace00e 2087 }
2088 return $auto_create_special;
f7bfc9de 2089}
2090
598294a7 2091# Automatically delete folders
4e85a37f 2092sub command215 {
d04165f3 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";
98468fba 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";
8b56e282 2098 print "Press enter to continue...\n";
2eec12b5 2099 $new_delete = <STDIN>;
35aaf666 2100 $delete_folder = 'true';
598294a7 2101 } else {
d04165f3 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";
598294a7 2109 print "when changing this setting.\n\n";
d04165f3 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..
598294a7 2117 # we've changed the question to make it more clear,
2118 # and are here handling that to avoid changing the answers..
35aaf666 2119 if ( lc($delete_folder) eq 'true' ) {
2eec12b5 2120 $default_value = "n";
d04165f3 2121 } else {
2122 $default_value = "y";
2eec12b5 2123 }
d04165f3 2124 print "Send deleted folders to Trash? (y/n) [$WHT$default_value$NRM]: $WHT";
2eec12b5 2125 $new_delete = <STDIN>;
2126 if ( ( $new_delete =~ /^y\n/i ) || ( ( $new_delete =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 2127 $delete_folder = 'false';
d04165f3 2128 } else {
35aaf666 2129 $delete_folder = 'true';
2eec12b5 2130 }
eaace00e 2131 }
2132 return $delete_folder;
2133}
24fc5dd2 2134
ca85aabe 2135#noselect fix
2136sub 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
35aaf666 2142 if ( lc($noselect_fix_enable) eq 'true' ) {
ca85aabe 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" ) ) ) {
35aaf666 2150 $noselect_fix_enable = 'true';
ca85aabe 2151 } else {
35aaf666 2152 $noselect_fix_enable = 'false';
ca85aabe 2153 }
2154 return $noselect_fix_enable;
2155}
ccfb2029 2156############# GENERAL OPTIONS #####################
2157
ccfb2029 2158# Data directory
3392dc86 2159sub command33a {
e6566358 2160 print "Specify the location for your data directory.\n";
368ab966 2161 print "You need to create this directory yourself.\n";
e6566358 2162 print "The path name can be absolute or relative (to the config directory).\n";
368ab966 2163 print "Here are two examples:\n";
2164 print " Absolute: /var/local/squirrelmail/data/\n";
598294a7 2165 print " Relative: ../data/\n";
8bd9e0dd 2166 print "Relative paths to directories outside of the SquirrelMail distribution\n";
e6566358 2167 print "will be converted to their absolute path equivalents in config.php.\n\n";
30e9932c 2168 print "Note: There are potential security risks with having a writeable directory\n";
e6566358 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";
2eec12b5 2171 print "in an alternate location of your choice. \n";
2172 print "\n";
2173
eaace00e 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 {
85645192 2179 $new_data_dir =~ s/[\r\n]//g;
eaace00e 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;
ccfb2029 2188}
2189
2190# Attachment directory
3392dc86 2191sub command33b {
eaace00e 2192 print "Path to directory used for storing attachments while a mail is\n";
368ab966 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";
e6566358 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";
eaace00e 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";
e6566358 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";
eaace00e 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 {
85645192 2219 $new_attachment_dir =~ s/[\r\n]//g;
eaace00e 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;
ccfb2029 2228}
2229
3392dc86 2230sub command33c {
eaace00e 2231 print "The directory hash level setting allows you to configure the level\n";
598294a7 2232 print "of hashing that SquirrelMail employs in your data and attachment\n";
eaace00e 2233 print "directories. This value must be an integer ranging from 0 to 4.\n";
598294a7 2234 print "When this value is set to 0, SquirrelMail will simply store all\n";
eaace00e 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 {
85645192 2250 $new_dir_hash_level =~ s/[\r\n]//g;
eaace00e 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;
3392dc86 2264}
ccfb2029 2265
2266sub command35 {
eaace00e 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 {
85645192 2276 $new_default_left_size =~ s/[\r\n]//g;
eaace00e 2277 }
2278 return $new_default_left_size;
ccfb2029 2279}
2280
985f7c88 2281sub command36 {
eaace00e 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
35aaf666 2288 if ( lc($force_username_lowercase) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 2296 return 'true';
eaace00e 2297 }
35aaf666 2298 return 'false';
985f7c88 2299}
2300
0d15cd19 2301sub command37 {
eaace00e 2302 print "";
2303 print "\n";
985f7c88 2304
35aaf666 2305 if ( lc($default_use_priority) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 2314 return 'true';
eaace00e 2315 }
35aaf666 2316 return 'false';
826b7f71 2317}
2318
eaace00e 2319sub command38 {
2320 print "";
2321 print "\n";
2322
35aaf666 2323 if ( lc($default_hide_attribution) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 2332 return 'true';
eaace00e 2333 }
35aaf666 2334 return 'false';
eaace00e 2335}
826b7f71 2336
8c21da0c 2337sub command39 {
eaace00e 2338 print "";
2339 print "\n";
2340
35aaf666 2341 if ( lc($default_use_mdn) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 2350 return 'true';
eaace00e 2351 }
35aaf666 2352 return 'false';
8c21da0c 2353}
2354
432db2fc 2355
8a7d0669 2356sub command310 {
85bacb8f 2357 print " In loosely managed environments, you may want to allow users
2358 to edit their full name and email address. In strictly managed
bb08da84 2359 environments, you may want to force users to use the name
2360 and email address assigned to them.
85bacb8f 2361
bb08da84 2362 'y' - allow a user to edit their full name and email address,
2363 'n' - users must use the assigned values.
85bacb8f 2364
bb08da84 2365 ";
eaace00e 2366
35aaf666 2367 if ( lc($edit_identity) eq 'true' ) {
8a7d0669 2368 $default_value = "y";
2369 } else {
2370 $default_value = "n";
2371 }
2eec12b5 2372 print "Allow editing of user's identity? (y/n) [$WHT$default_value$NRM]: $WHT";
8a7d0669 2373 $new_edit = <STDIN>;
eaace00e 2374 if ( ( $new_edit =~ /^y\n/i ) || ( ( $new_edit =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 2375 $edit_identity = 'true';
2376 $edit_name = 'true';
bb08da84 2377 $hide_auth_header = command311b();
8a7d0669 2378 } else {
35aaf666 2379 $edit_identity = 'false';
2eec12b5 2380 $edit_name = command311();
432db2fc 2381 $hide_auth_header = command311b();
8a7d0669 2382 }
2383 return $edit_identity;
2384}
2385
2386sub command311 {
85bacb8f 2387 print " Given that users are not allowed to modify their
bb08da84 2388 email address, can they edit their full name?
85bacb8f 2389
bb08da84 2390 ";
8a7d0669 2391
35aaf666 2392 if ( lc($edit_name) eq 'true' ) {
8a7d0669 2393 $default_value = "y";
2394 } else {
2395 $default_value = "n";
2396 }
bb08da84 2397 print "Allow the user to edit their full name? (y/n) [$WHT$default_value$NRM]: $WHT";
8a7d0669 2398 $new_edit = <STDIN>;
eaace00e 2399 if ( ( $new_edit =~ /^y\n/i ) || ( ( $new_edit =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 2400 $edit_name = 'true';
8a7d0669 2401 } else {
35aaf666 2402 $edit_name = 'false';
8a7d0669 2403 }
2404 return $edit_name;
2405}
8c21da0c 2406
432db2fc 2407sub command311b {
bb08da84 2408 print " SquirrelMail adds username information to every sent email
85bacb8f 2409 in order to prevent possible sender forging when users are allowed
bb08da84 2410 to change their email and/or full name.
2411
85bacb8f 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,
bb08da84 2416 this setting will make it difficult to determine who sent what where.
2417 Use at your own risk.
85bacb8f 2418
bb08da84 2419 ";
85bacb8f 2420
432db2fc 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 }
bb08da84 2433 return $hide_auth_header;
432db2fc 2434}
2435
7c612fdd 2436sub command312 {
0e3ece54 2437 print "This option allows you to disable server side thread sorting if your server \n";
801da708 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";
7c612fdd 2442 print "\n";
2443
801da708 2444 if ( lc($disable_thread_sort) eq 'true' ) {
7c612fdd 2445 $default_value = "y";
2446 } else {
2447 $default_value = "n";
2448 }
801da708 2449 print "Disable server side thread sorting? (y/n) [$WHT$default_value$NRM]: $WHT";
11e00010 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';
7c612fdd 2453 } else {
11e00010 2454 $disable_thread_sort = 'false';
7c612fdd 2455 }
11e00010 2456 return $disable_thread_sort;
7c612fdd 2457}
2458
aa0da530 2459sub command313 {
0e3ece54 2460 print "This option allows you to disable server side sorting if your server declares \n";
801da708 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.";
aa0da530 2467 print "\n";
2468
11e00010 2469 if ( lc($disable_server_sort) eq 'true' ) {
aa0da530 2470 $default_value = "y";
2471 } else {
2472 $default_value = "n";
2473 }
801da708 2474 print "Disable server-side sorting? (y/n) [$WHT$default_value$NRM]: $WHT";
11e00010 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';
aa0da530 2478 } else {
11e00010 2479 $disable_server_sort = 'false';
aa0da530 2480 }
11e00010 2481 return $disable_server_sort;
aa0da530 2482}
2483
65ffb3ce 2484sub 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
35aaf666 2489 if ( lc($allow_charset_search) eq 'true' ) {
65ffb3ce 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" ) ) ) {
35aaf666 2497 $allow_charset_search = 'true';
65ffb3ce 2498 } else {
35aaf666 2499 $allow_charset_search = 'false';
65ffb3ce 2500 }
2501 return $allow_charset_search;
2502}
2503
4ecd3a70 2504# command315 (UID support) obsoleted.
3c7ee482 2505
de74555e 2506# advanced search option
6c499577 2507sub command316 {
66bfb27b 2508 print "This option allows you to control the use of advanced search form.\n";
0f1b00b8 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>;
85645192 2516 if ( $new_allow_advanced_search =~ /^[012]\n/i ) {
0f1b00b8 2517 $allow_advanced_search = $new_allow_advanced_search;
de74555e 2518 }
85645192 2519 $allow_advanced_search =~ s/[\r\n]//g;
66bfb27b 2520 return $allow_advanced_search;
de74555e 2521}
2522
2523
2524sub command317 {
35aaf666 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";
6c499577 2528 print "[$WHT$session_name$NRM]: $WHT";
2529 $new_session_name = <STDIN>;
35aaf666 2530 chomp($new_session_name);
6614128e 2531 if ( $new_session_name eq "" ) {
6c499577 2532 $new_session_name = $session_name;
2533 }
2534 return $new_session_name;
2535}
2536
ee20a285 2537# time zone config (since 1.5.1)
2538sub 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}
dcc1cc82 2560
74530cf4 2561# set the location base for redirects (since 1.5.2)
3dc5d88f 2562sub command_config_location_base {
74530cf4 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
83139c0b 2580sub command_userThemes {
82351c82 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";
3641f36d 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 }
9061389c 2607
2608 print "\n";
3641f36d 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";
9061389c 2617
3641f36d 2618 print "\n[user_themes] command (?=help) > ";
eaace00e 2619 $input = <STDIN>;
85645192 2620 $input =~ s/[\r\n]//g;
eaace00e 2621 while ( $input ne "d" ) {
2622 if ( $input =~ /^\s*l\s*/i ) {
2623 $count = 0;
82351c82 2624 while ( $count <= $#user_theme_name ) {
2625 if ( $count == $user_theme_default ) {
eaace00e 2626 print " *";
2627 } else {
2628 print " ";
2629 }
2eec12b5 2630 if ( $count < 10 ) {
2631 print " ";
2632 }
82351c82 2633 $name = $user_theme_name[$count];
2eec12b5 2634 $num_spaces = 35 - length($name);
eaace00e 2635 for ( $i = 0 ; $i < $num_spaces ; $i++ ) {
2636 $name = $name . " ";
2637 }
2638
2639 print " $count. $name";
82351c82 2640 print "($user_theme_path[$count])\n";
eaace00e 2641
2642 $count++;
ccfb2029 2643 }
eaace00e 2644 } elsif ( $input =~ /^\s*m\s*[0-9]+/i ) {
82351c82 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;
ccfb2029 2651 }
eaace00e 2652 } elsif ( $input =~ /^\s*\+/ ) {
82351c82 2653 print "What is the name of this theme? ";
eaace00e 2654 $name = <STDIN>;
85645192 2655 $name =~ s/[\r\n]//g;
83139c0b 2656 $user_theme_name[ $#user_theme_name + 1 ] = $name;
82351c82 2657 print "Be sure to put ../css/ before the filename.\n";
2658 print "What file is this stored in (ex: ../css/my_theme/): ";
eaace00e 2659 $name = <STDIN>;
85645192 2660 $name =~ s/[\r\n]//g;
82351c82 2661 $user_theme_path[ $#user_theme_path + 1 ] = $name;
eaace00e 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 {
82351c82 2668 $rem_num = $#user_theme_name;
ccfb2029 2669 }
82351c82 2670 if ( $rem_num == $user_theme_default ) {
eaace00e 2671 print "You cannot remove the default theme!\n";
2672 } else {
2673 $count = 0;
2674 @new_theme_name = ();
2675 @new_theme_path = ();
82351c82 2676 while ( $count <= $#user_theme_name ) {
eaace00e 2677 if ( $count != $rem_num ) {
82351c82 2678 @new_theme_name = ( @new_theme_name, $user_theme_name[$count] );
2679 @new_theme_path = ( @new_theme_path, $user_theme_path[$count] );
eaace00e 2680 }
2681 $count++;
2682 }
82351c82 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--;
eaace00e 2687 }
8442ac08 2688 }
eaace00e 2689 } elsif ( $input =~ /^\s*t\s*/i ) {
2690 print "\nStarting detection...\n\n";
2691
82351c82 2692 opendir( DIR, "../css" );
2693 @files = readdir(DIR);
eaace00e 2694 $cnt = 0;
2695 while ( $cnt <= $#files ) {
82351c82 2696 $filename = "../css/" . $files[$cnt] .'/';
2697 if ( $filename ne "../css/rtl.css" && -e $filename . "default.css" ) {
eaace00e 2698 $found = 0;
82351c82 2699 for ( $x = 0 ; $x <= $#user_theme_path ; $x++ ) {
2700 if ( $user_theme_path[$x] eq $filename ) {
eaace00e 2701 $found = 1;
2702 }
2703 }
2704 if ( $found != 1 ) {
82351c82 2705 print "** Found user theme: $filename\n";
eaace00e 2706 print " What is its name? ";
2707 $nm = <STDIN>;
85645192 2708 $nm =~ s/[\n\r]//g;
82351c82 2709 $user_theme_name[ $#user_theme_name + 1 ] = $nm;
2710 $user_theme_path[ $#user_theme_path + 1 ] = $filename;
eaace00e 2711 }
2712 }
2713 $cnt++;
8442ac08 2714 }
eaace00e 2715 print "\n";
82351c82 2716 for ( $cnt = 0 ; $cnt <= $#user_theme_path ; $cnt++ ) {
2717 $filename = $user_theme_path[$cnt];
2718 if ( $filename != 'none' && !( -e $filename ."/default.css" ) ) {
eaace00e 2719 print " Removing $filename (file not found)\n";
2720 $offset = 0;
82351c82 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 ) {
eaace00e 2725 $offset = 1;
2726 }
2727 if ( $offset == 1 ) {
82351c82 2728 $new_user_theme_name[$x] = $user_theme_name[ $x + 1 ];
2729 $new_user_theme_path[$x] = $user_theme_path[ $x + 1 ];
eaace00e 2730 } else {
82351c82 2731 $new_user_theme_name[$x] = $user_theme_name[$x];
2732 $new_user_theme_path[$x] = $user_theme_path[$x];
eaace00e 2733 }
2734 }
82351c82 2735 @user_theme_name = @new_user_theme_name;
2736 @user_theme_path = @new_user_theme_path;
eaace00e 2737 }
2738 }
2739 print "\nDetection complete!\n\n";
2740
2741 closedir DIR;
2742 } elsif ( $input =~ /^\s*\?\s*/ ) {
83139c0b 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
2758sub 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";
341fd984 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";
3641f36d 2765
2766 print "Available icon themes:\n\n";
2767
2768 $count = 0;
2769 while ( $count <= $#icon_theme_name ) {
2770 if ( $count == $icon_theme_def ) {
341fd984 2771 print " d";
2772 } else {
2773 print " ";
2774 }
2775 if ( $count eq $icon_theme_fallback ) {
2776 print "f ";
3641f36d 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
341fd984 2795 print "\n d = Default icon theme\n";
2796 print " f = Fallback icon theme\n";
3641f36d 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";
341fd984 2803 print "| f N (set fallback icon set) |\n";
3641f36d 2804 print "| l (list icon themes) |\n";
2805 print "| d (done) |\n";
2806 print "`------------------------------------'\n";
2807
2808 print "\n[icon_themes] command (?=help) > ";
83139c0b 2809 $input = <STDIN>;
2810 $input =~ s/[\r\n]//g;
2811 while ( $input ne "d" ) {
2812 if ( $input =~ /^\s*l\s*/i ) {
2813 $count = 0;
341fd984 2814 print "\n";
83139c0b 2815 while ( $count <= $#icon_theme_name ) {
341fd984 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 }
83139c0b 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 }
341fd984 2837 print "\n d = Default icon theme\n";
2838 print " f = Fallback icon theme\n\n";
83139c0b 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 }
341fd984 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 }
83139c0b 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";
341fd984 2875 } elsif ( $rem_num == $icon_theme_fallback ) {
2876 print "You cannot remove the fallback icon theme!\n";
83139c0b 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";
341fd984 2953 print "| f N (set fallback icon set) |\n";
83139c0b 2954 print "| l (list icon themes) |\n";
2955 print "| d (done) |\n";
2956 print "`------------------------------------'\n";
eaace00e 2957 }
83139c0b 2958 print "[icon_themes] command (?=help) > ";
eaace00e 2959 $input = <STDIN>;
85645192 2960 $input =~ s/[\r\n]//g;
eaace00e 2961 }
2962}
ccfb2029 2963
85bacb8f 2964sub command_templates {
3641f36d 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";
85bacb8f 2968
2969 print "\n Available Templates:\n";
2970
2971 $count = 0;
2972 while ( $count <= $#templateset_name ) {
293906dd 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 ";
85bacb8f 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";
5e78e498 2993 print "($templateset_id[$count])\n";
85bacb8f 2994
2995 $count++;
2996 }
293906dd 2997 print "\n d = default template set\n"
2998 . " f = fallback template set\n\n";
85bacb8f 2999
5e78e498 3000 $menu_text = ".-------------------------------------.\n"
83139c0b 3001 . "| t (detect template set) |\n"
5e78e498 3002 . "| + (add template set) |\n"
3003 . "| - N (remove template set) |\n"
3004 . "| m N (mark default template set) |\n"
293906dd 3005 . "| f N (set fallback template set) |\n"
5e78e498 3006 . "| l (list template sets) |\n"
3007 . "| d (done) |\n"
3008 . "|-------------------------------------|\n"
3009 . "| where N is a template set number |\n"
3010 . "`-------------------------------------'\n";
85bacb8f 3011 print "\n";
5e78e498 3012 print $menu_text;
85bacb8f 3013 print "\n[template set] command (?=help) > ";
3014
3015 $input = <STDIN>;
3016 $input =~ s/[\r\n]//g;
3017 while ( $input ne "d" ) {
5e78e498 3018
3019 # list template sets
3020 #
85bacb8f 3021 if ( $input =~ /^\s*l\s*/i ) {
3022 $count = 0;
3023 while ( $count <= $#templateset_name ) {
293906dd 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 ";
85bacb8f 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";
5e78e498 3044 print "($templateset_id[$count])\n";
85bacb8f 3045
3046 $count++;
3047 }
293906dd 3048 print "\n d = default template set\n"
3049 . " f = fallback template set\n\n";
5e78e498 3050
3051 # mark default template set
3052 #
85bacb8f 3053 } elsif ( $input =~ /^\s*m\s*[0-9]+/i ) {
3054 $old_def = $templateset_default;
293906dd 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";
85bacb8f 3059 $templateset_default = $old_def;
3060 }
5e78e498 3061
293906dd 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
5e78e498 3073 # add template set
3074 #
85bacb8f 3075 } elsif ( $input =~ /^\s*\+/ ) {
5e78e498 3076 print "\nWhat is the name of this template (as shown to your users): ";
85bacb8f 3077 $name = <STDIN>;
3078 $name =~ s/[\r\n]//g;
3079 $templateset_name[ $#templateset_name + 1 ] = $name;
5e78e498 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): ";
85bacb8f 3085 $name = <STDIN>;
3086 $name =~ s/[\r\n]//g;
5e78e498 3087 $templateset_id[ $#templateset_id + 1 ] = $name;
3088
3089 # detect template sets
3090 #
85bacb8f 3091 } elsif ( $input =~ /^\s*t\s*/i ) {
3092 print "\nStarting detection...\n\n";
3093 opendir( DIR, "../templates" );
3094 @files = readdir(DIR);
3095 $cnt = 0;
85bacb8f 3096 while ( $cnt <= $#files ) {
3097 if ( -d "../templates/" . $files[$cnt] && $files[$cnt] !~ /^\./ && $files[$cnt] ne "CVS" ) {
5e78e498 3098 $filename = $files[$cnt];
85bacb8f 3099 $found = 0;
5e78e498 3100 for ( $x = 0 ; $x <= $#templateset_id ; $x++ ) {
3101 if ( $templateset_id[$x] eq $filename ) {
85bacb8f 3102 $found = 1;
5e78e498 3103 last;
85bacb8f 3104 }
3105 }
5e78e498 3106 if ( $found != 1) {
85bacb8f 3107 print "** Found template set: $filename\n";
5e78e498 3108 print " What is it's name (as shown to your users)? ";
85bacb8f 3109 $nm = <STDIN>;
3110 $nm =~ s/[\n\r]//g;
5e78e498 3111 $templateset_id[ $#templateset_id + 1 ] = $filename;
85bacb8f 3112 $templateset_name[ $#templateset_name + 1 ] = $nm;
85bacb8f 3113 }
85bacb8f 3114 }
3115 $cnt++;
3116 }
3117 print "\n";
5e78e498 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";
293906dd 3122 if ( $templateset_default eq $filename ) { $templateset_default = 'default'; }
3123 if ( $templateset_fallback eq $filename ) { $templateset_fallback = 'default'; }
85bacb8f 3124 $offset = 0;
3125 @new_templateset_name = ();
5e78e498 3126 @new_templateset_id = ();
3127 for ( $x = 0 ; $x < $#templateset_id ; $x++ ) {
3128 if ( $templateset_id[$x] eq $filename ) {
85bacb8f 3129 $offset = 1;
3130 }
3131 if ( $offset == 1 ) {
3132 $new_templateset_name[$x] = $templateset_name[ $x + 1 ];
5e78e498 3133 $new_templateset_id[$x] = $templateset_id[ $x + 1 ];
85bacb8f 3134 } else {
3135 $new_templateset_name[$x] = $templateset_name[$x];
5e78e498 3136 $new_templateset_id[$x] = $templateset_id[$x];
85bacb8f 3137 }
3138 }
3139 @templateset_name = @new_templateset_name;
5e78e498 3140 @templateset_id = @new_templateset_id;
3141 } else { $cnt++; }
85bacb8f 3142 }
3143 print "\nDetection complete!\n\n";
3144
3145 closedir DIR;
5e78e498 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]+/ ) {
85bacb8f 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 }
293906dd 3159 if ( $templateset_id[$rem_num] eq $templateset_default ) {
85bacb8f 3160 print "You cannot remove the default template set!\n";
293906dd 3161 } elsif ( $templateset_id[$rem_num] eq $templateset_fallback ) {
3162 print "You cannot remove the fallback template set!\n";
85bacb8f 3163 } else {
3164 $count = 0;
3165 @new_templateset_name = ();
5e78e498 3166 @new_templateset_id = ();
85bacb8f 3167 while ( $count <= $#templateset_name ) {
3168 if ( $count != $rem_num ) {
3169 @new_templateset_name = ( @new_templateset_name, $templateset_name[$count] );
5e78e498 3170 @new_templateset_id = ( @new_templateset_id, $templateset_id[$count] );
85bacb8f 3171 }
3172 $count++;
3173 }
3174 @templateset_name = @new_templateset_name;
5e78e498 3175 @templateset_id = @new_templateset_id;
85bacb8f 3176 }
5e78e498 3177
3178 # help
3179 #
85bacb8f 3180 } elsif ( $input =~ /^\s*\?\s*/ ) {
5e78e498 3181 print $menu_text;
293906dd 3182
3183 # command not understood
3184 #
3185 } else {
3186 print "Command not understood\n";
85bacb8f 3187 }
293906dd 3188
85bacb8f 3189 print "[template set] command (?=help) > ";
3190 $input = <STDIN>;
3191 $input =~ s/[\r\n]//g;
3192 }
3193 return $templateset_default;
3194}
3195
3196
81132de8 3197# sets default font size option
3198sub 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
3210sub 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
1e0628fb 3280sub command61 {
eaace00e 3281 print "You can now define different LDAP servers.\n";
223cc0f5 3282 print "Please ensure proper permissions for config.php when including\n";
3283 print "sensitive passwords.\n\n";
eaace00e 3284 print "[ldap] command (?=help) > ";
3285 $input = <STDIN>;
85645192 3286 $input =~ s/[\r\n]//g;
eaace00e 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 }
43397658 3305 if ( $ldap_filter[$count] ) {
3306 print " filter: $ldap_filter[$count]\n";
3307 }
30e9932c 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 }
43397658 3314 if ( $ldap_protocol[$count] ) {
30e9932c 3315 print " protocol: $ldap_protocol[$count]\n";
3316 }
43397658 3317 if ( $ldap_limit_scope[$count] ) {
3318 print " limit_scope: $ldap_limit_scope[$count]\n";
3319 }
327e2d96 3320 if ( $ldap_listing[$count] ) {
3321 print " listing: $ldap_listing[$count]\n";
3322 }
664fd7a0 3323 if ( $ldap_writeable[$count] ) {
3324 print " writeable: $ldap_writeable[$count]\n";
3325 }
593370a4 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 }
30e9932c 3332
eaace00e 3333 print "\n";
3334 $count++;
a93b12ba 3335 }
eaace00e 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";
51abca07 3340 print "this LDAP server resides. Example: ldap.bigfoot.com\n";
9061389c 3341 print "\n";
3342 print "You can use any URI compatible with your LDAP library. Please\n";
51abca07 3343 print "note that StartTLS option is not compatible with ldaps and\n";
9061389c 3344 print "ldapi URIs.\n";
eaace00e 3345 print "hostname: ";
3346 $name = <STDIN>;
85645192 3347 $name =~ s/[\r\n]//g;
eaace00e 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>;
85645192 3357 $name =~ s/[\r\n]//g;
eaace00e 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>;
85645192 3366 $name =~ s/[\r\n]//g;
eaace00e 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>;
85645192 3375 $name =~ s/[\r\n]//g;
eaace00e 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>;
85645192 3384 $name =~ s/[\r\n]//g;
eaace00e 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";
327e2d96 3390 print "Default value is equal to 250 rows. Press ENTER for default.\n";
eaace00e 3391 print "maxrows: ";
3392 $name = <STDIN>;
85645192 3393 $name =~ s/[\r\n]//g;
eaace00e 3394 $ldap_maxrows[$sub] = $name;
3395
43397658 3396
3397 print "\n";
3398
30e9932c 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>;
85645192 3403 $name =~ s/[\r\n]//g;
30e9932c 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>;
85645192 3413 $name =~ s/[\r\n]//g;
30e9932c 3414 $ldap_bindpw[$sub] = $name;
3415
3416 print "\n";
3417 }
3418
43397658 3419 print "You can specify bind protocol version here.\n";
30e9932c 3420 print "Default protocol version depends on your php ldap settings.\n";
43397658 3421 print "Press ENTER for default.\n";
30e9932c 3422 print "protocol: ";
3423 $name = <STDIN>;
85645192 3424 $name =~ s/[\r\n]//g;
30e9932c 3425 $ldap_protocol[$sub] = $name;
3426
3427 print "\n";
3428
327e2d96 3429 print "This configuration section allows to set some rarely used\n";
3430 print "options and options specific to some LDAP implementations.\n";
43397658 3431 print "\n";
327e2d96 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';
43397658 3436 } else {
327e2d96 3437 $ldap_advanced_settings = 'false';
43397658 3438 }
43397658 3439
327e2d96 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";
327e2d96 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
664fd7a0 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
327e2d96 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;
593370a4 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;
327e2d96 3530 }
43397658 3531 print "\n";
3532
eaace00e 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 = ();
43397658 3548 @new_ldap_filter = ();
30e9932c 3549 @new_ldap_bindpw = ();
3550 @new_ldap_binddn = ();
3551 @new_ldap_protocol = ();
43397658 3552 @new_ldap_limit_scope = ();
327e2d96 3553 @new_ldap_listing = ();
664fd7a0 3554 @new_ldap_writeable = ();
593370a4 3555 @new_ldap_search_tree = ();
3556 @new_ldap_starttls = ();
eaace00e 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] );
43397658 3566 @new_ldap_filter = ( @new_ldap_filter, $ldap_filter[$count] );
30e9932c 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] );
43397658 3570 @new_ldap_limit_scope = ( @new_ldap_limit_scope, $ldap_limit_scope[$count] );
327e2d96 3571 @new_ldap_listing = ( @new_ldap_listing, $ldap_listing[$count] );
664fd7a0 3572 @new_ldap_writeable = ( @new_ldap_writeable, $ldap_writeable[$count] );
593370a4 3573 @new_ldap_search_tree = ( @new_ldap_search_tree, $ldap_search_tree[$count] );
3574 @new_ldap_starttls = ( @new_ldap_starttls, $ldap_starttls[$count] );
eaace00e 3575 }
3576 $count++;
1e0628fb 3577 }
eaace00e 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;
43397658 3584 @ldap_filter = @new_ldap_filter;
30e9932c 3585 @ldap_binddn = @new_ldap_binddn;
3586 @ldap_bindpw = @new_ldap_bindpw;
3587 @ldap_protocol = @new_ldap_protocol;
43397658 3588 @ldap_limit_scope = @new_ldap_limit_scope;
327e2d96 3589 @ldap_listing = @new_ldap_listing;
664fd7a0 3590 @ldap_writeable = @new_ldap_writeable;
593370a4 3591 @ldap_search_tree = @new_ldap_search_tree;
3592 @ldap_starttls = @new_ldap_starttls;
30e9932c 3593
eaace00e 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>;
85645192 3604 $input =~ s/[\r\n]//g;
eaace00e 3605 }
3606}
1e0628fb 3607
3806fa52 3608sub command62 {
eaace00e 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
35aaf666 3619 if ( lc($default_use_javascript_addr_book) eq 'true' ) {
eaace00e 3620 $default_value = "y";
3621 } else {
35aaf666 3622 $default_use_javascript_addr_book = 'false';
eaace00e 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" ) ) ) {
35aaf666 3628 $default_use_javascript_addr_book = 'true';
eaace00e 3629 } else {
35aaf666 3630 $default_use_javascript_addr_book = 'false';
eaace00e 3631 }
3632 return $default_use_javascript_addr_book;
3806fa52 3633}
1e0628fb 3634
4272758c 3635# global filebased address book
3636sub 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";
598294a7 3641 print "relative to main SquirrelMail directory. If value is empty,\n";
4272758c 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
3656sub command64 {
7eb64c3e 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";
4272758c 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 }
7eb64c3e 3668 print "Allow writing into global file address book (y/n) [$WHT$default_value$NRM]: $WHT";
4272758c 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
71d3f882 3678# listing of global filebased abook control
3679sub 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
7311c377 3700# controls $abook_file_line_length setting
3701sub 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
497203d4 3731sub command91 {
eaace00e 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";
223cc0f5 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";
eaace00e 3739 print "If the DSN is left empty (hit space and then return) the database\n";
223cc0f5 3740 print "related code for address books will not be used.\n";
eaace00e 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 {
85645192 3753 $new_dsn =~ s/[\r\n]//g;
eaace00e 3754 $new_dsn =~ s/^\s+$//g;
3755 }
3756 return $new_dsn;
497203d4 3757}
ccfb2029 3758
4f40a59d 3759sub command92 {
eaace00e 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 {
85645192 3768 $new_table =~ s/[\r\n]//g;
eaace00e 3769 }
3770 return $new_table;
4f40a59d 3771}
3772
3499f99f 3773sub 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";
223cc0f5 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";
3499f99f 3781 print "If the DSN is left empty (hit space and then return) the database\n";
223cc0f5 3782 print "related code for address books will not be used.\n";
3499f99f 3783 print "\n";
3784
eaace00e 3785 if ( $prefs_dsn eq "" ) {
3499f99f 3786 $default_value = "Disabled";
3787 } else {
3788 $default_value = $prefs_dsn;
3789 }
3790 print "[$WHT$prefs_dsn$NRM]: $WHT";
3791 $new_dsn = <STDIN>;
eaace00e 3792 if ( $new_dsn eq "\n" ) {
3499f99f 3793 $new_dsn = "";
3794 } else {
85645192 3795 $new_dsn =~ s/[\r\n]//g;
3499f99f 3796 $new_dsn =~ s/^\s+$//g;
3797 }
3798 return $new_dsn;
3799}
3800
3801sub command94 {
3802 print "This is the name of the table you want to store the preferences\n";
99a6c222 3803 print "data in, it defaults to 'userprefs'\n";
3499f99f 3804 print "\n";
3805 print "[$WHT$prefs_table$NRM]: $WHT";
3806 $new_table = <STDIN>;
eaace00e 3807 if ( $new_table eq "\n" ) {
3499f99f 3808 $new_table = $prefs_table;
3809 } else {
85645192 3810 $new_table =~ s/[\r\n]//g;
3499f99f 3811 }
3812 return $new_table;
eaace00e 3813}
3499f99f 3814
99a6c222 3815sub 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 {
85645192 3826 $new_field =~ s/[\r\n]//g;
99a6c222 3827 }
06316c07 3828 $prefs_user_size = db_pref_size($prefs_user_size);
99a6c222 3829 return $new_field;
3830}
3831
3832sub 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 {
85645192 3841 $new_field =~ s/[\r\n]//g;
99a6c222 3842 }
06316c07 3843 $prefs_key_size = db_pref_size($prefs_key_size);
99a6c222 3844 return $new_field;
3845}
3846
3847sub 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 {
85645192 3856 $new_field =~ s/[\r\n]//g;
99a6c222 3857 }
06316c07 3858 $prefs_val_size = db_pref_size($prefs_val_size);
99a6c222 3859 return $new_field;
3860}
3861
06316c07 3862# routine is used to set database field limits
3863# it needs one argument
3864sub 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
30e9932c 3878sub 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";
223cc0f5 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";
30e9932c 3886 print "If the DSN is left empty (hit space and then return) the database\n";
223cc0f5 3887 print "related code for global SQL address book will not be used.\n";
30e9932c 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 {
85645192 3900 $new_dsn =~ s/[\r\n]//g;
30e9932c 3901 $new_dsn =~ s/^\s+$//g;
3902 }
3903 return $new_dsn;
3904}
3905
3906sub command99 {
3907 print "This is the name of the table you want to store the global address book\n";
6e00b127 3908 print "data in. Default table name is 'global_abook'. Address book uses same\n";
3909 print "database format as personal address book.\n";
30e9932c 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 {
85645192 3916 $new_table =~ s/[\r\n]//g;
30e9932c 3917 }
3918 return $new_table;
3919}
3920
3921sub command910 {
3922 print "This option controls users\' ability to add or modify records stored \n";
3923 print "in global address book\n";
3924
35aaf666 3925 if ( lc($addrbook_global_writeable) eq 'true' ) {
30e9932c 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" ) ) ) {
35aaf666 3933 $addrbook_global_writeable = 'true';
30e9932c 3934 } else {
35aaf666 3935 $addrbook_global_writeable = 'false';
30e9932c 3936 }
3937 return $addrbook_global_writeable;
3938}
3939
3940sub command911 {
3941 print "Enable this option if you want to see listing of addresses stored \n";
3942 print "in global address book\n";
3943
35aaf666 3944 if ( lc($addrbook_global_listing) eq 'true' ) {
30e9932c 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" ) ) ) {
35aaf666 3952 $addrbook_global_listing = 'true';
30e9932c 3953 } else {
35aaf666 3954 $addrbook_global_listing = 'false';
30e9932c 3955 }
3956 return $addrbook_global_listing;
3957}
3958
3959
39d3ec89 3960# Default language
3961sub 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 {
85645192 3971 $new_squirrelmail_default_language =~ s/[\r\n]//g;
39d3ec89 3972 $new_squirrelmail_default_language =~ s/^\s+$//g;
3973 }
3974 return $new_squirrelmail_default_language;
3975}
3976# Default Charset
3977sub commandA2 {
fe48c808 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";
867fed37 3981 print "charsets that are set in translation settings.\n";
39d3ec89 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 {
85645192 3989 $new_default_charset =~ s/[\r\n]//g;
39d3ec89 3990 }
3991 return $new_default_charset;
3992}
3993# Alternative language names
3994sub commandA3 {
3995 print "Enable this option if you want to see localized language names in\n";
5ba5dc8e 3996 print "language selection box. Note, that this option can trigger\n";
3997 print "installation of foreign language support modules in some browsers.\n";
39d3ec89 3998 print "\n";
3999
35aaf666 4000 if ( lc($show_alternative_names) eq 'true' ) {
39d3ec89 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" ) ) ) {
35aaf666 4008 $show_alternative_names = 'true';
39d3ec89 4009 } else {
35aaf666 4010 $show_alternative_names = 'false';
39d3ec89 4011 }
4012 return $show_alternative_names;
4013}
5ba5dc8e 4014
f03f6ee7 4015# Aggressive decoding
5ba5dc8e 4016sub commandA4 {
39d3ec89 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
f03f6ee7 4023 if ( lc($aggressive_decoding) eq 'true' ) {
39d3ec89 4024 $default_value = "y";
4025 } else {
4026 $default_value = "n";
4027 }
f03f6ee7 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';
39d3ec89 4032 } else {
f03f6ee7 4033 $aggressive_decoding = 'false';
39d3ec89 4034 }
f03f6ee7 4035 return $aggressive_decoding;
39d3ec89 4036}
4037
6d3689f5 4038# Lossy encoding
5ba5dc8e 4039sub commandA5 {
6d3689f5 4040 print "Enable this option if you want to allow lossy charset encoding in message\n";
f03f6ee7 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
6d3689f5 4046 if ( lc($lossy_encoding) eq 'true' ) {
f03f6ee7 4047 $default_value = "y";
4048 } else {
4049 $default_value = "n";
4050 }
6d3689f5 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';
f03f6ee7 4055 } else {
6d3689f5 4056 $lossy_encoding = 'false';
f03f6ee7 4057 }
6d3689f5 4058 return $lossy_encoding;
f03f6ee7 4059}
4060
74d6a0d9 4061# display html emails in iframe
4062sub 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}
6395c46d 4083# use icons
39d3ec89 4084sub commandB3 {
6395c46d 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
35aaf666 4094 if ( lc($use_icons) eq 'true' ) {
6395c46d 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" ) ) ) {
35aaf666 4102 $use_icons = 'true';
6395c46d 4103 } else {
35aaf666 4104 $use_icons = 'false';
6395c46d 4105 }
4106 return $use_icons;
4107}
4108# php recode
4109sub commandB4 {
39d3ec89 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
35aaf666 4117 if ( lc($use_php_recode) eq 'true' ) {
39d3ec89 4118 $default_value = "y";
4119 } else {
4120 $default_value = "n";
4121 }
ad9d110a 4122 print "Use php recode functions? (y/n) [$WHT$default_value$NRM]: $WHT";
39d3ec89 4123 $use_php_recode = <STDIN>;
4124 if ( ( $use_php_recode =~ /^y\n/i ) || ( ( $use_php_recode =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 4125 $use_php_recode = 'true';
39d3ec89 4126 } else {
35aaf666 4127 $use_php_recode = 'false';
39d3ec89 4128 }
4129 return $use_php_recode;
4130}
4131# php iconv
6395c46d 4132sub commandB5 {
39d3ec89 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
35aaf666 4141 if ( lc($use_php_iconv) eq 'true' ) {
39d3ec89 4142 $default_value = "y";
4143 } else {
4144 $default_value = "n";
4145 }
ad9d110a 4146 print "Use php iconv functions? (y/n) [$WHT$default_value$NRM]: $WHT";
39d3ec89 4147 $use_php_iconv = <STDIN>;
4148 if ( ( $use_php_iconv =~ /^y\n/i ) || ( ( $use_php_iconv =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 4149 $use_php_iconv = 'true';
39d3ec89 4150 } else {
35aaf666 4151 $use_php_iconv = 'false';
39d3ec89 4152 }
4153 return $use_php_iconv;
4154}
4155
71d3f882 4156# configtest block
4157sub 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
72bf0ae7 4177# Default Icon theme
4178sub commandB7 {
9061389c 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";
72bf0ae7 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}
39d3ec89 4203
ccfb2029 4204sub save_data {
ebd13f55 4205 $tab = " ";
eaace00e 4206 if ( open( CF, ">config.php" ) ) {
ebd13f55 4207 print CF "<?php\n";
4208 print CF "\n";
eaace00e 4209
ebd13f55 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";
93c06fa2 4215 print CF "global \$version;\n";
598294a7 4216
ebd13f55 4217 if ($print_config_version) {
eaace00e 4218 print CF "\$config_version = '$print_config_version';\n";
ebd13f55 4219 }
35aaf666 4220 # integer
254ded61 4221 print CF "\$config_use_color = $config_use_color;\n";
ebd13f55 4222 print CF "\n";
598294a7 4223
35aaf666 4224 # string
d756b071 4225 print CF "\$org_name = \"$org_name\";\n";
254ded61 4226 # string
35aaf666 4227 print CF "\$org_logo = " . &change_to_SM_path($org_logo) . ";\n";
b6e0c3b6 4228 $org_logo_width |= 0;
4229 $org_logo_height |= 0;
35aaf666 4230 # string
6c2d0a35 4231 print CF "\$org_logo_width = '$org_logo_width';\n";
4232 # string
35aaf666 4233 print CF "\$org_logo_height = '$org_logo_height';\n";
4234 # string that can contain variables.
12947430 4235 print CF "\$org_title = \"$org_title\";\n";
35aaf666 4236 # string
8bd9e0dd 4237 print CF "\$signout_page = " . &change_to_SM_path($signout_page) . ";\n";
35aaf666 4238 # string
3d043efc 4239 print CF "\$frame_top = '$frame_top';\n";
ebd13f55 4240 print CF "\n";
eaace00e 4241
0ae4c1f2 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
35aaf666 4248 # string that can contain variables
254ded61 4249 print CF "\$motd = \"$motd\";\n";
ebd13f55 4250 print CF "\n";
598294a7 4251
35aaf666 4252 # string
ebd13f55 4253 print CF "\$squirrelmail_default_language = '$squirrelmail_default_language';\n";
35aaf666 4254 # string
39d3ec89 4255 print CF "\$default_charset = '$default_charset';\n";
35aaf666 4256 # boolean
6cbbd722 4257 print CF "\$show_alternative_names = $show_alternative_names;\n";
35aaf666 4258 # boolean
f03f6ee7 4259 print CF "\$aggressive_decoding = $aggressive_decoding;\n";
4260 # boolean
6d3689f5 4261 print CF "\$lossy_encoding = $lossy_encoding;\n";
ebd13f55 4262 print CF "\n";
eaace00e 4263
35aaf666 4264 # string
ebd13f55 4265 print CF "\$domain = '$domain';\n";
35aaf666 4266 # string
ebd13f55 4267 print CF "\$imapServerAddress = '$imapServerAddress';\n";
35aaf666 4268 # integer
254ded61 4269 print CF "\$imapPort = $imapPort;\n";
35aaf666 4270 # boolean
254ded61 4271 print CF "\$useSendmail = $useSendmail;\n";
35aaf666 4272 # string
ebd13f55 4273 print CF "\$smtpServerAddress = '$smtpServerAddress';\n";
35aaf666 4274 # integer
254ded61 4275 print CF "\$smtpPort = $smtpPort;\n";
35aaf666 4276 # string
ebd13f55 4277 print CF "\$sendmail_path = '$sendmail_path';\n";
fd7ab795 4278 # string
4279 print CF "\$sendmail_args = '$sendmail_args';\n";
35aaf666 4280 # boolean
47a29326 4281# print CF "\$use_authenticated_smtp = $use_authenticated_smtp;\n";
35aaf666 4282 # boolean
254ded61 4283 print CF "\$pop_before_smtp = $pop_before_smtp;\n";
35aaf666 4284 # string
ebd13f55 4285 print CF "\$imap_server_type = '$imap_server_type';\n";
35aaf666 4286 # boolean
374726c9 4287 print CF "\$invert_time = $invert_time;\n";
35aaf666 4288 # string
ebd13f55 4289 print CF "\$optional_delimiter = '$optional_delimiter';\n";
432db2fc 4290 # string
4291 print CF "\$encode_header_key = '$encode_header_key';\n";
ebd13f55 4292 print CF "\n";
eaace00e 4293
81132de8 4294 # string
ebd13f55 4295 print CF "\$default_folder_prefix = '$default_folder_prefix';\n";
81132de8 4296 # string
ebd13f55 4297 print CF "\$trash_folder = '$trash_folder';\n";
81132de8 4298 # string
ebd13f55 4299 print CF "\$sent_folder = '$sent_folder';\n";
81132de8 4300 # string
ebd13f55 4301 print CF "\$draft_folder = '$draft_folder';\n";
81132de8 4302 # boolean
254ded61 4303 print CF "\$default_move_to_trash = $default_move_to_trash;\n";
81132de8 4304 # boolean
254ded61 4305 print CF "\$default_move_to_sent = $default_move_to_sent;\n";
81132de8 4306 # boolean
254ded61 4307 print CF "\$default_save_as_draft = $default_save_as_draft;\n";
81132de8 4308 # boolean
254ded61 4309 print CF "\$show_prefix_option = $show_prefix_option;\n";
81132de8 4310 # boolean
254ded61 4311 print CF "\$list_special_folders_first = $list_special_folders_first;\n";
81132de8 4312 # boolean
254ded61 4313 print CF "\$use_special_folder_color = $use_special_folder_color;\n";
81132de8 4314 # boolean
254ded61 4315 print CF "\$auto_expunge = $auto_expunge;\n";
81132de8 4316 # boolean
254ded61 4317 print CF "\$default_sub_of_inbox = $default_sub_of_inbox;\n";
81132de8 4318 # boolean
254ded61 4319 print CF "\$show_contain_subfolders_option = $show_contain_subfolders_option;\n";
81132de8 4320 # integer
254ded61 4321 print CF "\$default_unseen_notify = $default_unseen_notify;\n";
81132de8 4322 # integer
254ded61 4323 print CF "\$default_unseen_type = $default_unseen_type;\n";
81132de8 4324 # boolean
254ded61 4325 print CF "\$auto_create_special = $auto_create_special;\n";
81132de8 4326 # boolean
254ded61 4327 print CF "\$delete_folder = $delete_folder;\n";
81132de8 4328 # boolean
ca85aabe 4329 print CF "\$noselect_fix_enable = $noselect_fix_enable;\n";
4330
ebd13f55 4331 print CF "\n";
eaace00e 4332
81132de8 4333 # string
8bd9e0dd 4334 print CF "\$data_dir = " . &change_to_SM_path($data_dir) . ";\n";
81132de8 4335 # string that can contain a variable
8bd9e0dd 4336 print CF "\$attachment_dir = " . &change_to_SM_path($attachment_dir) . ";\n";
81132de8 4337 # integer
254ded61 4338 print CF "\$dir_hash_level = $dir_hash_level;\n";
81132de8 4339 # string
80519ece 4340 print CF "\$default_left_size = '$default_left_size';\n";
81132de8 4341 # boolean
254ded61 4342 print CF "\$force_username_lowercase = $force_username_lowercase;\n";
81132de8 4343 # boolean
254ded61 4344 print CF "\$default_use_priority = $default_use_priority;\n";
81132de8 4345 # boolean
254ded61 4346 print CF "\$hide_sm_attributions = $hide_sm_attributions;\n";
81132de8 4347 # boolean
254ded61 4348 print CF "\$default_use_mdn = $default_use_mdn;\n";
81132de8 4349 # boolean
254ded61 4350 print CF "\$edit_identity = $edit_identity;\n";
81132de8 4351 # boolean
254ded61 4352 print CF "\$edit_name = $edit_name;\n";
81132de8 4353 # boolean
432db2fc 4354 print CF "\$hide_auth_header = $hide_auth_header;\n";
81132de8 4355 # boolean
74530cf4 4356 print CF "\$disable_thread_sort = $disable_thread_sort;\n";
81132de8 4357 # boolean
74530cf4 4358 print CF "\$disable_server_sort = $disable_server_sort;\n";
81132de8 4359 # boolean
3c7ee482 4360 print CF "\$allow_charset_search = $allow_charset_search;\n";
81132de8 4361 # integer
0f1b00b8 4362 print CF "\$allow_advanced_search = $allow_advanced_search;\n";
ebd13f55 4363 print CF "\n";
ee20a285 4364 # integer
4365 print CF "\$time_zone_type = $time_zone_type;\n";
4366 print CF "\n";
74530cf4 4367 # string
4368 print CF "\$config_location_base = '$config_location_base';\n";
4369 print CF "\n";
598294a7 4370
81132de8 4371 # all plugins are strings
eaace00e 4372 for ( $ct = 0 ; $ct <= $#plugins ; $ct++ ) {
a1b036d6 4373 print CF "\$plugins[] = '$plugins[$ct]';\n";
ebd13f55 4374 }
4375 print CF "\n";
eaace00e 4376
81132de8 4377 # strings
82351c82 4378 if ( $user_theme_default eq '' ) { $user_theme_default = '0'; }
4379 print CF "\$user_theme_default = $user_theme_default;\n";
57c6fabc 4380
82351c82 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";
ed65d11b 4388 # escape theme name so it can contain single quotes.
82351c82 4389 $esc_name = $user_theme_name[$count];
ed65d11b 4390 $esc_name =~ s/\\/\\\\/g;
4391 $esc_name =~ s/'/\\'/g;
82351c82 4392 print CF "\$user_themes[$count]['NAME'] = '$esc_name';\n";
ebd13f55 4393 }
4394 print CF "\n";
eaace00e 4395
83139c0b 4396 if ( $icon_theme_def eq '' ) { $icon_theme_def = '0'; }
4397 print CF "\$icon_theme_def = $icon_theme_def;\n";
341fd984 4398 if ( $icon_theme_fallback eq '' ) { $icon_theme_fallback = '0'; }
4399 print CF "\$icon_theme_fallback = $icon_theme_fallback;\n";
4400
83139c0b 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
293906dd 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";
85bacb8f 4422
4423 for ( $count = 0 ; $count <= $#templateset_name ; $count++ ) {
5e78e498 4424 print CF "\$aTemplateSet[$count]['ID'] = '" . $templateset_id[$count] . "';\n";
85bacb8f 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
81132de8 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
96862638 4446 ## Address books
4447 # boolean
ebd13f55 4448 print CF "\$default_use_javascript_addr_book = $default_use_javascript_addr_book;\n";
eaace00e 4449 for ( $count = 0 ; $count <= $#ldap_host ; $count++ ) {
4450 print CF "\$ldap_server[$count] = array(\n";
81132de8 4451 # string
eaace00e 4452 print CF " 'host' => '$ldap_host[$count]',\n";
81132de8 4453 # string
eaace00e 4454 print CF " 'base' => '$ldap_base[$count]'";
4455 if ( $ldap_name[$count] ) {
4456 print CF ",\n";
81132de8 4457 # string
eaace00e 4458 print CF " 'name' => '$ldap_name[$count]'";
4459 }
4460 if ( $ldap_port[$count] ) {
4461 print CF ",\n";
81132de8 4462 # integer
254ded61 4463 print CF " 'port' => $ldap_port[$count]";
eaace00e 4464 }
4465 if ( $ldap_charset[$count] ) {
4466 print CF ",\n";
81132de8 4467 # string
eaace00e 4468 print CF " 'charset' => '$ldap_charset[$count]'";
4469 }
4470 if ( $ldap_maxrows[$count] ) {
4471 print CF ",\n";
81132de8 4472 # integer
254ded61 4473 print CF " 'maxrows' => $ldap_maxrows[$count]";
eaace00e 4474 }
43397658 4475 # string
4476 if ( $ldap_filter[$count] ) {
4477 print CF ",\n";
4478 print CF " 'filter' => '$ldap_filter[$count]'";
4479 }
30e9932c 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";
327e2d96 4492 # integer
30e9932c 4493 print CF " 'protocol' => $ldap_protocol[$count]";
4494 }
43397658 4495 if ( $ldap_limit_scope[$count] ) {
4496 print CF ",\n";
4497 # boolean
4498 print CF " 'limit_scope' => $ldap_limit_scope[$count]";
4499 }
327e2d96 4500 if ( $ldap_listing[$count] ) {
4501 print CF ",\n";
4502 # boolean
4503 print CF " 'listing' => $ldap_listing[$count]";
4504 }
664fd7a0 4505 if ( $ldap_writeable[$count] ) {
4506 print CF ",\n";
4507 # boolean
4508 print CF " 'writeable' => $ldap_writeable[$count]";
4509 }
593370a4 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 }
eaace00e 4520 print CF "\n";
4521 print CF ");\n";
4522 print CF "\n";
ebd13f55 4523 }
b622e1b8 4524
81132de8 4525 # string
4f40a59d 4526 print CF "\$addrbook_dsn = '$addrbook_dsn';\n";
81132de8 4527 # string
4f40a59d 4528 print CF "\$addrbook_table = '$addrbook_table';\n\n";
81132de8 4529 # string
3499f99f 4530 print CF "\$prefs_dsn = '$prefs_dsn';\n";
81132de8 4531 # string
99a6c222 4532 print CF "\$prefs_table = '$prefs_table';\n";
81132de8 4533 # string
99a6c222 4534 print CF "\$prefs_user_field = '$prefs_user_field';\n";
81132de8 4535 # integer
06316c07 4536 print CF "\$prefs_user_size = $prefs_user_size;\n";
81132de8 4537 # string
99a6c222 4538 print CF "\$prefs_key_field = '$prefs_key_field';\n";
81132de8 4539 # integer
06316c07 4540 print CF "\$prefs_key_size = $prefs_key_size;\n";
81132de8 4541 # string
06316c07 4542 print CF "\$prefs_val_field = '$prefs_val_field';\n";
81132de8 4543 # integer
06316c07 4544 print CF "\$prefs_val_size = $prefs_val_size;\n\n";
81132de8 4545 # string
30e9932c 4546 print CF "\$addrbook_global_dsn = '$addrbook_global_dsn';\n";
81132de8 4547 # string
30e9932c 4548 print CF "\$addrbook_global_table = '$addrbook_global_table';\n";
81132de8 4549 # boolean
4272758c 4550 print CF "\$addrbook_global_writeable = $addrbook_global_writeable;\n";
81132de8 4551 # boolean
30e9932c 4552 print CF "\$addrbook_global_listing = $addrbook_global_listing;\n\n";
81132de8 4553 # string
4272758c 4554 print CF "\$abook_global_file = '$abook_global_file';\n";
81132de8 4555 # boolean
4272758c 4556 print CF "\$abook_global_file_writeable = $abook_global_file_writeable;\n\n";
81132de8 4557 # boolean
71d3f882 4558 print CF "\$abook_global_file_listing = $abook_global_file_listing;\n\n";
7311c377 4559 # integer
4560 print CF "\$abook_file_line_length = $abook_file_line_length;\n\n";
81132de8 4561 # boolean
6395c46d 4562 print CF "\$no_list_for_subscribe = $no_list_for_subscribe;\n";
47a29326 4563
81132de8 4564 # string
6395c46d 4565 print CF "\$smtp_auth_mech = '$smtp_auth_mech';\n";
029d1fc2 4566 print CF "\$smtp_sitewide_user = '". quote_single($smtp_sitewide_user) ."';\n";
4567 print CF "\$smtp_sitewide_pass = '". quote_single($smtp_sitewide_pass) ."';\n";
81132de8 4568 # string
6395c46d 4569 print CF "\$imap_auth_mech = '$imap_auth_mech';\n";
81132de8 4570 # boolean
6395c46d 4571 print CF "\$use_imap_tls = $use_imap_tls;\n";
81132de8 4572 # boolean
6395c46d 4573 print CF "\$use_smtp_tls = $use_smtp_tls;\n";
81132de8 4574 # string
6395c46d 4575 print CF "\$session_name = '$session_name';\n";
6c499577 4576
81132de8 4577 print CF "\n";
35aaf666 4578
81132de8 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";
85bacb8f 4594
35aaf666 4595 close CF;
ebd13f55 4596
35aaf666 4597 print "Data saved in config.php\n";
8b56e282 4598
4599 build_plugin_hook_array();
4600
ebd13f55 4601 } else {
4602 print "Error saving config.php: $!\n";
4603 }
911ad01c 4604}
a93b12ba 4605
4606sub set_defaults {
f8c17cdd 4607 clear_screen();
eaace00e 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";
e498ebbd 4627 print " bincimap = Binc IMAP server\n";
a33764f6 4628 print " courier = Courier IMAP server\n";
b39825f0 4629 print " cyrus = Cyrus IMAP server\n";
a33764f6 4630 print " dovecot = Dovecot Secure IMAP server\n";
b39825f0 4631 print " exchange = Microsoft Exchange IMAP server\n";
b39825f0 4632 print " hmailserver = hMailServer\n";
a33764f6 4633 print " macosx = Mac OS X Mailserver\n";
b39825f0 4634 print " mercury32 = Mercury/32\n";
a33764f6 4635 print " uw = University of Washington's IMAP server\n";
4636 print "\n";
b39825f0 4637 print " quit = Do not change anything\n";
a33764f6 4638 print "\n";
eaace00e 4639 print "Command >> ";
4640 $server = <STDIN>;
85645192 4641 $server =~ s/[\r\n]//g;
eaace00e 4642
e498ebbd 4643 # variable is used to display additional messages.
4644 $message = "";
4645
eaace00e 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>";
b79b84c2 4658 $force_username_lowercase = false;
eaace00e 4659
3e6c7bc3 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
eaace00e 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;
2eec12b5 4675 $delete_folder = true;
b79b84c2 4676 $force_username_lowercase = true;
598294a7 4677
eaace00e 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>";
b79b84c2 4690 $force_username_lowercase = true;
eaace00e 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;
2eec12b5 4704 $delete_folder = true;
b79b84c2 4705 $force_username_lowercase = false;
598294a7 4706
cfe486a7 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;
eaace00e 4720
063ed2b1 4721 $continue = 1;
b39825f0 4722 } elsif ( $server eq "hmailserver" ) {
4723 $imap_server_type = "hmailserver";
946b11e9 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;
e50f5ac2 4734 $delete_folder = false;
4735 $force_username_lowercase = false;
b39825f0 4736
e50f5ac2 4737 $continue = 1;
063ed2b1 4738 } elsif ( $server eq "mercury32" ) {
4739 $imap_server_type = "mercury32";
4740 $default_folder_prefix = "";
67a24f8a 4741 $trash_folder = "Trash";
4742 $sent_folder = "Sent";
4743 $draft_folder = "Drafts";
063ed2b1 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
a33764f6 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
e498ebbd 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
eaace00e 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";
2eec12b5 4802 print " delete_folder = $delete_folder\n";
b79b84c2 4803 print " force_username_lowercase = $force_username_lowercase\n";
e498ebbd 4804
4805 print "$message";
eaace00e 4806 }
b79b84c2 4807 print "\nPress enter to continue...";
eaace00e 4808 $tmp = <STDIN>;
a93b12ba 4809}
8bd9e0dd 4810
8bd9e0dd 4811# This subroutine corrects relative paths to ensure they
4812# will work within the SM space. If the path falls within
598294a7 4813# the SM directory tree, the SM_PATH variable will be
8bd9e0dd 4814# prepended to the path, if not, then the path will be
e6566358 4815# converted to an absolute path, e.g.
2222aed0 4816# '../images/logo.gif' --> SM_PATH . 'images/logo.gif'
a2a74376 4817# '../../someplace/data' --> '/absolute/path/someplace/data'
2222aed0 4818# 'images/logo.gif' --> SM_PATH . 'config/images/logo.gif'
4819# '/absolute/path/logo.gif' --> '/absolute/path/logo.gif'
4820# 'http://whatever/' --> 'http://whatever'
b72da239 4821# $some_var/path --> "$some_var/path"
8bd9e0dd 4822sub 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 '');
a28a56da 4831 return "\'" . $old_path . "\'" if ( $old_path =~ /^(\/|http)/ );
d3fb3870 4832 return "\'" . $old_path . "\'" if ( $old_path =~ /^\w:\// );
25be56ab 4833 return $old_path if ( $old_path =~ /^\'(\/|http)/ );
d3fb3870 4834 return $old_path if ( $old_path =~ /^\'\w:\// );
b72da239 4835 return $old_path if ( $old_path =~ /^SM_PATH/);
598294a7 4836
b72da239 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 }
598294a7 4845
25be56ab 4846 # Remove remaining '
4847 $old_path =~ s/\'//g;
598294a7 4848
8bd9e0dd 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.
a2a74376 4854 @abs_path = split(/\//, $dir);
598294a7 4855
a2a74376 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;
1df76076 4862 $new_path = "\'" . join('/', @abs_path) . "\'";
8bd9e0dd 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 . \'/;
25be56ab 4867 $new_path .= "\'";
8bd9e0dd 4868 } else {
4869 # Last, it's a relative path without any leading '.'
598294a7 4870 # Prepend SM_PATH and config, since the paths are
35aaf666 4871 # relative to the config directory
e6566358 4872 $new_path = "SM_PATH . \'config/" . $old_path . "\'";
8bd9e0dd 4873 }
8bd9e0dd 4874 return $new_path;
4875}
4876
e6566358 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'
8bd9e0dd 4883sub change_to_rel_path() {
4884 my ($old_path) = @_;
e6566358 4885 my $new_path = $old_path;
8bd9e0dd 4886
4887 if ( $old_path =~ /^SM_PATH/ ) {
5e78e498 4888 # FIXME: the following replacement loses the opening quote mark!
8bd9e0dd 4889 $new_path =~ s/^SM_PATH . \'/\.\.\//;
b72da239 4890 $new_path =~ s/\.\.\/config\///;
8bd9e0dd 4891 }
4892
4893 return $new_path;
4894}
b47821fb 4895
b47821fb 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)
61e49023 4899sub 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 }
35aaf666 4905 # Misc setup
35aaf666 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 }
598294a7 4915
35aaf666 4916 if ($service eq 'SMTP') {
5d28b77e 4917 $cmd = "AUTH $mech\r\n";
4918 $logout = "QUIT\r\n";
35aaf666 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
b47821fb 4928 my $sock=IO::Socket::INET->new($host);
4929 if (!defined($sock)) {
4930 # Connect failed
4931 return undef;
4932 }
35aaf666 4933 my $discard = <$sock>; # Server greeting/banner - who cares..
4934
4935 if ($service eq 'SMTP') {
4936 # Say hello first..
5d28b77e 4937 print $sock "HELO $domain\r\n";
35aaf666 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
5d28b77e 4952 print $sock $logout;
35aaf666 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
5d28b77e 4962 print $sock $logout;
35aaf666 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';
b47821fb 4977}
f8c17cdd 4978
fd7ab795 4979# trims whitespace
4980# Example code from O'Reilly Perl Cookbook
4981sub trim {
4982 my @out = @_;
4983 for (@out) {
4984 s/^\s+//;
4985 s/\s+$//;
4986 }
4987 return wantarray ? @out : $out[0];
4988}
4989
f8c17cdd 4990sub clear_screen() {
4991 if ( $^O =~ /^mswin/i) {
4992 system "cls";
4993 } else {
4994 system "clear";
4995 }
4996}
5ef3253e 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)
5000sub check_imap_folder($) {
5001 my $folder_name = shift(@_);
ef00a16b 5002
5003 if ($folder_name =~ /[\x80-\xFFFF]/) {
5ef3253e 5004 print "Folder name contains 8bit characters. Configuration utility requires\n";
5005 print "UTF7-IMAP encoded folder names.\n";
8b56e282 5006 print "Press enter to continue...";
5ef3253e 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}
029d1fc2 5024
5025# quotes string written in single quotes
5026sub quote_single($) {
5027 my $string = shift(@_);
5028 $string =~ s/\'/\\'/g;
5029 return $string;
5030}
8b56e282 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#
5049sub 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
5069PLUGIN: 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;
f94f306d 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 #}
8b56e282 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) {
f94f306d 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 }
8b56e282 5182 }
5183 $line =~ s/ {2,}/ /g;
6609e189 5184 $line =~ s/=/\n =/;
8b56e282 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