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