give an error when trying to enable a nonexistent plugin
[squirrelmail.git] / config / conf.pl
1 #!/usr/bin/env perl
2 # conf.pl
3 #
4 # Copyright (c) 1999-2007 The SquirrelMail Project Team
5 # Licensed under the GNU GPL. For full terms see COPYING.
6 #
7 # A simple configure script to configure SquirrelMail
8 #
9 # $Id$
10 ############################################################
11 $conf_pl_version = "1.5.0";
12
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 ############################################################
19 my $dir;
20 if ( eval q{require "File/Basename.pm"} ) {
21 $dir = File::Basename::dirname($0);
22 chdir($dir);
23 }
24
25 ############################################################
26 # Some people try to run this as a CGI. That's wrong!
27 ############################################################
28 if ( 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 }
35
36 ############################################################
37 # If we got here, use Cwd to get the full directory path
38 # (the Basename stuff above will sometimes return '.' as
39 # the base directory, which is not helpful here).
40 ############################################################
41 use Cwd;
42 $dir = cwd();
43
44
45 ############################################################
46 # First, lets read in the data already in there...
47 ############################################################
48 if ( -e "config.php" ) {
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";
56 print "Press enter to continue";
57 $ctu = <STDIN>;
58 exit;
59 }
60 open( FILE, "config.php" );
61 while ( $line = <FILE> ) {
62 $line =~ s/^\s+//;
63 $line =~ s/^\$//;
64 $var = $line;
65
66 $var =~ s/=/EQUALS/;
67 if ( $var =~ /^([a-z])/i ) {
68 @o = split ( /\s*EQUALS\s*/, $var );
69 if ( $o[0] eq "config_version" ) {
70 $o[1] =~ s/[\n\r]//g;
71 $o[1] =~ s/[\'\"];\s*$//;
72 $o[1] =~ s/;$//;
73 $o[1] =~ s/^[\'\"]//;
74
75 $config_version = $o[1];
76 close(FILE);
77 }
78 }
79 }
80 close(FILE);
81
82 if ( $config_version ne $conf_pl_version ) {
83 clear_screen();
84 print "WARNING:\n";
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/;
120 if ( $var =~ /^([a-z])/i ) {
121 @o = split ( /\s*EQUALS\s*/, $var );
122 if ( $o[0] eq "config_version" ) {
123 $o[1] =~ s/[\n\r]//g;
124 $o[1] =~ s/[\'\"];\s*$//;
125 $o[1] =~ s/;$//;
126 $o[1] =~ s/^[\'\"]//;
127
128 $config_version = $o[1];
129 close(FILE);
130 }
131 }
132 }
133 close(FILE);
134
135 if ( $config_version ne $conf_pl_version ) {
136 clear_screen();
137 print "WARNING:\n";
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://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" );
164 } else {
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;
169 }
170
171 # Read and parse the current configuration file
172 # (either config.php or config_default.php).
173 while ( $line = <FILE> ) {
174 $line =~ s/^\s+//;
175 $line =~ s/^\$//;
176 $var = $line;
177
178 $var =~ s/=/EQUALS/;
179 if ( $var =~ /^([a-z])/i ) {
180 @options = split ( /\s*EQUALS\s*/, $var );
181 $options[1] =~ s/[\n\r]//g;
182 $options[1] =~ s/[\'\"];\s*$//;
183 $options[1] =~ s/;$//;
184 $options[1] =~ s/^[\'\"]//;
185 # de-escape escaped strings
186 $options[1] =~ s/\\'/'/g;
187 $options[1] =~ s/\\\\/\\/g;
188
189 if ( $options[0] =~ /^user_themes\[[0-9]+\]\[['"]PATH['"]\]/ ) {
190 $sub = $options[0];
191 $sub =~ s/\]\[['"]PATH['"]\]//;
192 $sub =~ s/.*\[//;
193 if ( -e "../css/" ) {
194 $options[1] =~ s/^\.\.\/config/\.\.\/css/;
195 }
196 $user_theme_path[$sub] = &change_to_rel_path($options[1]);
197 } elsif ( $options[0] =~ /^user_themes\[[0-9]+\]\[['"]NAME['"]\]/ ) {
198 $sub = $options[0];
199 $sub =~ s/\]\[['"]NAME['"]\]//;
200 $sub =~ s/.*\[//;
201 $user_theme_name[$sub] = $options[1];
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];
215 } elsif ( $options[0] =~ /^aTemplateSet\[[0-9]+\]\[['"]ID['"]\]/ ) {
216 $sub = $options[0];
217 $sub =~ s/\]\[['"]ID['"]\]//;
218 $sub =~ s/.*\[//;
219 if ( -e "../templates" ) {
220 $options[1] =~ s/^\.\.\/config/\.\.\/templates/;
221 }
222 $templateset_id[$sub] = $options[1];
223 ##### FIXME: This section BELOW here so old prefs files don't blow up when running conf.pl
224 ##### Remove after a month or two
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
234 ##### Remove after a month or two
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];
240 } elsif ( $options[0] =~ /^plugins\[[0-9]*\]/ ) {
241 $sub = $options[0];
242 $sub =~ s/\]//;
243 $sub =~ s/^plugins\[//;
244 if ($sub eq '') {
245 push @plugins, $options[1];
246 } else {
247 $plugins[$sub] = $options[1];
248 }
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];
255 } elsif ( $options[0] =~ /^theme\[[0-9]+\]\[['"]PATH|NAME['"]\]/ ) {
256 ##
257 ## $color themes are no longer supported. Please leave this
258 ## so conf.pl doesn't barf if it encounters a $theme.
259 ##
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
270 if ( $tmp =~ /^\s*[\'\"]host[\'\"]/i ) {
271 $tmp =~ s/^\s*[\'\"]host[\'\"]\s*=>\s*[\'\"]//i;
272 $tmp =~ s/[\'\"],?\s*$//;
273 $tmp =~ s/[\'\"]\);\s*$//;
274 $host = $tmp;
275 } elsif ( $tmp =~ /^\s*[\'\"]base[\'\"]/i ) {
276 $tmp =~ s/^\s*[\'\"]base[\'\"]\s*=>\s*[\'\"]//i;
277 $tmp =~ s/[\'\"],?\s*$//;
278 $tmp =~ s/[\'\"]\);\s*$//;
279 $base = $tmp;
280 } elsif ( $tmp =~ /^\s*[\'\"]charset[\'\"]/i ) {
281 $tmp =~ s/^\s*[\'\"]charset[\'\"]\s*=>\s*[\'\"]//i;
282 $tmp =~ s/[\'\"],?\s*$//;
283 $tmp =~ s/[\'\"]\);\s*$//;
284 $charset = $tmp;
285 } elsif ( $tmp =~ /^\s*[\'\"]port[\'\"]/i ) {
286 $tmp =~ s/^\s*[\'\"]port[\'\"]\s*=>\s*[\'\"]?//i;
287 $tmp =~ s/[\'\"]?,?\s*$//;
288 $tmp =~ s/[\'\"]?\);\s*$//;
289 $port = $tmp;
290 } elsif ( $tmp =~ /^\s*[\'\"]maxrows[\'\"]/i ) {
291 $tmp =~ s/^\s*[\'\"]maxrows[\'\"]\s*=>\s*[\'\"]?//i;
292 $tmp =~ s/[\'\"]?,?\s*$//;
293 $tmp =~ s/[\'\"]?\);\s*$//;
294 $maxrows = $tmp;
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;
300 } elsif ( $tmp =~ /^\s*[\'\"]name[\'\"]/i ) {
301 $tmp =~ s/^\s*[\'\"]name[\'\"]\s*=>\s*[\'\"]//i;
302 $tmp =~ s/[\'\"],?\s*$//;
303 $tmp =~ s/[\'\"]\);\s*$//;
304 $name = $tmp;
305 } elsif ( $tmp =~ /^\s*[\'\"]binddn[\'\"]/i ) {
306 $tmp =~ s/^\s*[\'\"]binddn[\'\"]\s*=>\s*[\'\"]//i;
307 $tmp =~ s/[\'\"],?\s*$//;
308 $tmp =~ s/[\'\"]\);\s*$//;
309 $binddn = $tmp;
310 } elsif ( $tmp =~ /^\s*[\'\"]bindpw[\'\"]/i ) {
311 $tmp =~ s/^\s*[\'\"]bindpw[\'\"]\s*=>\s*[\'\"]//i;
312 $tmp =~ s/[\'\"],?\s*$//;
313 $tmp =~ s/[\'\"]\);\s*$//;
314 $bindpw = $tmp;
315 } elsif ( $tmp =~ /^\s*[\'\"]protocol[\'\"]/i ) {
316 $tmp =~ s/^\s*[\'\"]protocol[\'\"]\s*=>\s*[\'\"]?//i;
317 $tmp =~ s/[\'\"]?,?\s*$//;
318 $tmp =~ s/[\'\"]?\);\s*$//;
319 $protocol = $tmp;
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;
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;
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;
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;
345 }
346 }
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;
352 $ldap_filter[$sub] = $filter;
353 $ldap_charset[$sub] = $charset;
354 $ldap_binddn[$sub] = $binddn;
355 $ldap_bindpw[$sub] = $bindpw;
356 $ldap_protocol[$sub] = $protocol;
357 $ldap_limit_scope[$sub] = $limit_scope;
358 $ldap_listing[$sub] = $listing;
359 $ldap_writeable[$sub] = $writeable;
360 $ldap_search_tree[$sub] = $search_tree;
361 $ldap_starttls[$sub] = $starttls;
362 } elsif ( $options[0] =~ /^(data_dir|attachment_dir|org_logo|signout_page|icon_theme_def)$/ ) {
363 ${ $options[0] } = &change_to_rel_path($options[1]);
364 } else {
365 ${ $options[0] } = $options[1];
366 }
367 }
368 }
369 close FILE;
370
371 # FIXME: unknown introduction date
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 );
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 || $provider_name eq 'SquirrelMail');
389 $no_list_for_subscribe = 'false' if ( !$no_list_for_subscribe );
390 $allow_charset_search = 'true' if ( !$allow_charset_search );
391 $allow_advanced_search = 0 if ( !$allow_advanced_search) ;
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 );
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
399 # since 1.2.0
400 $hide_sm_attributions = 'false' if ( !$hide_sm_attributions );
401 # since 1.2.5
402 $edit_identity = 'true' if ( !$edit_identity );
403 $edit_name = 'true' if ( !$edit_name );
404
405 # since 1.4.0
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 );
410
411 # since 1.5.0
412 $show_alternative_names = 'false' if ( !$show_alternative_names );
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 );
416 $aggressive_decoding = 'false' if ( !$aggressive_decoding );
417 # available only in 1.5.0 and 1.5.1
418 # $advanced_tree = 'false' if ( !$advanced_tree );
419 $use_php_recode = 'false' if ( !$use_php_recode );
420 $use_php_iconv = 'false' if ( !$use_php_iconv );
421
422 # since 1.5.1
423 $use_icons = 'false' if ( !$use_icons );
424 $use_iframe = 'false' if ( !$use_iframe );
425 $lossy_encoding = 'false' if ( !$lossy_encoding );
426 $allow_remote_configtest = 'false' if ( !$allow_remote_configtest );
427
428 $sm_debug_mode = 'SM_DEBUG_MODE_MODERATE' if ( !$sm_debug_mode );
429 #FIXME: When this is STABLE software, remove the line above and uncomment the one below:
430 #$sm_debug_mode = 'SM_DEBUG_MODE_OFF' if ( !$sm_debug_mode );
431 $sm_debug_mode = convert_debug_binary_integer_to_constants($sm_debug_mode);
432
433 $addrbook_global_table = 'global_abook' if ( !$addrbook_global_table );
434 $addrbook_global_writeable = 'false' if ( !$addrbook_global_writeable );
435 $addrbook_global_listing = 'false' if ( !$addrbook_global_listing );
436 $abook_global_file = '' if ( !$abook_global_file);
437 $abook_global_file_writeable = 'false' if ( !$abook_global_file_writeable);
438 $abook_global_file_listing = 'true' if ( !$abook_global_file_listing );
439 $encode_header_key = '' if ( !$encode_header_key );
440 $hide_auth_header = 'false' if ( !$hide_auth_header );
441 $time_zone_type = '0' if ( !$time_zone_type );
442 $prefs_user_size = 128 if ( !$prefs_user_size );
443 $prefs_key_size = 64 if ( !$prefs_key_size );
444 $prefs_val_size = 65536 if ( !$prefs_val_size );
445
446 # add qmail-inject test here for backwards compatibility
447 if ( !$sendmail_args && $sendmail_path =~ /qmail-inject/ ) {
448 $sendmail_args = '';
449 } elsif ( !$sendmail_args ) {
450 $sendmail_args = '-i -t';
451 }
452
453 $default_fontsize = '' if ( !$default_fontsize);
454 $default_fontset = '' if ( !$default_fontset);
455 if ( !%fontsets) {
456 %fontsets = ('serif', 'serif',
457 'sans', 'helvetica,arial,sans-serif',
458 'comicsans', 'comic sans ms,sans-serif',
459 'tahoma', 'tahoma,sans-serif',
460 'verasans', 'bitstream vera sans,verdana,sans-serif');
461 }
462
463 # $use_imap_tls and $use_smtp_tls are switched to integer since 1.5.1
464 $use_imap_tls = 0 if ( $use_imap_tls eq 'false');
465 $use_imap_tls = 1 if ( $use_imap_tls eq 'true');
466 $use_smtp_tls = 0 if ( $use_smtp_tls eq 'false');
467 $use_smtp_tls = 1 if ( $use_smtp_tls eq 'true');
468 # sorting options changed names and reversed values in 1.5.1
469 $disable_thread_sort = 'false' if ( !$disable_thread_sort );
470 $disable_server_sort = 'false' if ( !$disable_server_sort );
471
472 # since 1.5.2
473 $abook_file_line_length = 2048 if ( !$abook_file_line_length );
474 $config_location_base = '' if ( !$config_location_base );
475 $smtp_sitewide_user = '' if ( !$smtp_sitewide_user );
476 $smtp_sitewide_pass = '' if ( !$smtp_sitewide_pass );
477 $icon_theme_def = '' if ( !$icon_theme_def );
478 $disable_plugins = 'false' if ( !$disable_plugins );
479 $disable_plugins_user = '' if ( !$disable_plugins_user );
480 $only_secure_cookies = 'true' if ( !$only_secure_cookies );
481 $ask_user_info = 'true' if ( !$ask_user_info );
482
483 if ( $ARGV[0] eq '--install-plugin' ) {
484 print "Activating plugin " . $ARGV[1] . "\n";
485 if ( -d "../plugins/" . $ARGV[1]) {
486 push @plugins, $ARGV[1];
487 save_data();
488 exit(0);
489 } else {
490 print "No such plugin.\n";
491 exit(1);
492 }
493 } elsif ( $ARGV[0] eq '--remove-plugin' ) {
494 print "Removing plugin " . $ARGV[1] . "\n";
495 foreach $plugin (@plugins) {
496 if ( $plugin ne $ARGV[1] ) {
497 push @newplugins, $plugin;
498 }
499 }
500 @plugins = @newplugins;
501 save_data();
502 exit(0);
503 } elsif ( $ARGV[0] eq '--update-plugins' or $ARGV[0] eq '-u') {
504 build_plugin_hook_array();
505 exit(0);
506 } elsif ( $ARGV[0] eq '--help' or $ARGV[0] eq '-h') {
507 print "SquirrelMail Configuration Script\n";
508 print "Usage:\n";
509 print " * No arguments: initiates the configuration dialog\n";
510 print " * --install-plugin <plugin> : activates the specified plugin\n";
511 print " * --remove-plugin <plugin> : deactivates the specified plugin\n";
512 print " * --update-plugins , -u : rebuilds plugin_hooks.php according\n";
513 print " to plugins activated in config.php\n";
514 print " * --help , -h : Displays this help\n";
515 print "\n";
516 exit(0);
517 }
518
519
520
521 ####################################################################################
522
523 # used in multiple places, define once
524 $list_supported_imap_servers =
525 " bincimap = Binc IMAP server\n" .
526 " courier = Courier IMAP server\n" .
527 " cyrus = Cyrus IMAP server\n" .
528 " dovecot = Dovecot Secure IMAP server\n" .
529 " exchange = Microsoft Exchange IMAP server\n" .
530 " hmailserver = hMailServer\n" .
531 " macosx = Mac OS X Mailserver\n" .
532 " mercury32 = Mercury/32\n" .
533 " uw = University of Washington's IMAP server\n";
534
535 #####################################################################################
536 if ( $config_use_color == 1 ) {
537 $WHT = "\x1B[37;1m";
538 $NRM = "\x1B[0m";
539 } else {
540 $WHT = "";
541 $NRM = "";
542 $config_use_color = 2;
543 }
544
545 while ( ( $command ne "q" ) && ( $command ne "Q" ) && ( $command ne ":q" ) ) {
546 clear_screen();
547 print $WHT. "SquirrelMail Configuration : " . $NRM;
548 if ( $config == 1 ) { print "Read: config.php"; }
549 elsif ( $config == 2 ) { print "Read: config_default.php"; }
550 print " ($print_config_version)\n";
551 print "---------------------------------------------------------\n";
552
553 if ( $menu == 0 ) {
554 print $WHT. "Main Menu --\n" . $NRM;
555 print "1. Organization Preferences\n";
556 print "2. Server Settings\n";
557 print "3. Folder Defaults\n";
558 print "4. General Options\n";
559 print "5. User Interface\n";
560 print "6. Address Books\n";
561 print "7. Message of the Day (MOTD)\n";
562 print "8. Plugins\n";
563 print "9. Database\n";
564 print "10. Language settings\n";
565 print "11. Tweaks\n";
566 print "\n";
567 print "D. Set pre-defined settings for specific IMAP servers\n";
568 print "\n";
569 } elsif ( $menu == 1 ) {
570 print $WHT. "Organization Preferences\n" . $NRM;
571 print "1. Organization Name : $WHT$org_name$NRM\n";
572 print "2. Organization Logo : $WHT$org_logo$NRM\n";
573 print "3. Org. Logo Width/Height : $WHT($org_logo_width/$org_logo_height)$NRM\n";
574 print "4. Organization Title : $WHT$org_title$NRM\n";
575 print "5. Signout Page : $WHT$signout_page$NRM\n";
576 print "6. Top Frame : $WHT$frame_top$NRM\n";
577 print "7. Provider link : $WHT$provider_uri$NRM\n";
578 print "8. Provider link text : $WHT$provider_name$NRM\n";
579
580 print "\n";
581 print "R Return to Main Menu\n";
582 } elsif ( $menu == 2 ) {
583 print $WHT. "Server Settings\n\n" . $NRM;
584 print $WHT . "General" . $NRM . "\n";
585 print "-------\n";
586 print "1. Domain : $WHT$domain$NRM\n";
587 print "2. Invert Time : $WHT$invert_time$NRM\n";
588 print "3. Sendmail or SMTP : $WHT";
589 if ( lc($useSendmail) eq 'true' ) {
590 print "Sendmail";
591 } else {
592 print "SMTP";
593 }
594 print "$NRM\n";
595 print "\n";
596
597 if ( $show_imap_settings ) {
598 print $WHT . "IMAP Settings". $NRM . "\n--------------\n";
599 print "4. IMAP Server : $WHT$imapServerAddress$NRM\n";
600 print "5. IMAP Port : $WHT$imapPort$NRM\n";
601 print "6. Authentication type : $WHT$imap_auth_mech$NRM\n";
602 print "7. Secure IMAP (TLS) : $WHT" . display_use_tls($use_imap_tls) . "$NRM\n";
603 print "8. Server software : $WHT$imap_server_type$NRM\n";
604 print "9. Delimiter : $WHT$optional_delimiter$NRM\n";
605 print "\n";
606 } elsif ( $show_smtp_settings ) {
607 if ( lc($useSendmail) eq 'true' ) {
608 print $WHT . "Sendmail" . $NRM . "\n--------\n";
609 print "4. Sendmail Path : $WHT$sendmail_path$NRM\n";
610 print "5. Sendmail arguments : $WHT$sendmail_args$NRM\n";
611 print "6. Header encryption key : $WHT$encode_header_key$NRM\n";
612 print "\n";
613 } else {
614 print $WHT . "SMTP Settings" . $NRM . "\n-------------\n";
615 print "4. SMTP Server : $WHT$smtpServerAddress$NRM\n";
616 print "5. SMTP Port : $WHT$smtpPort$NRM\n";
617 print "6. POP before SMTP : $WHT$pop_before_smtp$NRM\n";
618 print "7. SMTP Authentication : $WHT$smtp_auth_mech" . display_smtp_sitewide_userpass() ."$NRM\n";
619 print "8. Secure SMTP (TLS) : $WHT" . display_use_tls($use_smtp_tls) . "$NRM\n";
620 print "9. Header encryption key : $WHT$encode_header_key$NRM\n";
621 print "\n";
622 }
623 }
624
625 if ($show_imap_settings == 0) {
626 print "A. Update IMAP Settings : ";
627 print "$WHT$imapServerAddress$NRM:";
628 print "$WHT$imapPort$NRM ";
629 print "($WHT$imap_server_type$NRM)\n";
630 }
631 if ($show_smtp_settings == 0) {
632 if ( lc($useSendmail) eq 'true' ) {
633 print "B. Change Sendmail Config : $WHT$sendmail_path$NRM\n";
634 } else {
635 print "B. Update SMTP Settings : ";
636 print "$WHT$smtpServerAddress$NRM:";
637 print "$WHT$smtpPort$NRM\n";
638 }
639 }
640 if ( $show_smtp_settings || $show_imap_settings )
641 {
642 print "H. Hide " .
643 ($show_imap_settings ? "IMAP Server" :
644 (lc($useSendmail) eq 'true') ? "Sendmail" : "SMTP") . " Settings\n";
645 }
646
647 print "\n";
648 print "R Return to Main Menu\n";
649 } elsif ( $menu == 3 ) {
650 print $WHT. "Folder Defaults\n" . $NRM;
651 print "1. Default Folder Prefix : $WHT$default_folder_prefix$NRM\n";
652 print "2. Show Folder Prefix Option : $WHT$show_prefix_option$NRM\n";
653 print "3. Trash Folder : $WHT$trash_folder$NRM\n";
654 print "4. Sent Folder : $WHT$sent_folder$NRM\n";
655 print "5. Drafts Folder : $WHT$draft_folder$NRM\n";
656 print "6. By default, move to trash : $WHT$default_move_to_trash$NRM\n";
657 print "7. By default, move to sent : $WHT$default_move_to_sent$NRM\n";
658 print "8. By default, save as draft : $WHT$default_save_as_draft$NRM\n";
659 print "9. List Special Folders First : $WHT$list_special_folders_first$NRM\n";
660 print "10. Show Special Folders Color : $WHT$use_special_folder_color$NRM\n";
661 print "11. Auto Expunge : $WHT$auto_expunge$NRM\n";
662 print "12. Default Sub. of INBOX : $WHT$default_sub_of_inbox$NRM\n";
663 print "13. Show 'Contain Sub.' Option : $WHT$show_contain_subfolders_option$NRM\n";
664 print "14. Default Unseen Notify : $WHT$default_unseen_notify$NRM\n";
665 print "15. Default Unseen Type : $WHT$default_unseen_type$NRM\n";
666 print "16. Auto Create Special Folders : $WHT$auto_create_special$NRM\n";
667 print "17. Folder Delete Bypasses Trash : $WHT$delete_folder$NRM\n";
668 print "18. Enable /NoSelect folder fix : $WHT$noselect_fix_enable$NRM\n";
669 print "\n";
670 print "R Return to Main Menu\n";
671 } elsif ( $menu == 4 ) {
672 print $WHT. "General Options\n" . $NRM;
673 print "1. Data Directory : $WHT$data_dir$NRM\n";
674 print "2. Attachment Directory : $WHT$attachment_dir$NRM\n";
675 print "3. Directory Hash Level : $WHT$dir_hash_level$NRM\n";
676 print "4. Default Left Size : $WHT$default_left_size$NRM\n";
677 print "5. Usernames in Lowercase : $WHT$force_username_lowercase$NRM\n";
678 print "6. Allow use of priority : $WHT$default_use_priority$NRM\n";
679 print "7. Hide SM attributions : $WHT$hide_sm_attributions$NRM\n";
680 print "8. Allow use of receipts : $WHT$default_use_mdn$NRM\n";
681 print "9. Allow editing of identity : $WHT$edit_identity$NRM\n";
682 print " Allow editing of name : $WHT$edit_name$NRM\n";
683 print " Remove username from header : $WHT$hide_auth_header$NRM\n";
684 print "10. Disable server thread sort : $WHT$disable_thread_sort$NRM\n";
685 print "11. Disable server-side sorting : $WHT$disable_server_sort$NRM\n";
686 print "12. Allow server charset search : $WHT$allow_charset_search$NRM\n";
687 print "13. Allow advanced search : $WHT$allow_advanced_search$NRM\n";
688 print "14. PHP session name : $WHT$session_name$NRM\n";
689 print "15. Time zone configuration : $WHT$time_zone_type$NRM\n";
690 print "16. Location base : $WHT$config_location_base$NRM\n";
691 print "17. Only secure cookies if poss. : $WHT$only_secure_cookies$NRM\n";
692 print "\n";
693 print "R Return to Main Menu\n";
694 } elsif ( $menu == 5 ) {
695 print $WHT. "User Interface\n" . $NRM;
696 print "1. Use Icons? : $WHT$use_icons$NRM\n";
697 # print "3. Default Icon Set : $WHT$icon_theme_def$NRM\n";
698 print "2. Default font size : $WHT$default_fontsize$NRM\n";
699 print "3. Manage template sets (skins)\n";
700 print "4. Manage user themes\n";
701 print "5. Manage font sets\n";
702 print "6. Manage icon themes\n";
703
704 print "\n";
705 print "R Return to Main Menu\n";
706 } elsif ( $menu == 6 ) {
707 print $WHT. "Address Books\n" . $NRM;
708 print "1. Change LDAP Servers\n";
709 for ( $count = 0 ; $count <= $#ldap_host ; $count++ ) {
710 print " > $ldap_host[$count]\n";
711 }
712 print "2. Use Javascript address book search : $WHT$default_use_javascript_addr_book$NRM\n";
713 print "3. Global address book file : $WHT$abook_global_file$NRM\n";
714 print "4. Allow writing into global file address book : $WHT$abook_global_file_writeable$NRM\n";
715 print "5. Allow listing of global file address book : $WHT$abook_global_file_listing$NRM\n";
716 print "6. Allowed address book line length : $WHT$abook_file_line_length$NRM\n";
717 print "\n";
718 print "R Return to Main Menu\n";
719 } elsif ( $menu == 7 ) {
720 print $WHT. "Message of the Day (MOTD)\n" . $NRM;
721 print "\n$motd\n";
722 print "\n";
723 print "1 Edit the MOTD\n";
724 print "\n";
725 print "R Return to Main Menu\n";
726 } elsif ( $menu == 8 ) {
727 if (lc($disable_plugins) eq 'true' && $disable_plugins_user ne '') {
728 print $WHT. "Plugins (WARNING: All plugins are currently disabled\n for the user \"$disable_plugins_user\"!)\n" . $NRM;
729 } elsif (lc($disable_plugins) eq 'true') {
730 print $WHT. "Plugins (WARNING: All plugins are currently disabled!)\n" . $NRM;
731 } else {
732 print $WHT. "Plugins\n" . $NRM;
733 }
734 print " Installed Plugins\n";
735 $num = 0;
736 for ( $count = 0 ; $count <= $#plugins ; $count++ ) {
737 $num = $count + 1;
738 $english_name = get_plugin_english_name($plugins[$count]);
739 if ( $english_name eq "" ) {
740 print " $num. $plugins[$count]" . get_plugin_version($plugins[$count]) . "\n";
741 } else {
742 print " $num. $english_name ($plugins[$count])" . get_plugin_version($plugins[$count]) . "\n";
743 }
744 }
745 print "\n Available Plugins:\n";
746 opendir( DIR, "../plugins" );
747 @files = sort(readdir(DIR));
748 $pos = 0;
749 @unused_plugins = ();
750 for ( $i = 0 ; $i <= $#files ; $i++ ) {
751 if ( -d "../plugins/" . $files[$i] && $files[$i] !~ /^\./ && $files[$i] ne ".svn" ) {
752 $match = 0;
753 for ( $k = 0 ; $k <= $#plugins ; $k++ ) {
754 if ( $plugins[$k] eq $files[$i] ) {
755 $match = 1;
756 }
757 }
758 if ( $match == 0 ) {
759 $unused_plugins[$pos] = $files[$i];
760 $pos++;
761 }
762 }
763 }
764
765 for ( $i = 0 ; $i <= $#unused_plugins ; $i++ ) {
766 $num = $num + 1;
767 $english_name = get_plugin_english_name($unused_plugins[$i]);
768 if ( $english_name eq "" ) {
769 print " $num. $unused_plugins[$i]" . get_plugin_version($unused_plugins[$i]) . "\n";
770 } else {
771 print " $num. $english_name ($unused_plugins[$i])" . get_plugin_version($unused_plugins[$i]) . "\n";
772 }
773 }
774 closedir DIR;
775
776 print "\n";
777 if (lc($disable_plugins) eq 'true' && $disable_plugins_user ne '') {
778 print "E Enable active plugins (all plugins currently\n disabled for the user \"$disable_plugins_user\")\n";
779 } elsif (lc($disable_plugins) eq 'true') {
780 print "E Enable active plugins (all plugins currently\n disabled)\n";
781 } else {
782 print "D Disable all plugins\n";
783 }
784 print "U Set the user for whom plugins can be disabled\n";
785 print "R Return to Main Menu\n";
786 } elsif ( $menu == 9 ) {
787 print $WHT. "Database\n" . $NRM;
788 print "1. DSN for Address Book : $WHT$addrbook_dsn$NRM\n";
789 print "2. Table for Address Book : $WHT$addrbook_table$NRM\n";
790 print "\n";
791 print "3. DSN for Preferences : $WHT$prefs_dsn$NRM\n";
792 print "4. Table for Preferences : $WHT$prefs_table$NRM\n";
793 print "5. Field for username : $WHT$prefs_user_field$NRM ($prefs_user_size)\n";
794 print "6. Field for prefs key : $WHT$prefs_key_field$NRM ($prefs_key_size)\n";
795 print "7. Field for prefs value : $WHT$prefs_val_field$NRM ($prefs_val_size)\n";
796 print "\n";
797 print "8. DSN for Global Address Book : $WHT$addrbook_global_dsn$NRM\n";
798 print "9. Table for Global Address Book : $WHT$addrbook_global_table$NRM\n";
799 print "10. Allow writing into Global Address Book : $WHT$addrbook_global_writeable$NRM\n";
800 print "11. Allow listing of Global Address Book : $WHT$addrbook_global_listing$NRM\n";
801 print "\n";
802 print "R Return to Main Menu\n";
803 } elsif ( $menu == 10 ) {
804 print $WHT. "Language settings\n" . $NRM;
805 print "1. Default Language : $WHT$squirrelmail_default_language$NRM\n";
806 print "2. Default Charset : $WHT$default_charset$NRM\n";
807 print "3. Show alternative language names : $WHT$show_alternative_names$NRM\n";
808 print "4. Enable aggressive decoding : $WHT$aggressive_decoding$NRM\n";
809 print "5. Enable lossy encoding : $WHT$lossy_encoding$NRM\n";
810 print "\n";
811 print "R Return to Main Menu\n";
812 } elsif ( $menu == 11 ) {
813 print $WHT. "Interface tweaks\n" . $NRM;
814 print "1. Display html mails in iframe : $WHT$use_iframe$NRM\n";
815 print "2. Ask user info on first login : $WHT$ask_user_info$NRM\n";
816 print "\n";
817 print $WHT. "PHP tweaks\n" . $NRM;
818 print "4. Use php recode functions : $WHT$use_php_recode$NRM\n";
819 print "5. Use php iconv functions : $WHT$use_php_iconv$NRM\n";
820 print "\n";
821 print $WHT. "Configuration tweaks\n" . $NRM;
822 print "6. Allow remote configtest : $WHT$allow_remote_configtest$NRM\n";
823 print "7. Debug mode : $WHT$sm_debug_mode$NRM\n";
824 print "\n";
825 print "R Return to Main Menu\n";
826 }
827 if ( $config_use_color == 1 ) {
828 print "C Turn color off\n";
829 } else {
830 print "C Turn color on\n";
831 }
832 print "S Save data\n";
833 print "Q Quit\n";
834
835 print "\n";
836 print "Command >> " . $WHT;
837 $command = <STDIN>;
838 $command =~ s/[\n\r]//g;
839 $command =~ tr/A-Z/a-z/;
840 print "$NRM\n";
841
842 # Read the commands they entered.
843 if ( $command eq "r" ) {
844 $menu = 0;
845 } elsif ( $command eq "s" ) {
846 save_data();
847 print "Press enter to continue...";
848 $tmp = <STDIN>;
849 $saved = 1;
850 } elsif ( ( $command eq "q" ) && ( $saved == 0 ) ) {
851 print "You have not saved your data.\n";
852 print "Save? [" . $WHT . "Y" . $NRM . "/n]: ";
853 $save = <STDIN>;
854 if ( ( $save =~ /^y/i ) || ( $save =~ /^\s*$/ ) ) {
855 save_data();
856 }
857 } elsif ( $command eq "c" ) {
858 if ( $config_use_color == 1 ) {
859 $config_use_color = 2;
860 $WHT = "";
861 $NRM = "";
862 } else {
863 $config_use_color = 1;
864 $WHT = "\x1B[37;1m";
865 $NRM = "\x1B[0m";
866 }
867 } elsif ( $command eq "d" && $menu == 0 ) {
868 set_defaults();
869 } else {
870 $saved = 0;
871 if ( $menu == 0 ) {
872 if ( ( $command > 0 ) && ( $command < 12 ) ) {
873 $menu = $command;
874 }
875 } elsif ( $menu == 1 ) {
876 if ( $command == 1 ) { $org_name = command1(); }
877 elsif ( $command == 2 ) { $org_logo = command2(); }
878 elsif ( $command == 3 ) { ($org_logo_width,$org_logo_height) = command2a(); }
879 elsif ( $command == 4 ) { $org_title = command3(); }
880 elsif ( $command == 5 ) { $signout_page = command4(); }
881 elsif ( $command == 6 ) { $frame_top = command6(); }
882 elsif ( $command == 7 ) { $provider_uri = command7(); }
883 elsif ( $command == 8 ) { $provider_name = command8(); }
884
885 } elsif ( $menu == 2 ) {
886 if ( $command eq "a" ) { $show_imap_settings = 1; $show_smtp_settings = 0; }
887 elsif ( $command eq "b" ) { $show_imap_settings = 0; $show_smtp_settings = 1; }
888 elsif ( $command eq "h" ) { $show_imap_settings = 0; $show_smtp_settings = 0; }
889 elsif ( $command <= 3 ) {
890 if ( $command == 1 ) { $domain = command11(); }
891 elsif ( $command == 2 ) { $invert_time = command110(); }
892 elsif ( $command == 3 ) { $useSendmail = command14(); }
893 $show_imap_settings = 0; $show_smtp_settings = 0;
894 } elsif ( $show_imap_settings ) {
895 if ( $command == 4 ) { $imapServerAddress = command12(); }
896 elsif ( $command == 5 ) { $imapPort = command13(); }
897 elsif ( $command == 6 ) { $imap_auth_mech = command112a(); }
898 elsif ( $command == 7 ) { $use_imap_tls = command_use_tls("IMAP",$use_imap_tls); }
899 elsif ( $command == 8 ) { $imap_server_type = command19(); }
900 elsif ( $command == 9 ) { $optional_delimiter = command111(); }
901 } elsif ( $show_smtp_settings && lc($useSendmail) eq 'true' ) {
902 if ( $command == 4 ) { $sendmail_path = command15(); }
903 elsif ( $command == 5 ) { $sendmail_args = command_sendmail_args(); }
904 elsif ( $command == 6 ) { $encode_header_key = command114(); }
905 } elsif ( $show_smtp_settings ) {
906 if ( $command == 4 ) { $smtpServerAddress = command16(); }
907 elsif ( $command == 5 ) { $smtpPort = command17(); }
908 elsif ( $command == 6 ) { $pop_before_smtp = command18a(); }
909 elsif ( $command == 7 ) { $smtp_auth_mech = command112b(); }
910 elsif ( $command == 8 ) { $use_smtp_tls = command_use_tls("SMTP",$use_smtp_tls); }
911 elsif ( $command == 9 ) { $encode_header_key = command114(); }
912 }
913 } elsif ( $menu == 3 ) {
914 if ( $command == 1 ) { $default_folder_prefix = command21(); }
915 elsif ( $command == 2 ) { $show_prefix_option = command22(); }
916 elsif ( $command == 3 ) { $trash_folder = command23a(); }
917 elsif ( $command == 4 ) { $sent_folder = command23b(); }
918 elsif ( $command == 5 ) { $draft_folder = command23c(); }
919 elsif ( $command == 6 ) { $default_move_to_trash = command24a(); }
920 elsif ( $command == 7 ) { $default_move_to_sent = command24b(); }
921 elsif ( $command == 8 ) { $default_save_as_draft = command24c(); }
922 elsif ( $command == 9 ) { $list_special_folders_first = command27(); }
923 elsif ( $command == 10 ) { $use_special_folder_color = command28(); }
924 elsif ( $command == 11 ) { $auto_expunge = command29(); }
925 elsif ( $command == 12 ) { $default_sub_of_inbox = command210(); }
926 elsif ( $command == 13 ) { $show_contain_subfolders_option = command211(); }
927 elsif ( $command == 14 ) { $default_unseen_notify = command212(); }
928 elsif ( $command == 15 ) { $default_unseen_type = command213(); }
929 elsif ( $command == 16 ) { $auto_create_special = command214(); }
930 elsif ( $command == 17 ) { $delete_folder = command215(); }
931 elsif ( $command == 18 ) { $noselect_fix_enable = command216(); }
932 } elsif ( $menu == 4 ) {
933 if ( $command == 1 ) { $data_dir = command33a(); }
934 elsif ( $command == 2 ) { $attachment_dir = command33b(); }
935 elsif ( $command == 3 ) { $dir_hash_level = command33c(); }
936 elsif ( $command == 4 ) { $default_left_size = command35(); }
937 elsif ( $command == 5 ) { $force_username_lowercase = command36(); }
938 elsif ( $command == 6 ) { $default_use_priority = command37(); }
939 elsif ( $command == 7 ) { $hide_sm_attributions = command38(); }
940 elsif ( $command == 8 ) { $default_use_mdn = command39(); }
941 elsif ( $command == 9 ) { $edit_identity = command310(); }
942 elsif ( $command == 10 ) { $disable_thread_sort = command312(); }
943 elsif ( $command == 11 ) { $disable_server_sort = command313(); }
944 elsif ( $command == 12 ) { $allow_charset_search = command314(); }
945 elsif ( $command == 13 ) { $allow_advanced_search = command316(); }
946 elsif ( $command == 14 ) { $session_name = command317(); }
947 elsif ( $command == 15 ) { $time_zone_type = command318(); }
948 elsif ( $command == 16 ) { $config_location_base = command_config_location_base(); }
949 elsif ( $command == 17 ) { $only_secure_cookies = command319(); }
950 } elsif ( $menu == 5 ) {
951 if ( $command == 1 ) { $use_icons = commandB3(); }
952 # elsif ( $command == 3 ) { $icon_theme_def = commandB7(); }
953 elsif ( $command == 2 ) { $default_fontsize = command_default_fontsize(); }
954 elsif ( $command == 3 ) { $templateset_default = command_templates(); }
955 elsif ( $command == 4 ) { command_userThemes(); }
956 elsif ( $command == 5 ) { command_fontsets(); }
957 elsif ( $command == 6 ) { command_iconSets(); }
958 } elsif ( $menu == 6 ) {
959 if ( $command == 1 ) { command61(); }
960 elsif ( $command == 2 ) { command62(); }
961 elsif ( $command == 3 ) { $abook_global_file=command63(); }
962 elsif ( $command == 4 ) { command64(); }
963 elsif ( $command == 5 ) { command65(); }
964 elsif ( $command == 6 ) { command_abook_file_line_length(); }
965 } elsif ( $menu == 7 ) {
966 if ( $command == 1 ) { $motd = command71(); }
967 } elsif ( $menu == 8 ) {
968 if ( $command =~ /^[0-9]+/ ) { @plugins = command81(); }
969 elsif ( $command eq "u" ) { $disable_plugins_user = command82(); }
970 elsif ( $command eq "d" ) { $disable_plugins = 'true'; }
971 elsif ( $command eq "e" ) { $disable_plugins = 'false'; }
972 } elsif ( $menu == 9 ) {
973 if ( $command == 1 ) { $addrbook_dsn = command91(); }
974 elsif ( $command == 2 ) { $addrbook_table = command92(); }
975 elsif ( $command == 3 ) { $prefs_dsn = command93(); }
976 elsif ( $command == 4 ) { $prefs_table = command94(); }
977 elsif ( $command == 5 ) { $prefs_user_field = command95(); }
978 elsif ( $command == 6 ) { $prefs_key_field = command96(); }
979 elsif ( $command == 7 ) { $prefs_val_field = command97(); }
980 elsif ( $command == 8 ) { $addrbook_global_dsn = command98(); }
981 elsif ( $command == 9 ) { $addrbook_global_table = command99(); }
982 elsif ( $command == 10 ) { $addrbook_global_writeable = command910(); }
983 elsif ( $command == 11 ) { $addrbook_global_listing = command911(); }
984 } elsif ( $menu == 10 ) {
985 if ( $command == 1 ) { $squirrelmail_default_language = commandA1(); }
986 elsif ( $command == 2 ) { $default_charset = commandA2(); }
987 elsif ( $command == 3 ) { $show_alternative_names = commandA3(); }
988 elsif ( $command == 4 ) { $aggressive_decoding = commandA4(); }
989 elsif ( $command == 5 ) { $lossy_encoding = commandA5(); }
990 } elsif ( $menu == 11 ) {
991 if ( $command == 1 ) { $use_iframe = commandB2(); }
992 elsif ( $command == 2 ) { $ask_user_info = command_ask_user_info(); }
993 elsif ( $command == 4 ) { $use_php_recode = commandB4(); }
994 elsif ( $command == 5 ) { $use_php_iconv = commandB5(); }
995 elsif ( $command == 6 ) { $allow_remote_configtest = commandB6(); }
996 elsif ( $command == 7 ) { $sm_debug_mode = commandB8(); }
997 }
998 }
999 }
1000
1001 # we exit here
1002 print "\nExiting conf.pl.\n".
1003 "You might want to test your configuration by browsing to\n".
1004 "http://your-squirrelmail-location/src/configtest.php\n".
1005 "Happy SquirrelMailing!\n\n";
1006
1007
1008 ####################################################################################
1009
1010 # org_name
1011 sub command1 {
1012 print "We have tried to make the name SquirrelMail as transparent as\n";
1013 print "possible. If you set up an organization name, most places where\n";
1014 print "SquirrelMail would take credit will be credited to your organization.\n";
1015 print "\n";
1016 print "If your Organization Name includes a '\$', please precede it with a \\. \n";
1017 print "Other '\$' will be considered the beginning of a variable that\n";
1018 print "must be defined before the \$org_name is printed.\n";
1019 print "\n";
1020 print "[$WHT$org_name$NRM]: $WHT";
1021 $new_org_name = <STDIN>;
1022 if ( $new_org_name eq "\n" ) {
1023 $new_org_name = $org_name;
1024 } else {
1025 $new_org_name =~ s/[\r\n]//g;
1026 $new_org_name =~ s/\"/&quot;/g;
1027 }
1028 return $new_org_name;
1029 }
1030
1031 # org_logo
1032 sub command2 {
1033 print "Your organization's logo is an image that will be displayed at\n";
1034 print "different times throughout SquirrelMail. ";
1035 print "\n";
1036 print "Please be aware of the following: \n";
1037 print " - Relative URLs are relative to the config dir\n";
1038 print " to use the default logo, use ../images/sm_logo.png\n";
1039 print " - To specify a logo defined outside the SquirrelMail source tree\n";
1040 print " use the absolute URL the webserver would use to include the file\n";
1041 print " e.g. http://example.com/images/mylogo.gif or /images/mylogo.jpg\n";
1042 print "\n";
1043 print "[$WHT$org_logo$NRM]: $WHT";
1044 $new_org_logo = <STDIN>;
1045 if ( $new_org_logo eq "\n" ) {
1046 $new_org_logo = $org_logo;
1047 } else {
1048 $new_org_logo =~ s/[\r\n]//g;
1049 }
1050 return $new_org_logo;
1051 }
1052
1053 # org_logo_width
1054 sub command2a {
1055 print "Your organization's logo is an image that will be displayed at\n";
1056 print "different times throughout SquirrelMail. Width\n";
1057 print "and Height of your logo image. Use '0' to disable.\n";
1058 print "\n";
1059 print "Width: [$WHT$org_logo_width$NRM]: $WHT";
1060 $new_org_logo_width = <STDIN>;
1061 $new_org_logo_width =~ tr/0-9//cd; # only want digits!
1062 if ( $new_org_logo_width eq '' ) {
1063 $new_org_logo_width = $org_logo_width;
1064 }
1065 if ( $new_org_logo_width > 0 ) {
1066 print "Height: [$WHT$org_logo_height$NRM]: $WHT";
1067 $new_org_logo_height = <STDIN>;
1068 $new_org_logo_height =~ tr/0-9//cd; # only want digits!
1069 if( $new_org_logo_height eq '' ) {
1070 $new_org_logo_height = $org_logo_height;
1071 }
1072 } else {
1073 $new_org_logo_height = 0;
1074 }
1075 return ($new_org_logo_width, $new_org_logo_height);
1076 }
1077
1078 # org_title
1079 sub command3 {
1080 print "A title is what is displayed at the top of the browser window in\n";
1081 print "the titlebar. Usually this will end up looking something like:\n";
1082 print "\"Netscape: $org_title\"\n";
1083 print "\n";
1084 print "If your Organization Title includes a '\$', please precede it with a \\. \n";
1085 print "Other '\$' will be considered the beginning of a variable that\n";
1086 print "must be defined before the \$org_title is printed.\n";
1087 print "\n";
1088 print "[$WHT$org_title$NRM]: $WHT";
1089 $new_org_title = <STDIN>;
1090 if ( $new_org_title eq "\n" ) {
1091 $new_org_title = $org_title;
1092 } else {
1093 $new_org_title =~ s/[\r\n]//g;
1094 $new_org_title =~ s/\"/\'/g;
1095 }
1096 return $new_org_title;
1097 }
1098
1099 # signout_page
1100 sub command4 {
1101 print "When users click the Sign Out button they will be logged out and\n";
1102 print "then sent to signout_page. If signout_page is left empty,\n";
1103 print "(hit space and then return) they will be taken, as normal,\n";
1104 print "to the default and rather sparse SquirrelMail signout page.\n";
1105 print "\n";
1106 print "[$WHT$signout_page$NRM]: $WHT";
1107 $new_signout_page = <STDIN>;
1108 if ( $new_signout_page eq "\n" ) {
1109 $new_signout_page = $signout_page;
1110 } else {
1111 $new_signout_page =~ s/[\r\n]//g;
1112 $new_signout_page =~ s/^\s+$//g;
1113 }
1114 return $new_signout_page;
1115 }
1116
1117 # Default top frame
1118 sub command6 {
1119 print "SquirrelMail defaults to using the whole of the browser window.\n";
1120 print "This allows you to keep it within a specified frame. The default\n";
1121 print "is '_top'\n";
1122 print "\n";
1123 print "[$WHT$frame_top$NRM]: $WHT";
1124 $new_frame_top = <STDIN>;
1125 if ( $new_frame_top eq "\n" ) {
1126 $new_frame_top = '_top';
1127 } else {
1128 $new_frame_top =~ s/[\r\n]//g;
1129 $new_frame_top =~ s/^\s+$//g;
1130 }
1131 return $new_frame_top;
1132 }
1133
1134 # Default link to provider
1135 sub command7 {
1136 print "Here you can set the link on the top-right of the message list.\n";
1137 print "If empty, it will not be displayed.\n";
1138 print "\n";
1139 print "[$WHT$provider_uri$NRM]: $WHT";
1140 $new_provider_uri = <STDIN>;
1141 if ( $new_provider_uri eq "\n" ) {
1142 $new_provider_uri = '';
1143 } else {
1144 $new_provider_uri =~ s/[\r\n]//g;
1145 $new_provider_uri =~ s/^\s+$//g;
1146 }
1147 return $new_provider_uri;
1148 }
1149
1150 sub command8 {
1151 print "Here you can set the name of the link on the top-right of the message list.\n";
1152 print "The default is empty (do not display anything).'\n";
1153 print "\n";
1154 print "[$WHT$provider_name$NRM]: $WHT";
1155 $new_provider_name = <STDIN>;
1156 if ( $new_provider_name eq "\n" ) {
1157 $new_provider_name = '';
1158 } else {
1159 $new_provider_name =~ s/[\r\n]//g;
1160 $new_provider_name =~ s/^\s+$//g;
1161 $new_provider_name =~ s/\'/\\'/g;
1162 }
1163 return $new_provider_name;
1164 }
1165
1166 ####################################################################################
1167
1168 # domain
1169 sub command11 {
1170 print "The domain name is the suffix at the end of all email addresses. If\n";
1171 print "for example, your email address is jdoe\@example.com, then your domain\n";
1172 print "would be example.com.\n";
1173 print "\n";
1174 print "[$WHT$domain$NRM]: $WHT";
1175 $new_domain = <STDIN>;
1176 if ( $new_domain eq "\n" ) {
1177 $new_domain = $domain;
1178 } else {
1179 $new_domain =~ s/\s//g;
1180 }
1181 return $new_domain;
1182 }
1183
1184 # imapServerAddress
1185 sub command12 {
1186 print "This is the hostname where your IMAP server can be contacted.\n";
1187 print "[$WHT$imapServerAddress$NRM]: $WHT";
1188 $new_imapServerAddress = <STDIN>;
1189 if ( $new_imapServerAddress eq "\n" ) {
1190 $new_imapServerAddress = $imapServerAddress;
1191 } else {
1192 $new_imapServerAddress =~ s/[\r\n]//g;
1193 }
1194 return $new_imapServerAddress;
1195 }
1196
1197 # imapPort
1198 sub command13 {
1199 print "This is the port that your IMAP server is on. Usually this is 143.\n";
1200 print "[$WHT$imapPort$NRM]: $WHT";
1201 $new_imapPort = <STDIN>;
1202 if ( $new_imapPort eq "\n" ) {
1203 $new_imapPort = $imapPort;
1204 } else {
1205 $new_imapPort =~ s/[\r\n]//g;
1206 }
1207 return $new_imapPort;
1208 }
1209
1210 # useSendmail
1211 sub command14 {
1212 print "You now need to choose the method that you will use for sending\n";
1213 print "messages in SquirrelMail. You can either connect to an SMTP server\n";
1214 print "or use sendmail directly.\n";
1215 if ( lc($useSendmail) eq 'true' ) {
1216 $default_value = "1";
1217 } else {
1218 $default_value = "2";
1219 }
1220 print "\n";
1221 print " 1. Sendmail\n";
1222 print " 2. SMTP\n";
1223 print "Your choice [1/2] [$WHT$default_value$NRM]: $WHT";
1224 $use_sendmail = <STDIN>;
1225 if ( ( $use_sendmail =~ /^1\n/i )
1226 || ( ( $use_sendmail =~ /^\n/ ) && ( $default_value eq "1" ) ) ) {
1227 $useSendmail = 'true';
1228 } else {
1229 $useSendmail = 'false';
1230 }
1231 return $useSendmail;
1232 }
1233
1234 # sendmail_path
1235 sub command15 {
1236 print "Specify where the sendmail executable is located. Usually /usr/sbin/sendmail\n";
1237 print "[$WHT$sendmail_path$NRM]: $WHT";
1238 $new_sendmail_path = <STDIN>;
1239 if ( $new_sendmail_path eq "\n" ) {
1240 $new_sendmail_path = $sendmail_path;
1241 } else {
1242 $new_sendmail_path =~ s/[\r\n]//g;
1243 }
1244 return $new_sendmail_path;
1245 }
1246
1247 # Extra sendmail arguments
1248 sub command_sendmail_args {
1249 print "Specify additional sendmail program arguments.\n";
1250 print "\n";
1251 print "Make sure that arguments are supported by your sendmail program. -f argument \n";
1252 print "is added automatically by SquirrelMail scripts. Variable defaults to standard\n";
1253 print "/usr/sbin/sendmail arguments. If you use qmail-inject, nbsmtp or any other \n";
1254 print "sendmail wrapper, which does not support -i and -t arguments, set variable to\n";
1255 print "empty string or use arguments suitable for your mailer.\n";
1256 print "\n";
1257 print "[$WHT$sendmail_args$NRM]: $WHT";
1258 $new_sendmail_args = <STDIN>;
1259 if ( $new_sendmail_args eq "\n" ) {
1260 $new_sendmail_args = $sendmail_args;
1261 } else {
1262 # strip linefeeds and crs.
1263 $new_sendmail_args =~ s/[\r\n]//g;
1264 }
1265 return trim($new_sendmail_args);
1266 }
1267
1268 # smtpServerAddress
1269 sub command16 {
1270 print "This is the hostname of your SMTP server.\n";
1271 print "[$WHT$smtpServerAddress$NRM]: $WHT";
1272 $new_smtpServerAddress = <STDIN>;
1273 if ( $new_smtpServerAddress eq "\n" ) {
1274 $new_smtpServerAddress = $smtpServerAddress;
1275 } else {
1276 $new_smtpServerAddress =~ s/[\r\n]//g;
1277 }
1278 return $new_smtpServerAddress;
1279 }
1280
1281 # smtpPort
1282 sub command17 {
1283 print "This is the port to connect to for SMTP. Usually 25.\n";
1284 print "[$WHT$smtpPort$NRM]: $WHT";
1285 $new_smtpPort = <STDIN>;
1286 if ( $new_smtpPort eq "\n" ) {
1287 $new_smtpPort = $smtpPort;
1288 } else {
1289 $new_smtpPort =~ s/[\r\n]//g;
1290 }
1291 return $new_smtpPort;
1292 }
1293
1294 # pop before SMTP
1295 sub command18a {
1296 print "Do you wish to use POP3 before SMTP? Your server must\n";
1297 print "support this in order for SquirrelMail to work with it.\n";
1298
1299 $YesNo = 'n';
1300 $YesNo = 'y' if ( lc($pop_before_smtp) eq 'true' );
1301
1302 print "Use pop before SMTP (y/n) [$WHT$YesNo$NRM]: $WHT";
1303
1304 $new_pop_before_smtp = <STDIN>;
1305 $new_pop_before_smtp =~ tr/yn//cd;
1306 return 'true' if ( $new_pop_before_smtp eq "y" );
1307 return 'false' if ( $new_pop_before_smtp eq "n" );
1308 return $pop_before_smtp;
1309 }
1310
1311 # imap_server_type
1312 sub command19 {
1313 print "Each IMAP server has its own quirks. As much as we tried to stick\n";
1314 print "to standards, it doesn't help much if the IMAP server doesn't follow\n";
1315 print "the same principles. We have made some work-arounds for some of\n";
1316 print "these servers. If you would like to use them, please select your\n";
1317 print "IMAP server. If you do not wish to use these work-arounds, you can\n";
1318 print "set this to \"other\", and none will be used.\n";
1319 print $list_supported_imap_servers;
1320 print "\n";
1321 print " other = Not one of the above servers\n";
1322 print "\n";
1323 print "[$WHT$imap_server_type$NRM]: $WHT";
1324 $new_imap_server_type = <STDIN>;
1325
1326 if ( $new_imap_server_type eq "\n" ) {
1327 $new_imap_server_type = $imap_server_type;
1328 } else {
1329 $new_imap_server_type =~ s/[\r\n]//g;
1330 }
1331 return $new_imap_server_type;
1332 }
1333
1334 # invert_time
1335 sub command110 {
1336 print "Sometimes the date of messages sent is messed up (off by a few hours\n";
1337 print "on some machines). Typically this happens if the system doesn't support\n";
1338 print "tm_gmtoff. It will happen only if your time zone is \"negative\".\n";
1339 print "This most often occurs on Solaris 7 machines in the United States.\n";
1340 print "By default, this is off. It should be kept off unless problems surface\n";
1341 print "about the time that messages are sent.\n";
1342 print " no = Do NOT fix time -- almost always correct\n";
1343 print " yes = Fix the time for this system\n";
1344
1345 $YesNo = 'n';
1346 $YesNo = 'y' if ( lc($invert_time) eq 'true' );
1347
1348 print "Fix the time for this system (y/n) [$WHT$YesNo$NRM]: $WHT";
1349
1350 $new_invert_time = <STDIN>;
1351 $new_invert_time =~ tr/yn//cd;
1352 return 'true' if ( $new_invert_time eq "y" );
1353 return 'false' if ( $new_invert_time eq "n" );
1354 return $invert_time;
1355 }
1356
1357 sub command111 {
1358 print "This is the delimiter that your IMAP server uses to distinguish between\n";
1359 print "folders. For example, Cyrus uses '.' as the delimiter and a complete\n";
1360 print "folder would look like 'INBOX.Friends.Bob', while UW uses '/' and would\n";
1361 print "look like 'INBOX/Friends/Bob'. Normally this should be left at 'detect'\n";
1362 print "but if you are sure you know what delimiter your server uses, you can\n";
1363 print "specify it here.\n";
1364 print "\nTo have it autodetect the delimiter, set it to 'detect'.\n\n";
1365 print "[$WHT$optional_delimiter$NRM]: $WHT";
1366 $new_optional_delimiter = <STDIN>;
1367
1368 if ( $new_optional_delimiter eq "\n" ) {
1369 $new_optional_delimiter = $optional_delimiter;
1370 } else {
1371 $new_optional_delimiter =~ s/[\r\n]//g;
1372 }
1373 return $new_optional_delimiter;
1374 }
1375 # IMAP authentication type
1376 # Possible values: login, plain, cram-md5, digest-md5
1377 # Now offers to detect supported mechs, assuming server & port are set correctly
1378
1379 sub command112a {
1380 if ($use_imap_tls ne "0") {
1381 # 1. Script does not handle TLS.
1382 # 2. Server does not have to declare all supported authentication mechs when
1383 # STARTTLS is used. Supported mechs are declared only after STARTTLS.
1384 print "Auto-detection of login methods is unavailable when using TLS or STARTTLS.\n";
1385 } else {
1386 print "If you have already set the hostname and port number, I can try to\n";
1387 print "detect the mechanisms your IMAP server supports.\n";
1388 print "I will try to detect CRAM-MD5 and DIGEST-MD5 support. I can't test\n";
1389 print "for \"login\" or \"plain\" without knowing a username and password.\n";
1390 print "Auto-detecting is optional - you can safely say \"n\" here.\n";
1391 print "\nTry to detect supported mechanisms? [y/N]: ";
1392 $inval=<STDIN>;
1393 chomp($inval);
1394 if ($inval =~ /^y\b/i) {
1395 # Yes, let's try to detect.
1396 print "Trying to detect IMAP capabilities...\n";
1397 my $host = $imapServerAddress . ':'. $imapPort;
1398 print "CRAM-MD5:\t";
1399 my $tmp = detect_auth_support('IMAP',$host,'CRAM-MD5');
1400 if (defined($tmp)) {
1401 if ($tmp eq 'YES') {
1402 print "$WHT SUPPORTED$NRM\n";
1403 } else {
1404 print "$WHT NOT SUPPORTED$NRM\n";
1405 }
1406 } else {
1407 print $WHT . " ERROR DETECTING$NRM\n";
1408 }
1409
1410 print "DIGEST-MD5:\t";
1411 $tmp = detect_auth_support('IMAP',$host,'DIGEST-MD5');
1412 if (defined($tmp)) {
1413 if ($tmp eq 'YES') {
1414 print "$WHT SUPPORTED$NRM\n";
1415 } else {
1416 print "$WHT NOT SUPPORTED$NRM\n";
1417 }
1418 } else {
1419 print $WHT . " ERROR DETECTING$NRM\n";
1420 }
1421
1422 }
1423 }
1424 print "\nWhat authentication mechanism do you want to use for IMAP connections?\n\n";
1425 print $WHT . "login" . $NRM . " - Plaintext. If you can do better, you probably should.\n";
1426 print $WHT . "plain" . $NRM . " - SASL PLAIN. If you need this, you already know it.\n";
1427 print $WHT . "cram-md5" . $NRM . " - Slightly better than plaintext methods.\n";
1428 print $WHT . "digest-md5" . $NRM . " - Privacy protection - better than cram-md5.\n";
1429 print "\n*** YOUR IMAP SERVER MUST SUPPORT THE MECHANISM YOU CHOOSE HERE ***\n";
1430 print "If you don't understand or are unsure, you probably want \"login\"\n\n";
1431 print "login, plain, cram-md5, or digest-md5 [$WHT$imap_auth_mech$NRM]: $WHT";
1432 $inval=<STDIN>;
1433 chomp($inval);
1434 if ( ($inval =~ /^cram-md5\b/i) || ($inval =~ /^digest-md5\b/i) || ($inval =~ /^login\b/i) || ($inval =~ /^plain\b/i)) {
1435 return lc($inval);
1436 } else {
1437 # user entered garbage or default value so nothing needs to be set
1438 return $imap_auth_mech;
1439 }
1440 }
1441
1442
1443 # SMTP authentication type
1444 # Possible choices: none, plain, cram-md5, digest-md5
1445 sub command112b {
1446 if ($use_smtp_tls ne "0") {
1447 print "Auto-detection of login methods is unavailable when using TLS or STARTTLS.\n";
1448 } elsif (eval ("use IO::Socket; 1")) {
1449 # try loading IO::Socket module
1450 print "If you have already set the hostname and port number, I can try to\n";
1451 print "automatically detect some of the mechanisms your SMTP server supports.\n";
1452 print "Auto-detection is *optional* - you can safely say \"n\" here.\n";
1453 print "\nTry to detect auth mechanisms? [y/N]: ";
1454 $inval=<STDIN>;
1455 chomp($inval);
1456 if ($inval =~ /^y\b/i) {
1457 # Yes, let's try to detect.
1458 print "Trying to detect supported methods (SMTP)...\n";
1459
1460 # Special case!
1461 # Check none by trying to relay to junk@microsoft.com
1462 $host = $smtpServerAddress . ':' . $smtpPort;
1463 my $sock = IO::Socket::INET->new($host);
1464 print "Testing none:\t\t$WHT";
1465 if (!defined($sock)) {
1466 print " ERROR TESTING\n";
1467 close $sock;
1468 } else {
1469 $got = <$sock>; # Discard greeting
1470 print $sock "HELO $domain\r\n";
1471 $got = <$sock>; # Discard
1472 print $sock "MAIL FROM:<tester\@squirrelmail.org>\r\n";
1473 $got = <$sock>; # Discard
1474 print $sock "RCPT TO:<junk\@microsoft.com\r\n";
1475 $got = <$sock>; # This is the important line
1476 if ($got =~ /^250\b/) { # SMTP will relay without auth
1477 print "SUPPORTED$NRM\n";
1478 } else {
1479 print "NOT SUPPORTED$NRM\n";
1480 }
1481 print $sock "RSET\r\n";
1482 print $sock "QUIT\r\n";
1483 close $sock;
1484 }
1485 # Try login (SquirrelMail default)
1486 print "Testing login:\t\t";
1487 $tmp=detect_auth_support('SMTP',$host,'LOGIN');
1488 if (defined($tmp)) {
1489 if ($tmp eq 'YES') {
1490 print $WHT . "SUPPORTED$NRM\n";
1491 } else {
1492 print $WHT . "NOT SUPPORTED$NRM\n";
1493 }
1494 } else {
1495 print $WHT . "ERROR DETECTING$NRM\n";
1496 }
1497
1498 # Try CRAM-MD5
1499 print "Testing CRAM-MD5:\t";
1500 $tmp=detect_auth_support('SMTP',$host,'CRAM-MD5');
1501 if (defined($tmp)) {
1502 if ($tmp eq 'YES') {
1503 print $WHT . "SUPPORTED$NRM\n";
1504 } else {
1505 print $WHT . "NOT SUPPORTED$NRM\n";
1506 }
1507 } else {
1508 print $WHT . "ERROR DETECTING$NRM\n";
1509 }
1510
1511
1512 print "Testing DIGEST-MD5:\t";
1513 $tmp=detect_auth_support('SMTP',$host,'DIGEST-MD5');
1514 if (defined($tmp)) {
1515 if ($tmp eq 'YES') {
1516 print $WHT . "SUPPORTED$NRM\n";
1517 } else {
1518 print $WHT . "NOT SUPPORTED$NRM\n";
1519 }
1520 } else {
1521 print $WHT . "ERROR DETECTING$NRM\n";
1522 }
1523 }
1524 }
1525 print "\nWhat authentication mechanism do you want to use for SMTP connections?\n";
1526 print $WHT . "none" . $NRM . " - Your SMTP server does not require authorization.\n";
1527 print $WHT . "login" . $NRM . " - Plaintext. If you can do better, you probably should.\n";
1528 print $WHT . "plain" . $NRM . " - SASL PLAIN. You already know it if you need this.\n";
1529 print $WHT . "cram-md5" . $NRM . " - Slightly better than plaintext.\n";
1530 print $WHT . "digest-md5" . $NRM . " - Privacy protection - better than cram-md5.\n";
1531 print $WHT . "\n*** YOUR SMTP SERVER MUST SUPPORT THE MECHANISM YOU CHOOSE HERE ***\n" . $NRM;
1532 print "If you don't understand or are unsure, you probably want \"none\"\n\n";
1533 print "none, login, cram-md5, or digest-md5 [$WHT$smtp_auth_mech$NRM]: $WHT";
1534 $inval=<STDIN>;
1535 chomp($inval);
1536 if ($inval =~ /^none\b/i) {
1537 # remove sitewide smtp authentication information
1538 $smtp_sitewide_user = '';
1539 $smtp_sitewide_pass = '';
1540 # SMTP doesn't necessarily require logins
1541 return "none";
1542 } elsif ( ($inval =~ /^cram-md5\b/i) || ($inval =~ /^digest-md5\b/i) ||
1543 ($inval =~ /^login\b/i) || ($inval =~/^plain\b/i)) {
1544 command_smtp_sitewide_userpass($inval);
1545 return lc($inval);
1546 } elsif (trim($inval) eq '') {
1547 # user selected default value
1548 command_smtp_sitewide_userpass($smtp_auth_mech);
1549 return $smtp_auth_mech;
1550 } else {
1551 # user entered garbage
1552 return $smtp_auth_mech;
1553 }
1554 }
1555
1556 sub command_smtp_sitewide_userpass($) {
1557 # get first function argument
1558 my $auth_mech = shift(@_);
1559 my $default, $tmp;
1560 $auth_mech = lc(trim($auth_mech));
1561 if ($auth_mech eq 'none') {
1562 return;
1563 }
1564 print "SMTP authentication uses IMAP username and password by default.\n";
1565 print "\n";
1566 print "Would you like to use other login and password for all SquirrelMail \n";
1567 print "SMTP connections?";
1568 if ($smtp_sitewide_user ne '') {
1569 $default = 'y';
1570 print " [Y/n]:";
1571 } else {
1572 $default = 'n';
1573 print " [y/N]:";
1574 }
1575 $tmp=<STDIN>;
1576 $tmp = trim($tmp);
1577
1578 if ($tmp eq '') {
1579 $tmp = $default;
1580 } else {
1581 $tmp = lc($tmp);
1582 }
1583
1584 if ($tmp eq 'n') {
1585 $smtp_sitewide_user = '';
1586 $smtp_sitewide_pass = '';
1587 } elsif ($tmp eq 'y') {
1588 print "Enter username [$smtp_sitewide_user]:";
1589 my $new_user = <STDIN>;
1590 $new_user = trim($new_user);
1591 if ($new_user ne '') {
1592 $smtp_sitewide_user = $new_user;
1593 }
1594 if ($smtp_sitewide_user ne '') {
1595 print "If you don't enter any password, current sitewide password will be used.\n";
1596 print "If you enter space, password will be set to empty string.\n";
1597 print "Enter password:";
1598 my $new_pass = <STDIN>;
1599 if ($new_pass ne "\n") {
1600 $smtp_sitewide_pass = trim($new_pass);
1601 }
1602 } else {
1603 print "Invalid input. You must set username used for SMTP authentication.\n";
1604 print "Click enter to continue\n";
1605 $tmp = <STDIN>;
1606 }
1607 } else {
1608 print "Invalid input\n";
1609 print "Click enter to continue\n";
1610 $tmp = <STDIN>;
1611 }
1612 }
1613
1614 # Sub adds information about SMTP authentication type to menu
1615 sub display_smtp_sitewide_userpass() {
1616 my $ret = '';
1617 if ($smtp_auth_mech ne 'none') {
1618 if ($smtp_sitewide_user ne '') {
1619 $ret = ' (with custom username and password)';
1620 } else {
1621 $ret = ' (with IMAP username and password)';
1622 }
1623 }
1624 return $ret;
1625 }
1626
1627 # TLS
1628 # This sub is reused for IMAP and SMTP
1629 # Args: service name, default value
1630 sub command_use_tls {
1631 my($default_val,$service,$inval);
1632 $service=$_[0];
1633 $default_val=$_[1];
1634 print "TLS (Transport Layer Security) encrypts the traffic between server and client.\n";
1635 print "STARTTLS extensions allow to start encryption on existing plain text connection.\n";
1636 print "These options add specific PHP and IMAP server configuration requirements.\n";
1637 print "See SquirrelMail documentation about connection security.\n";
1638 print "\n";
1639 print "If your " . $service . " server is localhost, you can safely disable this.\n";
1640 print "If it is remote, you may wish to seriously consider enabling this.\n";
1641 $valid_input=0;
1642 while ($valid_input eq 0) {
1643 print "\nSelect connection security model:\n";
1644 print " 0 - Use plain text connection\n";
1645 print " 1 - Use TLS connection\n";
1646 print " 2 - Use STARTTLS extension\n";
1647 print "Select [$default_val]: ";
1648 $inval=<STDIN>;
1649 $inval=trim($inval);
1650 if ($inval =~ /^[012]$/ || $inval eq '') {
1651 $valid_input = 1;
1652 }
1653 }
1654 if ($inval ne '') {$default_val = $inval};
1655 return $default_val;
1656 }
1657
1658 # This sub is used to display human readable text for
1659 # $use_imap_tls and $use_smtp_tls values in conf.pl menu
1660 sub display_use_tls($) {
1661 my $val = shift(@_);
1662 my $ret = 'disabled';
1663 if ($val eq '2') {
1664 $ret = 'STARTTLS';
1665 } elsif ($val eq '1') {
1666 $ret = 'TLS';
1667 }
1668 return $ret;
1669 }
1670
1671 # $encode_header_key
1672 sub command114{
1673 print "Encryption key allows to hide SquirrelMail Received: headers\n";
1674 print "in outbound messages. Interface uses encryption key to encode\n";
1675 print "username, remote address and proxied address, then stores encoded\n";
1676 print "information in X-Squirrel-* headers.\n";
1677 print "\n";
1678 print "Warning: used encryption function is not bulletproof. When used\n";
1679 print "with static encryption keys, it provides only minimal security\n";
1680 print "measures and information can be decoded quickly.\n";
1681 print "\n";
1682 print "Encoded information can be decoded with decrypt_headers.php script\n";
1683 print "from SquirrelMail contrib/ directory.\n";
1684 print "\n";
1685 print "Enter encryption key: ";
1686 $new_encode_header_key = <STDIN>;
1687 if ( $new_encode_header_key eq "\n" ) {
1688 $new_encode_header_key = $encode_header_key;
1689 } else {
1690 $new_encode_header_key =~ s/[\r\n]//g;
1691 }
1692 return $new_encode_header_key;
1693 }
1694
1695 # MOTD
1696 sub command71 {
1697 print "\nYou can now create the welcome message that is displayed\n";
1698 print "every time a user logs on. You can use HTML or just plain\n";
1699 print
1700 "text. If you do not wish to have one, just make it blank.\n\n(Type @ on a blank line to exit)\n";
1701
1702 $new_motd = "";
1703 do {
1704 print "] ";
1705 $line = <STDIN>;
1706 $line =~ s/[\r\n]//g;
1707 if ( $line ne "@" ) {
1708 $line =~ s/ /\&nbsp;\&nbsp;/g;
1709 $line =~ s/\t/\&nbsp;\&nbsp;\&nbsp;\&nbsp;/g;
1710 $line =~ s/$/ /;
1711 $line =~ s/\"/\\\"/g;
1712
1713 $new_motd = $new_motd . $line;
1714 }
1715 } while ( $line ne "@" );
1716 return $new_motd;
1717 }
1718
1719 ################# PLUGINS ###################
1720
1721 sub command81 {
1722 $command =~ s/[\s\n\r]*//g;
1723 if ( $command > 0 ) {
1724 $command = $command - 1;
1725 if ( $command <= $#plugins ) {
1726 @newplugins = ();
1727 $ct = 0;
1728 while ( $ct <= $#plugins ) {
1729 if ( $ct != $command ) {
1730 @newplugins = ( @newplugins, $plugins[$ct] );
1731 }
1732 $ct++;
1733 }
1734 @plugins = @newplugins;
1735 } elsif ( $command <= $#plugins + $#unused_plugins + 1 ) {
1736 $num = $command - $#plugins - 1;
1737 @newplugins = @plugins;
1738 $ct = 0;
1739 while ( $ct <= $#unused_plugins ) {
1740 if ( $ct == $num ) {
1741 @newplugins = ( @newplugins, $unused_plugins[$ct] );
1742 }
1743 $ct++;
1744 }
1745 @plugins = @newplugins;
1746 }
1747 }
1748 return @plugins;
1749 }
1750
1751 # disable_plugins_user
1752 sub command82 {
1753 print "When all active plugins are disabled, they can be disabled only\n";
1754 print "for the one user named here. If left blank, plugins will be\n";
1755 print "disabled for ALL users. This setting has no effect if plugins\n";
1756 print "are not disabled.\n";
1757 print "\n";
1758 print "This must be the exact IMAP login name for the desired user.\n";
1759 print "\n";
1760 print "[$WHT$disable_plugins_user$NRM]: $WHT";
1761 $new_disable_plugins_user = <STDIN>;
1762 if ( $new_disable_plugins_user eq "\n" ) {
1763 $new_disable_plugins_user = $disable_plugins_user;
1764 } else {
1765 $new_disable_plugins_user =~ s/[\r\n]//g;
1766 }
1767 return $new_disable_plugins_user;
1768 }
1769
1770 ################# FOLDERS ###################
1771
1772 # default_folder_prefix
1773 sub command21 {
1774 print "Some IMAP servers (UW, for example) store mail and folders in\n";
1775 print "your user space in a separate subdirectory. This is where you\n";
1776 print "specify what that directory is.\n";
1777 print "\n";
1778 print "EXAMPLE: mail/";
1779 print "\n";
1780 print "NOTE: If you use Cyrus, or some server that would not use this\n";
1781 print " option, you must set this to 'none'.\n";
1782 print "\n";
1783 print "[$WHT$default_folder_prefix$NRM]: $WHT";
1784 $new_default_folder_prefix = <STDIN>;
1785
1786 if ( $new_default_folder_prefix eq "\n" ) {
1787 $new_default_folder_prefix = $default_folder_prefix;
1788 } else {
1789 $new_default_folder_prefix =~ s/[\r\n]//g;
1790 }
1791 if ( ( $new_default_folder_prefix =~ /^\s*$/ ) || ( $new_default_folder_prefix =~ m/^none$/i ) ) {
1792 $new_default_folder_prefix = "";
1793 } else {
1794 # add the trailing delimiter only if we know what the server is.
1795 if (($imap_server_type eq 'cyrus' and
1796 $optional_delimiter eq 'detect') or
1797 ($imap_server_type eq 'courier' and
1798 $optional_delimiter eq 'detect')) {
1799 $new_default_folder_prefix =~ s/\.*$/\./;
1800 } elsif ($imap_server_type eq 'uw' and
1801 $optional_delimiter eq 'detect') {
1802 $new_default_folder_prefix =~ s/\/*$/\//;
1803 }
1804 }
1805 return $new_default_folder_prefix;
1806 }
1807
1808 # Show Folder Prefix
1809 sub command22 {
1810 print "It is possible to set up the default folder prefix as a user\n";
1811 print "specific option, where each user can specify what their mail\n";
1812 print "folder is. If you set this to false, they will never see the\n";
1813 print "option, but if it is true, this option will appear in the\n";
1814 print "'options' section.\n";
1815 print "\n";
1816 print "NOTE: You set the default folder prefix in option '1' of this\n";
1817 print " section. That will be the default if the user doesn't\n";
1818 print " specify anything different.\n";
1819 print "\n";
1820
1821 if ( lc($show_prefix_option) eq 'true' ) {
1822 $default_value = "y";
1823 } else {
1824 $default_value = "n";
1825 }
1826 print "\n";
1827 print "Show option (y/n) [$WHT$default_value$NRM]: $WHT";
1828 $new_show = <STDIN>;
1829 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1830 $show_prefix_option = 'true';
1831 } else {
1832 $show_prefix_option = 'false';
1833 }
1834 return $show_prefix_option;
1835 }
1836
1837 # Trash Folder
1838 sub command23a {
1839 print "You can now specify where the default trash folder is located.\n";
1840 print "On servers where you do not want this, you can set it to anything\n";
1841 print "and set option 6 to false.\n";
1842 print "\n";
1843 print "This is relative to where the rest of your email is kept. You do\n";
1844 print "not need to worry about their mail directory. If this folder\n";
1845 print "would be ~/mail/trash on the filesystem, you only need to specify\n";
1846 print "that this is 'trash', and be sure to put 'mail/' in option 1.\n";
1847 print "\n";
1848
1849 print "[$WHT$trash_folder$NRM]: $WHT";
1850 $new_trash_folder = <STDIN>;
1851 if ( $new_trash_folder eq "\n" ) {
1852 $new_trash_folder = $trash_folder;
1853 } else {
1854 if (check_imap_folder($new_trash_folder)) {
1855 $new_trash_folder =~ s/[\r\n]//g;
1856 } else {
1857 $new_trash_folder = $trash_folder;
1858 }
1859 }
1860 return $new_trash_folder;
1861 }
1862
1863 # Sent Folder
1864 sub command23b {
1865 print "This is where messages that are sent will be stored. SquirrelMail\n";
1866 print "by default puts a copy of all outgoing messages in this folder.\n";
1867 print "\n";
1868 print "This is relative to where the rest of your email is kept. You do\n";
1869 print "not need to worry about their mail directory. If this folder\n";
1870 print "would be ~/mail/sent on the filesystem, you only need to specify\n";
1871 print "that this is 'sent', and be sure to put 'mail/' in option 1.\n";
1872 print "\n";
1873
1874 print "[$WHT$sent_folder$NRM]: $WHT";
1875 $new_sent_folder = <STDIN>;
1876 if ( $new_sent_folder eq "\n" ) {
1877 $new_sent_folder = $sent_folder;
1878 } else {
1879 if (check_imap_folder($new_sent_folder)) {
1880 $new_sent_folder =~ s/[\r\n]//g;
1881 } else {
1882 $new_sent_folder = $sent_folder;
1883 }
1884 }
1885 return $new_sent_folder;
1886 }
1887
1888 # Draft Folder
1889 sub command23c {
1890 print "You can now specify where the default draft folder is located.\n";
1891 print "On servers where you do not want this, you can set it to anything\n";
1892 print "and set option 9 to false.\n";
1893 print "\n";
1894 print "This is relative to where the rest of your email is kept. You do\n";
1895 print "not need to worry about their mail directory. If this folder\n";
1896 print "would be ~/mail/drafts on the filesystem, you only need to specify\n";
1897 print "that this is 'drafts', and be sure to put 'mail/' in option 1.\n";
1898 print "\n";
1899
1900 print "[$WHT$draft_folder$NRM]: $WHT";
1901 $new_draft_folder = <STDIN>;
1902 if ( $new_draft_folder eq "\n" ) {
1903 $new_draft_folder = $draft_folder;
1904 } else {
1905 if (check_imap_folder($new_draft_folder)) {
1906 $new_draft_folder =~ s/[\r\n]//g;
1907 } else {
1908 $new_draft_folder = $draft_folder;
1909 }
1910 }
1911 return $new_draft_folder;
1912 }
1913
1914 # default move to trash
1915 sub command24a {
1916 print "By default, should messages get moved to the trash folder? You\n";
1917 print "can specify the default trash folder in option 3. If this is set\n";
1918 print "to false, messages will get deleted immediately without moving\n";
1919 print "to the trash folder.\n";
1920 print "\n";
1921 print "Trash folder is currently: $trash_folder\n";
1922 print "\n";
1923
1924 if ( lc($default_move_to_trash) eq 'true' ) {
1925 $default_value = "y";
1926 } else {
1927 $default_value = "n";
1928 }
1929 print "By default, move to trash (y/n) [$WHT$default_value$NRM]: $WHT";
1930 $new_show = <STDIN>;
1931 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1932 $default_move_to_trash = 'true';
1933 } else {
1934 $default_move_to_trash = 'false';
1935 }
1936 return $default_move_to_trash;
1937 }
1938
1939 # default move to sent
1940 sub command24b {
1941 print "By default, should messages get moved to the sent folder? You\n";
1942 print "can specify the default sent folder in option 4. If this is set\n";
1943 print "to false, messages will get sent and no copy will be made.\n";
1944 print "\n";
1945 print "Sent folder is currently: $sent_folder\n";
1946 print "\n";
1947
1948 if ( lc($default_move_to_sent) eq 'true' ) {
1949 $default_value = "y";
1950 } else {
1951 $default_value = "n";
1952 }
1953 print "By default, move to sent (y/n) [$WHT$default_value$NRM]: $WHT";
1954 $new_show = <STDIN>;
1955 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1956 $default_move_to_sent = 'true';
1957 } else {
1958 $default_move_to_sent = 'false';
1959 }
1960 return $default_move_to_sent;
1961 }
1962
1963 # default save as draft
1964 sub command24c {
1965 print "By default, should the save to draft option be shown? You can\n";
1966 print "specify the default drafts folder in option 5. If this is set\n";
1967 print "to false, users will not be shown the save to draft option.\n";
1968 print "\n";
1969 print "Drafts folder is currently: $draft_folder\n";
1970 print "\n";
1971
1972 if ( lc($default_move_to_draft) eq 'true' ) {
1973 $default_value = "y";
1974 } else {
1975 $default_value = "n";
1976 }
1977 print "By default, save as draft (y/n) [$WHT$default_value$NRM]: $WHT";
1978 $new_show = <STDIN>;
1979 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
1980 $default_save_as_draft = 'true';
1981 } else {
1982 $default_save_as_draft = 'false';
1983 }
1984 return $default_save_as_draft;
1985 }
1986
1987 # List special folders first
1988 sub command27 {
1989 print "SquirrelMail has what we call 'special folders' that are not\n";
1990 print "manipulated and viewed like normal folders. Some examples of\n";
1991 print "these folders would be INBOX, Trash, Sent, etc. This option\n";
1992 print "Simply asks if you want these folders listed first in the folder\n";
1993 print "listing.\n";
1994 print "\n";
1995
1996 if ( lc($list_special_folders_first) eq 'true' ) {
1997 $default_value = "y";
1998 } else {
1999 $default_value = "n";
2000 }
2001 print "\n";
2002 print "List first (y/n) [$WHT$default_value$NRM]: $WHT";
2003 $new_show = <STDIN>;
2004 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2005 $list_special_folders_first = 'true';
2006 } else {
2007 $list_special_folders_first = 'false';
2008 }
2009 return $list_special_folders_first;
2010 }
2011
2012 # Show special folders color
2013 sub command28 {
2014 print "SquirrelMail has what we call 'special folders' that are not\n";
2015 print "manipulated and viewed like normal folders. Some examples of\n";
2016 print "these folders would be INBOX, Trash, Sent, etc. This option\n";
2017 print "wants to know if we should display special folders in a\n";
2018 print "color than the other folders.\n";
2019 print "\n";
2020
2021 if ( lc($use_special_folder_color) eq 'true' ) {
2022 $default_value = "y";
2023 } else {
2024 $default_value = "n";
2025 }
2026 print "\n";
2027 print "Show color (y/n) [$WHT$default_value$NRM]: $WHT";
2028 $new_show = <STDIN>;
2029 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2030 $use_special_folder_color = 'true';
2031 } else {
2032 $use_special_folder_color = 'false';
2033 }
2034 return $use_special_folder_color;
2035 }
2036
2037 # Auto expunge
2038 sub command29 {
2039 print "The way that IMAP handles deleting messages is as follows. You\n";
2040 print "mark the message as deleted, and then to 'really' delete it, you\n";
2041 print "expunge it. This option asks if you want to just have messages\n";
2042 print "marked as deleted, or if you want SquirrelMail to expunge the \n";
2043 print "messages too.\n";
2044 print "\n";
2045
2046 if ( lc($auto_expunge) eq 'true' ) {
2047 $default_value = "y";
2048 } else {
2049 $default_value = "n";
2050 }
2051 print "Auto expunge (y/n) [$WHT$default_value$NRM]: $WHT";
2052 $new_show = <STDIN>;
2053 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2054 $auto_expunge = 'true';
2055 } else {
2056 $auto_expunge = 'false';
2057 }
2058 return $auto_expunge;
2059 }
2060
2061 # Default sub of inbox
2062 sub command210 {
2063 print "Some IMAP servers (Cyrus) have all folders as subfolders of INBOX.\n";
2064 print "This can cause some confusion in folder creation for users when\n";
2065 print "they try to create folders and don't put it as a subfolder of INBOX\n";
2066 print "and get permission errors. This option asks if you want folders\n";
2067 print "to be subfolders of INBOX by default.\n";
2068 print "\n";
2069
2070 if ( lc($default_sub_of_inbox) eq 'true' ) {
2071 $default_value = "y";
2072 } else {
2073 $default_value = "n";
2074 }
2075 print "Default sub of INBOX (y/n) [$WHT$default_value$NRM]: $WHT";
2076 $new_show = <STDIN>;
2077 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2078 $default_sub_of_inbox = 'true';
2079 } else {
2080 $default_sub_of_inbox = 'false';
2081 }
2082 return $default_sub_of_inbox;
2083 }
2084
2085 # Show contain subfolder option
2086 sub command211 {
2087 print "Some IMAP servers (UW) make it so that there are two types of\n";
2088 print "folders. Those that contain messages, and those that contain\n";
2089 print "subfolders. If this is the case for your server, set this to\n";
2090 print "true, and it will ask the user whether the folder they are\n";
2091 print "creating contains subfolders or messages.\n";
2092 print "\n";
2093
2094 if ( lc($show_contain_subfolders_option) eq 'true' ) {
2095 $default_value = "y";
2096 } else {
2097 $default_value = "n";
2098 }
2099 print "Show option (y/n) [$WHT$default_value$NRM]: $WHT";
2100 $new_show = <STDIN>;
2101 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2102 $show_contain_subfolders_option = 'true';
2103 } else {
2104 $show_contain_subfolders_option = 'false';
2105 }
2106 return $show_contain_subfolders_option;
2107 }
2108
2109 # Default Unseen Notify
2110 sub command212 {
2111 print "This option specifies where the users will receive notification\n";
2112 print "about unseen messages by default. This is of course an option that\n";
2113 print "can be changed on a user level.\n";
2114 print " 1 = No notification\n";
2115 print " 2 = Only on the INBOX\n";
2116 print " 3 = On all folders\n";
2117 print "\n";
2118
2119 print "Which one should be default (1,2,3)? [$WHT$default_unseen_notify$NRM]: $WHT";
2120 $new_show = <STDIN>;
2121 if ( $new_show =~ /^[123]\n/i ) {
2122 $default_unseen_notify = $new_show;
2123 }
2124 $default_unseen_notify =~ s/[\r\n]//g;
2125 return $default_unseen_notify;
2126 }
2127
2128 # Default Unseen Type
2129 sub command213 {
2130 print "Here you can define the default way that unseen messages will be displayed\n";
2131 print "to the user in the folder listing on the left side.\n";
2132 print " 1 = Only unseen messages (4)\n";
2133 print " 2 = Unseen and Total messages (4/27)\n";
2134 print "\n";
2135
2136 print "Which one should be default (1,2)? [$WHT$default_unseen_type$NRM]: $WHT";
2137 $new_show = <STDIN>;
2138 if ( $new_show =~ /^[12]\n/i ) {
2139 $default_unseen_type = $new_show;
2140 }
2141 $default_unseen_type =~ s/[\r\n]//g;
2142 return $default_unseen_type;
2143 }
2144
2145 # Auto create special folders
2146 sub command214 {
2147 print "Would you like the Sent, Trash, and Drafts folders to be created\n";
2148 print "automatically print for you when a user logs in? If the user\n";
2149 print "accidentally deletes their special folders, this option will\n";
2150 print "automatically create it again for them.\n";
2151 print "\n";
2152
2153 if ( lc($auto_create_special) eq 'true' ) {
2154 $default_value = "y";
2155 } else {
2156 $default_value = "n";
2157 }
2158 print "Auto create special folders? (y/n) [$WHT$default_value$NRM]: $WHT";
2159 $new_show = <STDIN>;
2160 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2161 $auto_create_special = 'true';
2162 } else {
2163 $auto_create_special = 'false';
2164 }
2165 return $auto_create_special;
2166 }
2167
2168 # Automatically delete folders
2169 sub command215 {
2170 if ( $imap_server_type eq "uw" ) {
2171 print "UW IMAP servers will not allow folders containing mail to also contain folders.\n";
2172 print "Deleting folders will bypass the trash folder and be immediately deleted\n\n";
2173 print "If this is not the correct value for your server,\n";
2174 print "please use option D on the Main Menu to configure your server correctly.\n\n";
2175 print "Press enter to continue...\n";
2176 $new_delete = <STDIN>;
2177 $delete_folder = 'true';
2178 } else {
2179 if ( $imap_server_type eq "courier" ) {
2180 print "Courier (or Courier-IMAP) IMAP servers may not support ";
2181 print "subfolders of Trash. \n";
2182 print "Specifically, if Courier is set to always move messages to Trash, \n";
2183 print "Trash will be treated by Courier as a special folder that does not \n";
2184 print "allow subfolders. \n\n";
2185 print "Please verify your Courier configuration, and test folder deletion \n";
2186 print "when changing this setting.\n\n";
2187 }
2188
2189 print "Are subfolders of the Trash supported by your IMAP server?\n";
2190 print "If so, should deleted folders be sent to Trash?\n";
2191 print "If not, say no (deleted folders should not be sent to Trash)\n\n";
2192 # reversal of logic.
2193 # question was: Should folders be automatically deleted instead of sent to trash..
2194 # we've changed the question to make it more clear,
2195 # and are here handling that to avoid changing the answers..
2196 if ( lc($delete_folder) eq 'true' ) {
2197 $default_value = "n";
2198 } else {
2199 $default_value = "y";
2200 }
2201 print "Send deleted folders to Trash? (y/n) [$WHT$default_value$NRM]: $WHT";
2202 $new_delete = <STDIN>;
2203 if ( ( $new_delete =~ /^y\n/i ) || ( ( $new_delete =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2204 $delete_folder = 'false';
2205 } else {
2206 $delete_folder = 'true';
2207 }
2208 }
2209 return $delete_folder;
2210 }
2211
2212 #noselect fix
2213 sub command216 {
2214 print "Some IMAP servers allow subfolders to exist even if the parent\n";
2215 print "folders do not. This fixes some problems with the folder list\n";
2216 print "when this is the case, causing the /NoSelect folders to be displayed\n";
2217 print "\n";
2218
2219 if ( lc($noselect_fix_enable) eq 'true' ) {
2220 $default_value = "y";
2221 } else {
2222 $default_value = "n";
2223 }
2224 print "enable noselect fix? (y/n) [$WHT$noselect_fix_enable$NRM]: $WHT";
2225 $noselect_fix_enable = <STDIN>;
2226 if ( ( $noselect_fix_enable =~ /^y\n/i ) || ( ( $noselect_fix_enable =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2227 $noselect_fix_enable = 'true';
2228 } else {
2229 $noselect_fix_enable = 'false';
2230 }
2231 return $noselect_fix_enable;
2232 }
2233 ############# GENERAL OPTIONS #####################
2234
2235 # Data directory
2236 sub command33a {
2237 print "Specify the location for your data directory.\n";
2238 print "You need to create this directory yourself.\n";
2239 print "The path name can be absolute or relative (to the config directory).\n";
2240 print "Here are two examples:\n";
2241 print " Absolute: /var/local/squirrelmail/data/\n";
2242 print " Relative: ../data/\n";
2243 print "Relative paths to directories outside of the SquirrelMail distribution\n";
2244 print "will be converted to their absolute path equivalents in config.php.\n\n";
2245 print "Note: There are potential security risks with having a writeable directory\n";
2246 print "under the web server's root directory (ex: /home/httpd/html).\n";
2247 print "For this reason, it is recommended to put the data directory\n";
2248 print "in an alternate location of your choice. \n";
2249 print "\n";
2250
2251 print "[$WHT$data_dir$NRM]: $WHT";
2252 $new_data_dir = <STDIN>;
2253 if ( $new_data_dir eq "\n" ) {
2254 $new_data_dir = $data_dir;
2255 } else {
2256 $new_data_dir =~ s/[\r\n]//g;
2257 }
2258 if ( $new_data_dir =~ /^\s*$/ ) {
2259 $new_data_dir = "";
2260 } else {
2261 $new_data_dir =~ s/\/*$//g;
2262 $new_data_dir =~ s/$/\//g;
2263 }
2264 return $new_data_dir;
2265 }
2266
2267 # Attachment directory
2268 sub command33b {
2269 print "Path to directory used for storing attachments while a mail is\n";
2270 print "being composed. The path name can be absolute or relative (to the\n";
2271 print "config directory). Here are two examples:\n";
2272 print " Absolute: /var/local/squirrelmail/attach/\n";
2273 print " Relative: ../attach/\n";
2274 print "Relative paths to directories outside of the SquirrelMail distribution\n";
2275 print "will be converted to their absolute path equivalents in config.php.\n\n";
2276 print "Note: There are a few security considerations regarding this\n";
2277 print "directory:\n";
2278 print " 1. It should have the permission 733 (rwx-wx-wx) to make it\n";
2279 print " impossible for a random person with access to the webserver\n";
2280 print " to list files in this directory. Confidential data might\n";
2281 print " be laying around in there.\n";
2282 print " Depending on your user:group assignments, 730 (rwx-wx---)\n";
2283 print " may be possible, and more secure (e.g. root:apache)\n";
2284 print " 2. Since the webserver is not able to list the files in the\n";
2285 print " content is also impossible for the webserver to delete files\n";
2286 print " lying around there for too long.\n";
2287 print " 3. It should probably be another directory than the data\n";
2288 print " directory specified in option 3.\n";
2289 print "\n";
2290
2291 print "[$WHT$attachment_dir$NRM]: $WHT";
2292 $new_attachment_dir = <STDIN>;
2293 if ( $new_attachment_dir eq "\n" ) {
2294 $new_attachment_dir = $attachment_dir;
2295 } else {
2296 $new_attachment_dir =~ s/[\r\n]//g;
2297 }
2298 if ( $new_attachment_dir =~ /^\s*$/ ) {
2299 $new_attachment_dir = "";
2300 } else {
2301 $new_attachment_dir =~ s/\/*$//g;
2302 $new_attachment_dir =~ s/$/\//g;
2303 }
2304 return $new_attachment_dir;
2305 }
2306
2307 sub command33c {
2308 print "The directory hash level setting allows you to configure the level\n";
2309 print "of hashing that SquirrelMail employs in your data and attachment\n";
2310 print "directories. This value must be an integer ranging from 0 to 4.\n";
2311 print "When this value is set to 0, SquirrelMail will simply store all\n";
2312 print "files as normal in the data and attachment directories. However,\n";
2313 print "when set to a value from 1 to 4, a simple hashing scheme will be\n";
2314 print "used to organize the files in this directory. In short, the crc32\n";
2315 print "value for a username will be computed. Then, up to the first 4\n";
2316 print "digits of the hash, as set by this configuration value, will be\n";
2317 print "used to directory hash the files for that user in the data and\n";
2318 print "attachment directory. This allows for better performance on\n";
2319 print "servers with larger numbers of users.\n";
2320 print "\n";
2321
2322 print "[$WHT$dir_hash_level$NRM]: $WHT";
2323 $new_dir_hash_level = <STDIN>;
2324 if ( $new_dir_hash_level eq "\n" ) {
2325 $new_dir_hash_level = $dir_hash_level;
2326 } else {
2327 $new_dir_hash_level =~ s/[\r\n]//g;
2328 }
2329 if ( ( int($new_dir_hash_level) < 0 )
2330 || ( int($new_dir_hash_level) > 4 )
2331 || !( int($new_dir_hash_level) eq $new_dir_hash_level ) ) {
2332 print "Invalid Directory Hash Level.\n";
2333 print "Value must be an integer ranging from 0 to 4\n";
2334 print "Hit enter to continue.\n";
2335 $enter_key = <STDIN>;
2336
2337 $new_dir_hash_level = $dir_hash_level;
2338 }
2339
2340 return $new_dir_hash_level;
2341 }
2342
2343 sub command35 {
2344 print "This is the default size (in pixels) of the left folder list.\n";
2345 print "Default is 200, but you can set it to whatever you wish. This\n";
2346 print "is a user preference, so this will only show up as their default.\n";
2347 print "\n";
2348 print "[$WHT$default_left_size$NRM]: $WHT";
2349 $new_default_left_size = <STDIN>;
2350 if ( $new_default_left_size eq "\n" ) {
2351 $new_default_left_size = $default_left_size;
2352 } else {
2353 $new_default_left_size =~ s/[\r\n]//g;
2354 }
2355 return $new_default_left_size;
2356 }
2357
2358 sub command36 {
2359 print "Some IMAP servers only have lowercase letters in the usernames\n";
2360 print "but they still allow people with uppercase to log in. This\n";
2361 print "causes a problem with the user's preference files. This option\n";
2362 print "transparently changes all usernames to lowercase.";
2363 print "\n";
2364
2365 if ( lc($force_username_lowercase) eq 'true' ) {
2366 $default_value = "y";
2367 } else {
2368 $default_value = "n";
2369 }
2370 print "Convert usernames to lowercase (y/n) [$WHT$default_value$NRM]: $WHT";
2371 $new_show = <STDIN>;
2372 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2373 return 'true';
2374 }
2375 return 'false';
2376 }
2377
2378 sub command37 {
2379 print "";
2380 print "\n";
2381
2382 if ( lc($default_use_priority) eq 'true' ) {
2383 $default_value = "y";
2384 } else {
2385 $default_value = "n";
2386 }
2387
2388 print "Allow users to specify priority of outgoing mail (y/n) [$WHT$default_value$NRM]: $WHT";
2389 $new_show = <STDIN>;
2390 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2391 return 'true';
2392 }
2393 return 'false';
2394 }
2395
2396 sub command38 {
2397 print "";
2398 print "\n";
2399
2400 if ( lc($hide_sm_attributions) eq 'true' ) {
2401 $default_value = "y";
2402 } else {
2403 $default_value = "n";
2404 }
2405
2406 print "Hide SM attributions (y/n) [$WHT$default_value$NRM]: $WHT";
2407 $new_show = <STDIN>;
2408 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2409 return 'true';
2410 }
2411 return 'false';
2412 }
2413
2414 sub command39 {
2415 print "";
2416 print "\n";
2417
2418 if ( lc($default_use_mdn) eq 'true' ) {
2419 $default_value = "y";
2420 } else {
2421 $default_value = "n";
2422 }
2423
2424 print "Enable support for read/delivery receipt support (y/n) [$WHT$default_value$NRM]: $WHT";
2425 $new_show = <STDIN>;
2426 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2427 return 'true';
2428 }
2429 return 'false';
2430 }
2431
2432
2433 sub command310 {
2434 print " In loosely managed environments, you may want to allow users
2435 to edit their full name and email address. In strictly managed
2436 environments, you may want to force users to use the name
2437 and email address assigned to them.
2438
2439 'y' - allow a user to edit their full name and email address,
2440 'n' - users must use the assigned values.
2441
2442 ";
2443
2444 if ( lc($edit_identity) eq 'true' ) {
2445 $default_value = "y";
2446 } else {
2447 $default_value = "n";
2448 }
2449 print "Allow editing of user's identity? (y/n) [$WHT$default_value$NRM]: $WHT";
2450 $new_edit = <STDIN>;
2451 if ( ( $new_edit =~ /^y\n/i ) || ( ( $new_edit =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2452 $edit_identity = 'true';
2453 $edit_name = 'true';
2454 $hide_auth_header = command311b();
2455 } else {
2456 $edit_identity = 'false';
2457 $edit_name = command311();
2458 $hide_auth_header = command311b();
2459 }
2460 return $edit_identity;
2461 }
2462
2463 sub command311 {
2464 print " Given that users are not allowed to modify their
2465 email address, can they edit their full name?
2466
2467 ";
2468
2469 if ( lc($edit_name) eq 'true' ) {
2470 $default_value = "y";
2471 } else {
2472 $default_value = "n";
2473 }
2474 print "Allow the user to edit their full name? (y/n) [$WHT$default_value$NRM]: $WHT";
2475 $new_edit = <STDIN>;
2476 if ( ( $new_edit =~ /^y\n/i ) || ( ( $new_edit =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2477 $edit_name = 'true';
2478 } else {
2479 $edit_name = 'false';
2480 }
2481 return $edit_name;
2482 }
2483
2484 sub command311b {
2485 print " SquirrelMail adds username information to every sent email
2486 in order to prevent possible sender forging when users are allowed
2487 to change their email and/or full name.
2488
2489 You can remove user information from this header (y), if you think that
2490 it violates privacy or security.
2491
2492 Note: If users are allowed to change their email addresses,
2493 this setting will make it difficult to determine who sent what where.
2494 Use at your own risk.
2495
2496 ";
2497
2498 if ( lc($hide_auth_header) eq "true" ) {
2499 $default_value = "y";
2500 } else {
2501 $default_value = "n";
2502 }
2503 print "Remove username from email headers? (y/n) [$WHT$default_value$NRM]: $WHT";
2504 $new_header = <STDIN>;
2505 if ( ( $new_header =~ /^y\n/i ) || ( ( $new_header =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2506 $hide_auth_header = "true";
2507 } else {
2508 $hide_auth_header = "false";
2509 }
2510 return $hide_auth_header;
2511 }
2512
2513 sub command312 {
2514 print "This option allows you to disable server side thread sorting if your server \n";
2515 print "declares THREAD support, but you don't want to provide threading options \n";
2516 print "to end users or THREAD extension is broken or extension does not work with \n";
2517 print "options used by SquirrelMail. Option is not used, if THREAD extension is \n";
2518 print "not declared in IMAP CAPABILITY.\n";
2519 print "\n";
2520
2521 if ( lc($disable_thread_sort) eq 'true' ) {
2522 $default_value = "y";
2523 } else {
2524 $default_value = "n";
2525 }
2526 print "Disable server side thread sorting? (y/n) [$WHT$default_value$NRM]: $WHT";
2527 $disable_thread_sort = <STDIN>;
2528 if ( ( $disable_thread_sort =~ /^y\n/i ) || ( ( $disable_thread_sort =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2529 $disable_thread_sort = 'true';
2530 } else {
2531 $disable_thread_sort = 'false';
2532 }
2533 return $disable_thread_sort;
2534 }
2535
2536 sub command313 {
2537 print "This option allows you to disable server side sorting if your server declares \n";
2538 print "SORT support, but SORT extension is broken or does not work with options \n";
2539 print "used by SquirrelMail. Option is not used, if SORT extension is not declared \n";
2540 print "in IMAP CAPABILITY.\n";
2541 print "\n";
2542 print "It is strongly recommended to keep server side sorting enabled, if your ";
2543 print "IMAP server supports it.";
2544 print "\n";
2545
2546 if ( lc($disable_server_sort) eq 'true' ) {
2547 $default_value = "y";
2548 } else {
2549 $default_value = "n";
2550 }
2551 print "Disable server-side sorting? (y/n) [$WHT$default_value$NRM]: $WHT";
2552 $disable_server_sort = <STDIN>;
2553 if ( ( $disable_server_sort =~ /^y\n/i ) || ( ( $disable_server_sort =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2554 $disable_server_sort = 'true';
2555 } else {
2556 $disable_server_sort = 'false';
2557 }
2558 return $disable_server_sort;
2559 }
2560
2561 sub command314 {
2562 print "This option allows you to choose if SM uses charset search\n";
2563 print "Your IMAP server must support the SEARCH CHARSET command for this to work\n";
2564 print "\n";
2565
2566 if ( lc($allow_charset_search) eq 'true' ) {
2567 $default_value = "y";
2568 } else {
2569 $default_value = "n";
2570 }
2571 print "Allow charset searching? (y/n) [$WHT$default_value$NRM]: $WHT";
2572 $allow_charset_search = <STDIN>;
2573 if ( ( $allow_charset_search =~ /^y\n/i ) || ( ( $allow_charset_search =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2574 $allow_charset_search = 'true';
2575 } else {
2576 $allow_charset_search = 'false';
2577 }
2578 return $allow_charset_search;
2579 }
2580
2581 # command315 (UID support) obsoleted.
2582
2583 # advanced search option
2584 sub command316 {
2585 print "This option allows you to control the use of advanced search form.\n";
2586 print " 0 = enable basic search only\n";
2587 print " 1 = enable advanced search only\n";
2588 print " 2 = enable both\n";
2589 print "\n";
2590
2591 print "Allowed search (0,1,2)? [$WHT$allow_advanced_search$NRM]: $WHT";
2592 $new_allow_advanced_search = <STDIN>;
2593 if ( $new_allow_advanced_search =~ /^[012]\n/i ) {
2594 $allow_advanced_search = $new_allow_advanced_search;
2595 }
2596 $allow_advanced_search =~ s/[\r\n]//g;
2597 return $allow_advanced_search;
2598 }
2599
2600
2601 sub command317 {
2602 print "This option allows you to change the name of the PHP session used\n";
2603 print "by SquirrelMail. Unless you know what you are doing, you probably\n";
2604 print "don't need or want to change this from the default of SQMSESSID.\n";
2605 print "[$WHT$session_name$NRM]: $WHT";
2606 $new_session_name = <STDIN>;
2607 chomp($new_session_name);
2608 if ( $new_session_name eq "" ) {
2609 $new_session_name = $session_name;
2610 }
2611 return $new_session_name;
2612 }
2613
2614 # time zone config (since 1.5.1)
2615 sub command318 {
2616 print "This option allows you to control the use of time zones.\n";
2617 print " 0 = (default) standard, GNU C time zone names\n";
2618 print " 1 = strict, generic time zone codes with offsets\n";
2619 print " 2 = custom, GNU C time zones loaded from config/timezones.php\n";
2620 print " 3 = custom strict, generic time zone codes with offsets loaded \n";
2621 print " from config/timezones.php\n";
2622 print "See SquirrelMail documentation about format of config/timezones.php file.\n";
2623 print "\n";
2624
2625 print "Desired time zone configuration (0,1,2,3)? [$WHT$time_zone_type$NRM]: $WHT";
2626 $new_time_zone_type = <STDIN>;
2627 if ( $new_time_zone_type =~ /^[0123]\n/i ) {
2628 $time_zone_type = $new_time_zone_type;
2629 } else {
2630 print "\nInvalid configuration value.\n";
2631 print "\nPress enter to continue...";
2632 $tmp = <STDIN>;
2633 }
2634 $time_zone_type =~ s/[\r\n]//g;
2635 return $time_zone_type;
2636 }
2637
2638 # set the location base for redirects (since 1.5.2)
2639 sub command_config_location_base {
2640 print "Here you can set the base part of the SquirrelMail URL.\n";
2641 print "It is normally autodetected but if that fails, use this\n";
2642 print "option to override.\n";
2643 print "It should contain only the protocol and hostname/port parts\n";
2644 print "of the URL; the full path will be appended automatically.\n\n";
2645 print "Examples:\nhttp://webmail.example.org\nhttp://webmail.example.com:8080\nhttps://webmail.example.com:6691\n\n";
2646 print "Do not add any path elements.\n";
2647
2648 print "URL base? [" .$WHT."autodetect$NRM]: $WHT";
2649 $new_config_location_base = <STDIN>;
2650 chomp($new_config_location_base);
2651 $config_location_base = $new_config_location_base;
2652
2653 return $config_location_base;
2654 }
2655
2656 # only_secure_cookies (since 1.5.2)
2657 sub command319 {
2658 print "This option allows you to specify that if a user session is initiated\n";
2659 print "under a secure (HTTPS, SSL-encrypted) connection, the cookies given to\n";
2660 print "the browser will ONLY be transmitted via a secure connection henceforth.\n\n";
2661 print "Generally this is a Good Thing, and should NOT be disabled. However,\n";
2662 print "if you intend to use the Secure Login or Show SSL Link plugins to\n";
2663 print "encrypt the user login, but not the rest of the SquirrelMail session,\n";
2664 print "this can be turned off. Think twice before doing so.\n";
2665 print "\n";
2666
2667 if ( lc($only_secure_cookies) eq 'true' ) {
2668 $default_value = "y";
2669 } else {
2670 $default_value = "n";
2671 }
2672 print "Transmit cookies only on secure connection when available? (y/n) [$WHT$default_value$NRM]: $WHT";
2673 $only_secure_cookies = <STDIN>;
2674 if ( ( $only_secure_cookies =~ /^y\n/i ) || ( ( $only_secure_cookies =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2675 $only_secure_cookies = 'true';
2676 } else {
2677 $only_secure_cookies = 'false';
2678 }
2679 return $only_secure_cookies;
2680 }
2681
2682
2683 sub command_userThemes {
2684 print "\nDefine the user themes that you wish to use. If you have added\n";
2685 print "a theme of your own, just follow the instructions (?) about\n";
2686 print "how to add them. You can also change the default theme.\n\n";
2687
2688 print "Available user themes:\n";
2689 $count = 0;
2690 while ( $count <= $#user_theme_name ) {
2691 if ( $count == $user_theme_default ) {
2692 print " *";
2693 } else {
2694 print " ";
2695 }
2696 if ( $count < 10 ) {
2697 print " ";
2698 }
2699 $name = $user_theme_name[$count];
2700 $num_spaces = 35 - length($name);
2701 for ( $i = 0 ; $i < $num_spaces ; $i++ ) {
2702 $name = $name . " ";
2703 }
2704
2705 print " $count. $name";
2706 print "($user_theme_path[$count])\n";
2707
2708 $count++;
2709 }
2710
2711 print "\n";
2712 print ".------------------------------------.\n";
2713 print "| t (detect user themes) |\n";
2714 print "| + (add user theme) |\n";
2715 print "| - N (remove user theme) |\n";
2716 print "| m N (mark default user theme) |\n";
2717 print "| l (list user themes) |\n";
2718 print "| d (done) |\n";
2719 print "`------------------------------------'\n";
2720
2721 print "\n[user_themes] command (?=help) > ";
2722 $input = <STDIN>;
2723 $input =~ s/[\r\n]//g;
2724 while ( $input ne "d" ) {
2725 if ( $input =~ /^\s*l\s*/i ) {
2726 $count = 0;
2727 while ( $count <= $#user_theme_name ) {
2728 if ( $count == $user_theme_default ) {
2729 print " *";
2730 } else {
2731 print " ";
2732 }
2733 if ( $count < 10 ) {
2734 print " ";
2735 }
2736 $name = $user_theme_name[$count];
2737 $num_spaces = 35 - length($name);
2738 for ( $i = 0 ; $i < $num_spaces ; $i++ ) {
2739 $name = $name . " ";
2740 }
2741
2742 print " $count. $name";
2743 print "($user_theme_path[$count])\n";
2744
2745 $count++;
2746 }
2747 } elsif ( $input =~ /^\s*m\s*[0-9]+/i ) {
2748 $old_def = $user_theme_default;
2749 $user_theme_default = $input;
2750 $user_theme_default =~ s/^\s*m\s*//;
2751 if ( ( $user_theme_default > $#user_theme_name ) || ( $user_theme_default < 0 ) ) {
2752 print "Cannot set default theme to $user_theme_default. That theme does not exist.\n";
2753 $user_theme_default = $old_def;
2754 }
2755 } elsif ( $input =~ /^\s*\+/ ) {
2756 print "What is the name of this theme? ";
2757 $name = <STDIN>;
2758 $name =~ s/[\r\n]//g;
2759 $user_theme_name[ $#user_theme_name + 1 ] = $name;
2760 print "Be sure to put ../css/ before the filename.\n";
2761 print "What file is this stored in (ex: ../css/my_theme/): ";
2762 $name = <STDIN>;
2763 $name =~ s/[\r\n]//g;
2764 $user_theme_path[ $#user_theme_path + 1 ] = $name;
2765 } elsif ( $input =~ /^\s*-\s*[0-9]?/ ) {
2766 if ( $input =~ /[0-9]+\s*$/ ) {
2767 $rem_num = $input;
2768 $rem_num =~ s/^\s*-\s*//g;
2769 $rem_num =~ s/\s*$//;
2770 } else {
2771 $rem_num = $#user_theme_name;
2772 }
2773 if ( $rem_num == $user_theme_default ) {
2774 print "You cannot remove the default theme!\n";
2775 } else {
2776 $count = 0;
2777 @new_theme_name = ();
2778 @new_theme_path = ();
2779 while ( $count <= $#user_theme_name ) {
2780 if ( $count != $rem_num ) {
2781 @new_theme_name = ( @new_theme_name, $user_theme_name[$count] );
2782 @new_theme_path = ( @new_theme_path, $user_theme_path[$count] );
2783 }
2784 $count++;
2785 }
2786 @user_theme_name = @new_theme_name;
2787 @user_theme_path = @new_theme_path;
2788 if ( $user_theme_default > $rem_num ) {
2789 $user_theme_default--;
2790 }
2791 }
2792 } elsif ( $input =~ /^\s*t\s*/i ) {
2793 print "\nStarting detection...\n\n";
2794
2795 opendir( DIR, "../css" );
2796 @files = sort(readdir(DIR));
2797 $cnt = 0;
2798 while ( $cnt <= $#files ) {
2799 $filename = "../css/" . $files[$cnt] .'/';
2800 if ( $files[$cnt] !~ /^\./ && $filename ne "../css/rtl.css" && -e $filename . "default.css" ) {
2801 $found = 0;
2802 for ( $x = 0 ; $x <= $#user_theme_path ; $x++ ) {
2803 if ( $user_theme_path[$x] eq $filename ) {
2804 $found = 1;
2805 }
2806 }
2807 if ( $found != 1 ) {
2808 print "** Found user theme: $filename\n";
2809 $def = $files[$cnt];
2810 $def =~ s/_/ /g;
2811 $def = lc($def);
2812 #$def =~ s/(^\w+)/ucfirst $1/eg;
2813 #$def =~ s/(\s+)(\w+)/$1 . ucfirst $2/eg;
2814 $def =~ s/(^\w+)|(\s+)(\w+)/ucfirst $1 . $2 . ucfirst $3/eg;
2815 print " What is its name? [$def]: ";
2816 $nm = <STDIN>;
2817 $nm =~ s/^\s+|\s+$|[\n\r]//g;
2818 if ( $nm eq '' ) { $nm = $def; }
2819 $user_theme_name[ $#user_theme_name + 1 ] = $nm;
2820 $user_theme_path[ $#user_theme_path + 1 ] = $filename;
2821 }
2822 }
2823 $cnt++;
2824 }
2825 print "\n";
2826 for ( $cnt = 0 ; $cnt <= $#user_theme_path ; $cnt++ ) {
2827 $filename = $user_theme_path[$cnt];
2828 if ( $filename != 'none' && !( -e $filename ."/default.css" ) ) {
2829 print " Removing $filename (file not found)\n";
2830 $offset = 0;
2831 @new_user_theme_name = ();
2832 @new_user_theme_path = ();
2833 for ( $x = 0 ; $x < $#user_theme_path ; $x++ ) {
2834 if ( $user_theme_path[$x] eq $filename ) {
2835 $offset = 1;
2836 }
2837 if ( $offset == 1 ) {
2838 $new_user_theme_name[$x] = $user_theme_name[ $x + 1 ];
2839 $new_user_theme_path[$x] = $user_theme_path[ $x + 1 ];
2840 } else {
2841 $new_user_theme_name[$x] = $user_theme_name[$x];
2842 $new_user_theme_path[$x] = $user_theme_path[$x];
2843 }
2844 }
2845 @user_theme_name = @new_user_theme_name;
2846 @user_theme_path = @new_user_theme_path;
2847 }
2848 }
2849 print "\nDetection complete!\n\n";
2850
2851 closedir DIR;
2852 } elsif ( $input =~ /^\s*\?\s*/ ) {
2853 print ".------------------------------------.\n";
2854 print "| t (detect user themes) |\n";
2855 print "| + (add user theme) |\n";
2856 print "| - N (remove user theme) |\n";
2857 print "| m N (mark default user theme) |\n";
2858 print "| l (list user themes) |\n";
2859 print "| d (done) |\n";
2860 print "`------------------------------------'\n";
2861 }
2862 print "[user_themes] command (?=help) > ";
2863 $input = <STDIN>;
2864 $input =~ s/[\r\n]//g;
2865 }
2866 }
2867
2868 sub command_iconSets {
2869 print "\nDefine the icon themes that you wish to use. If you have added\n";
2870 print "a theme of your own, just follow the instructions (?) about\n";
2871 print "how to add them. You can also change the default and fallback\n";
2872 print "themes. The default theme will be used when no icon theme is\n";
2873 print "set by the user. The fallback theme will be used if an icon\n";
2874 print "cannot be found in the currently selected icon theme.\n\n";
2875
2876 print "Available icon themes:\n\n";
2877
2878 $count = 0;
2879 while ( $count <= $#icon_theme_name ) {
2880 if ( $count == $icon_theme_def ) {
2881 print " d";
2882 } else {
2883 print " ";
2884 }
2885 if ( $count eq $icon_theme_fallback ) {
2886 print "f ";
2887 } else {
2888 print " ";
2889 }
2890 if ( $count < 10 ) {
2891 print " ";
2892 }
2893 $name = $icon_theme_name[$count];
2894 $num_spaces = 35 - length($name);
2895 for ( $i = 0 ; $i < $num_spaces ; $i++ ) {
2896 $name = $name . " ";
2897 }
2898
2899 print " $count. $name";
2900 print "($icon_theme_path[$count])\n";
2901
2902 $count++;
2903 }
2904
2905 print "\n d = Default icon theme\n";
2906 print " f = Fallback icon theme\n";
2907 print "\n";
2908 print ".------------------------------------.\n";
2909 print "| t (detect icon themes) |\n";
2910 print "| + (add icon theme) |\n";
2911 print "| - N (remove icon theme) |\n";
2912 print "| m N (mark default icon theme) |\n";
2913 print "| f N (set fallback icon set) |\n";
2914 print "| l (list icon themes) |\n";
2915 print "| d (done) |\n";
2916 print "`------------------------------------'\n";
2917
2918 print "\n[icon_themes] command (?=help) > ";
2919 $input = <STDIN>;
2920 $input =~ s/[\r\n]//g;
2921 while ( $input ne "d" ) {
2922 if ( $input =~ /^\s*l\s*/i ) {
2923 $count = 0;
2924 print "\n";
2925 while ( $count <= $#icon_theme_name ) {
2926 if ( $count == $icon_theme_def ) {
2927 print " d";
2928 } else {
2929 print " ";
2930 }
2931 if ( $count eq $icon_theme_fallback ) {
2932 print "f ";
2933 } else {
2934 print " ";
2935 }
2936 $name = $icon_theme_name[$count];
2937 $num_spaces = 35 - length($name);
2938 for ( $i = 0 ; $i < $num_spaces ; $i++ ) {
2939 $name = $name . " ";
2940 }
2941
2942 print " $count. $name";
2943 print "($icon_theme_path[$count])\n";
2944
2945 $count++;
2946 }
2947 print "\n d = Default icon theme\n";
2948 print " f = Fallback icon theme\n\n";
2949 } elsif ( $input =~ /^\s*m\s*[0-9]+/i ) {
2950 $old_def = $icon_theme_def;
2951 $icon_theme_def = $input;
2952 $icon_theme_def =~ s/^\s*m\s*//;
2953 if ( ( $icon_theme_default > $#icon_theme_name ) || ( $icon_theme_default < 0 ) ) {
2954 print "Cannot set default icon theme to $icon_theme_default. That theme does not exist.\n";
2955 $icon_theme_def = $old_def;
2956 }
2957 } elsif ( $input =~ /^\s*f\s*[0-9]+/i ) {
2958 $old_fb = $icon_theme_fallback;
2959 $icon_theme_fallback = $input;
2960 $icon_theme_fallback =~ s/^\s*f\s*//;
2961 if ( ( $icon_theme_fallback > $#icon_theme_name ) || ( $icon_theme_fallback < 0 ) ) {
2962 print "Cannot set fallback icon theme to $icon_theme_fallback. That theme does not exist.\n";
2963 $icon_theme_fallback = $old_fb;
2964 }
2965 } elsif ( $input =~ /^\s*\+/ ) {
2966 print "What is the name of this icon theme? ";
2967 $name = <STDIN>;
2968 $name =~ s/[\r\n]//g;
2969 $icon_theme_name[ $#icon_theme_name + 1 ] = $name;
2970 print "Be sure to put ../images/themes/ before the filename.\n";
2971 print "What directory is this icon theme stored in (ex: ../images/themes/my_theme/)? ";
2972 $name = <STDIN>;
2973 $name =~ s/[\r\n]//g;
2974 $icon_theme_path[ $#icon_theme_path + 1 ] = $name;
2975 } elsif ( $input =~ /^\s*-\s*[0-9]?/ ) {
2976 if ( $input =~ /[0-9]+\s*$/ ) {
2977 $rem_num = $input;
2978 $rem_num =~ s/^\s*-\s*//g;
2979 $rem_num =~ s/\s*$//;
2980 } else {
2981 $rem_num = $#icon_theme_name;
2982 }
2983 if ( $rem_num == $icon_theme_def ) {
2984 print "You cannot remove the default icon theme!\n";
2985 } elsif ( $rem_num == $icon_theme_fallback ) {
2986 print "You cannot remove the fallback icon theme!\n";
2987 } else {
2988 $count = 0;
2989 @new_theme_name = ();
2990 @new_theme_path = ();
2991 while ( $count <= $#icon_theme_name ) {
2992 if ( $count != $rem_num ) {
2993 @new_theme_name = ( @new_theme_name, $icon_theme_name[$count] );
2994 @new_theme_path = ( @new_theme_path, $icon_theme_path[$count] );
2995 }
2996 $count++;
2997 }
2998 @icon_theme_name = @new_theme_name;
2999 @icon_theme_path = @new_theme_path;
3000 if ( $icon_theme_def > $rem_num ) {
3001 $icon_theme_def--;
3002 }
3003 }
3004 } elsif ( $input =~ /^\s*t\s*/i ) {
3005 print "\nStarting detection...\n\n";
3006
3007 opendir( DIR, "../images/themes/" );
3008 @files = sort(readdir(DIR));
3009 $cnt = 0;
3010 while ( $cnt <= $#files ) {
3011 $filename = "../images/themes/" . $files[$cnt] .'/';
3012 if ( -d "../images/themes/" . $files[$cnt] && $files[$cnt] !~ /^\./ && $files[$cnt] ne ".svn" ) {
3013 $found = 0;
3014 for ( $x = 0 ; $x <= $#icon_theme_path ; $x++ ) {
3015 if ( $icon_theme_path[$x] eq $filename ) {
3016 $found = 1;
3017 }
3018 }
3019 if ( $found != 1 ) {
3020 print "** Found icon theme: $filename\n";
3021 $def = $files[$cnt];
3022 $def =~ s/_/ /g;
3023 $def = lc($def);
3024 #$def =~ s/(^\w+)/ucfirst $1/eg;
3025 #$def =~ s/(\s+)(\w+)/$1 . ucfirst $2/eg;
3026 $def =~ s/(^\w+)|(\s+)(\w+)/ucfirst $1 . $2 . ucfirst $3/eg;
3027 print " What is its name? [$def]: ";
3028 $nm = <STDIN>;
3029 $nm =~ s/^\s+|\s+$|[\n\r]//g;
3030 if ( $nm eq '' ) { $nm = $def; }
3031 $icon_theme_name[ $#icon_theme_name + 1 ] = $nm;
3032 $icon_theme_path[ $#icon_theme_path + 1 ] = $filename;
3033 }
3034 }
3035 $cnt++;
3036 }
3037 print "\n";
3038 for ( $cnt = 0 ; $cnt <= $#icon_theme_path ; $cnt++ ) {
3039 $filename = $icon_theme_path[$cnt];
3040 if ( $filename ne "none" && $filename ne "template" && ! -d $filename ) {
3041 print " Removing $filename (file not found)\n";
3042 $offset = 0;
3043 @new_icon_theme_name = ();
3044 @new_icon_theme_path = ();
3045 for ( $x = 0 ; $x < $#icon_theme_path ; $x++ ) {
3046 if ( $icon_theme_path[$x] eq $filename ) {
3047 $offset = 1;
3048 }
3049 if ( $offset == 1 ) {
3050 $new_icon_theme_name[$x] = $icon_theme_name[ $x + 1 ];
3051 $new_icon_theme_path[$x] = $icon_theme_path[ $x + 1 ];
3052 } else {
3053 $new_icon_theme_name[$x] = $icon_theme_name[$x];
3054 $new_icon_theme_path[$x] = $icon_theme_path[$x];
3055 }
3056 }
3057 @icon_theme_name = @new_icon_theme_name;
3058 @icon_theme_path = @new_icon_theme_path;
3059 }
3060 }
3061 print "\nDetection complete!\n\n";
3062
3063 closedir DIR;
3064 } elsif ( $input =~ /^\s*\?\s*/ ) {
3065 print ".------------------------------------.\n";
3066 print "| t (detect icon themes) |\n";
3067 print "| + (add icon theme) |\n";
3068 print "| - N (remove icon theme) |\n";
3069 print "| m N (mark default icon theme) |\n";
3070 print "| f N (set fallback icon set) |\n";
3071 print "| l (list icon themes) |\n";
3072 print "| d (done) |\n";
3073 print "`------------------------------------'\n";
3074 }
3075 print "[icon_themes] command (?=help) > ";
3076 $input = <STDIN>;
3077 $input =~