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