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