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