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