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