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