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