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