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