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