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