Typo.
[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 }