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