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