replacing skip_SM_header with two different options. If admins want to shoot
[squirrelmail.git] / config / conf.pl
CommitLineData
23afd0bd 1#!/usr/bin/env perl
bbd30ac8 2# conf.pl
bbd30ac8 3#
ba6338ee 4# Copyright (c) 1999-2005 The SquirrelMail Project Team
6614128e 5# Licensed under the GNU GPL. For full terms see COPYING.
6#
7# A simple configure script to configure SquirrelMail
245a6892 8#
9# $Id$
598294a7 10############################################################
6614128e 11$conf_pl_version = "1.4.0";
bbd30ac8 12
38b69acb 13############################################################
14# Check what directory we're supposed to be running in, and
15# change there if necessary. File::Basename has been in
16# Perl since at least 5.003_7, and nobody sane runs anything
17# before that, but just in case.
18############################################################
8bd9e0dd 19my $dir;
eaace00e 20if ( eval q{require "File/Basename.pm"} ) {
8bd9e0dd 21 $dir = File::Basename::dirname($0);
38b69acb 22 chdir($dir);
23}
24
598294a7 25############################################################
d595e32e 26# Some people try to run this as a CGI. That's wrong!
598294a7 27############################################################
eaace00e 28if ( defined( $ENV{'PATH_INFO'} )
29 || defined( $ENV{'QUERY_STRING'} )
30 || defined( $ENV{'REQUEST_METHOD'} ) ) {
31 print "Content-Type: text/html\n\n";
32 print "You must run this script from the command line.";
33 exit;
34 }
d595e32e 35
8bd9e0dd 36############################################################
37# If we got here, use Cwd to get the full directory path
38# (the Basename stuff above will sometimes return '.' as
598294a7 39# the base directory, which is not helpful here).
8bd9e0dd 40############################################################
41use Cwd;
42$dir = cwd();
43
598294a7 44
45############################################################
bbd30ac8 46# First, lets read in the data already in there...
598294a7 47############################################################
eaace00e 48if ( -e "config.php" ) {
49 open( FILE, "config.php" );
50 while ( $line = <FILE> ) {
51 $line =~ s/^\s+//;
52 $line =~ s/^\$//;
53 $var = $line;
54
55 $var =~ s/=/EQUALS/;
85645192 56 if ( $var =~ /^([a-z])/i ) {
eaace00e 57 @o = split ( /\s*EQUALS\s*/, $var );
58 if ( $o[0] eq "config_version" ) {
85645192 59 $o[1] =~ s/[\n\r]//g;
60 $o[1] =~ s/[\'\"];\s*$//;
eaace00e 61 $o[1] =~ s/;$//;
85645192 62 $o[1] =~ s/^[\'\"]//;
eaace00e 63
64 $config_version = $o[1];
65 close(FILE);
66 }
67 }
68 }
69 close(FILE);
70
71 if ( $config_version ne $conf_pl_version ) {
f8c17cdd 72 clear_screen();
eaace00e 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/;
85645192 109 if ( $var =~ /^([a-z])/i ) {
eaace00e 110 @o = split ( /\s*EQUALS\s*/, $var );
111 if ( $o[0] eq "config_version" ) {
85645192 112 $o[1] =~ s/[\n\r]//g;
113 $o[1] =~ s/[\'\"];\s*$//;
eaace00e 114 $o[1] =~ s/;$//;
85645192 115 $o[1] =~ s/^[\'\"]//;
eaace00e 116
117 $config_version = $o[1];
118 close(FILE);
119 }
120 }
121 }
122 close(FILE);
123
124 if ( $config_version ne $conf_pl_version ) {
f8c17cdd 125 clear_screen();
eaace00e 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" );
1e0628fb 153} else {
eaace00e 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;
bbd30ac8 158}
159
a3439b27 160# Read and parse the current configuration file
161# (either config.php or config_default.php).
eaace00e 162while ( $line = <FILE> ) {
598294a7 163 $line =~ s/^\s+//;
eaace00e 164 $line =~ s/^\$//;
165 $var = $line;
166
167 $var =~ s/=/EQUALS/;
85645192 168 if ( $var =~ /^([a-z])/i ) {
eaace00e 169 @options = split ( /\s*EQUALS\s*/, $var );
85645192 170 $options[1] =~ s/[\n\r]//g;
171 $options[1] =~ s/[\'\"];\s*$//;
eaace00e 172 $options[1] =~ s/;$//;
85645192 173 $options[1] =~ s/^[\'\"]//;
ed65d11b 174 # de-escape escaped strings
175 $options[1] =~ s/\\'/'/g;
176 $options[1] =~ s/\\\\/\\/g;
eaace00e 177
85645192 178 if ( $options[0] =~ /^theme\[[0-9]+\]\[['"]PATH['"]\]/ ) {
eaace00e 179 $sub = $options[0];
85645192 180 $sub =~ s/\]\[['"]PATH['"]\]//;
eaace00e 181 $sub =~ s/.*\[//;
182 if ( -e "../themes" ) {
183 $options[1] =~ s/^\.\.\/config/\.\.\/themes/;
a3439b27 184 }
8bd9e0dd 185 $theme_path[$sub] = &change_to_rel_path($options[1]);
85645192 186 } elsif ( $options[0] =~ /^theme\[[0-9]+\]\[['"]NAME['"]\]/ ) {
eaace00e 187 $sub = $options[0];
85645192 188 $sub =~ s/\]\[['"]NAME['"]\]//;
eaace00e 189 $sub =~ s/.*\[//;
190 $theme_name[$sub] = $options[1];
a1b036d6 191 } elsif ( $options[0] =~ /^plugins\[[0-9]*\]/ ) {
eaace00e 192 $sub = $options[0];
193 $sub =~ s/\]//;
194 $sub =~ s/^plugins\[//;
a1b036d6 195 if ($sub eq '') {
196 push @plugins, $options[1];
197 } else {
198 $plugins[$sub] = $options[1];
199 }
eaace00e 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
85645192 210 if ( $tmp =~ /^\s*[\'\"]host[\'\"]/i ) {
211 $tmp =~ s/^\s*[\'\"]host[\'\"]\s*=>\s*[\'\"]//i;
212 $tmp =~ s/[\'\"],?\s*$//;
213 $tmp =~ s/[\'\"]\);\s*$//;
eaace00e 214 $host = $tmp;
85645192 215 } elsif ( $tmp =~ /^\s*[\'\"]base[\'\"]/i ) {
216 $tmp =~ s/^\s*[\'\"]base[\'\"]\s*=>\s*[\'\"]//i;
217 $tmp =~ s/[\'\"],?\s*$//;
218 $tmp =~ s/[\'\"]\);\s*$//;
eaace00e 219 $base = $tmp;
85645192 220 } elsif ( $tmp =~ /^\s*[\'\"]charset[\'\"]/i ) {
221 $tmp =~ s/^\s*[\'\"]charset[\'\"]\s*=>\s*[\'\"]//i;
222 $tmp =~ s/[\'\"],?\s*$//;
223 $tmp =~ s/[\'\"]\);\s*$//;
eaace00e 224 $charset = $tmp;
85645192 225 } elsif ( $tmp =~ /^\s*[\'\"]port[\'\"]/i ) {
226 $tmp =~ s/^\s*[\'\"]port[\'\"]\s*=>\s*[\'\"]?//i;
227 $tmp =~ s/[\'\"]?,?\s*$//;
228 $tmp =~ s/[\'\"]?\);\s*$//;
eaace00e 229 $port = $tmp;
85645192 230 } elsif ( $tmp =~ /^\s*[\'\"]maxrows[\'\"]/i ) {
231 $tmp =~ s/^\s*[\'\"]maxrows[\'\"]\s*=>\s*[\'\"]?//i;
232 $tmp =~ s/[\'\"]?,?\s*$//;
233 $tmp =~ s/[\'\"]?\);\s*$//;
eaace00e 234 $maxrows = $tmp;
43397658 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;
85645192 240 } elsif ( $tmp =~ /^\s*[\'\"]name[\'\"]/i ) {
241 $tmp =~ s/^\s*[\'\"]name[\'\"]\s*=>\s*[\'\"]//i;
242 $tmp =~ s/[\'\"],?\s*$//;
243 $tmp =~ s/[\'\"]\);\s*$//;
eaace00e 244 $name = $tmp;
85645192 245 } elsif ( $tmp =~ /^\s*[\'\"]binddn[\'\"]/i ) {
246 $tmp =~ s/^\s*[\'\"]binddn[\'\"]\s*=>\s*[\'\"]//i;
247 $tmp =~ s/[\'\"],?\s*$//;
248 $tmp =~ s/[\'\"]\);\s*$//;
30e9932c 249 $binddn = $tmp;
85645192 250 } elsif ( $tmp =~ /^\s*[\'\"]bindpw[\'\"]/i ) {
251 $tmp =~ s/^\s*[\'\"]bindpw[\'\"]\s*=>\s*[\'\"]//i;
252 $tmp =~ s/[\'\"],?\s*$//;
253 $tmp =~ s/[\'\"]\);\s*$//;
30e9932c 254 $bindpw = $tmp;
85645192 255 } elsif ( $tmp =~ /^\s*[\'\"]protocol[\'\"]/i ) {
256 $tmp =~ s/^\s*[\'\"]protocol[\'\"]\s*=>\s*[\'\"]?//i;
257 $tmp =~ s/[\'\"]?,?\s*$//;
258 $tmp =~ s/[\'\"]?\);\s*$//;
30e9932c 259 $protocol = $tmp;
43397658 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;
eaace00e 265 }
a3439b27 266 }
eaace00e 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;
43397658 272 $ldap_filter[$sub] = $filter;
eaace00e 273 $ldap_charset[$sub] = $charset;
30e9932c 274 $ldap_binddn[$sub] = $binddn;
275 $ldap_bindpw[$sub] = $bindpw;
276 $ldap_protocol[$sub] = $protocol;
43397658 277 $ldap_limit_scope[$sub] = $limit_scope;
8bd9e0dd 278 } elsif ( $options[0] =~ /^(data_dir|attachment_dir|theme_css|org_logo|signout_page)$/ ) {
279 ${ $options[0] } = &change_to_rel_path($options[1]);
eaace00e 280 } else {
281 ${ $options[0] } = $options[1];
282 }
283 }
bbd30ac8 284}
1a7a2fcc 285close FILE;
0ae4c1f2 286
35aaf666 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 );
aacc7bec 308$allow_server_sort = 'false' if ( !$allow_server_sort );
35aaf666 309$no_list_for_subscribe = 'false' if ( !$no_list_for_subscribe );
310$allow_charset_search = 'true' if ( !$allow_charset_search );
66bfb27b 311$allow_advanced_search = 0 if ( !$allow_advanced_search) ;
35aaf666 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 );
35aaf666 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 );
71d3f882 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
35aaf666 323$show_alternative_names = 'false' if ( !$show_alternative_names );
324$available_languages = 'all' if ( !$available_languages );
f03f6ee7 325$aggressive_decoding = 'false' if ( !$aggressive_decoding );
35aaf666 326$advanced_tree = 'false' if ( !$advanced_tree );
35aaf666 327$use_php_recode = 'false' if ( !$use_php_recode );
328$use_php_iconv = 'false' if ( !$use_php_iconv );
71d3f882 329# since 1.5.1
330$use_icons = 'false' if ( !$use_icons );
ef6ad2a1 331$use_iframe = 'false' if ( !$use_iframe );
71d3f882 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 );
432db2fc 340$encode_header_key = '' if ( !$encode_header_key );
341$hide_auth_header = 'false' if ( !$hide_auth_header );
39d3ec89 342
eaace00e 343if ( $ARGV[0] eq '--install-plugin' ) {
344 print "Activating plugin " . $ARGV[1] . "\n";
ebd13f55 345 push @plugins, $ARGV[1];
346 save_data();
347 exit(0);
eaace00e 348} elsif ( $ARGV[0] eq '--remove-plugin' ) {
349 print "Removing plugin " . $ARGV[1] . "\n";
ebd13f55 350 foreach $plugin (@plugins) {
eaace00e 351 if ( $plugin ne $ARGV[1] ) {
352 push @newplugins, $plugin;
ebd13f55 353 }
354 }
355 @plugins = @newplugins;
356 save_data();
357 exit(0);
358}
359
5b6ae78a 360#####################################################################################
eaace00e 361if ( $config_use_color == 1 ) {
362 $WHT = "\x1B[37;1m";
363 $NRM = "\x1B[0m";
0ecb47e5 364} else {
eaace00e 365 $WHT = "";
366 $NRM = "";
367 $config_use_color = 2;
368}
369
8b5c49cd 370while ( ( $command ne "q" ) && ( $command ne "Q" ) && ( $command ne ":q" ) ) {
f8c17cdd 371 clear_screen();
eaace00e 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";
4272758c 385 print "6. Address Books\n";
eaace00e 386 print "7. Message of the Day (MOTD)\n";
387 print "8. Plugins\n";
388 print "9. Database\n";
598294a7 389 print "10. Language settings\n";
390 print "11. Tweaks\n";
eaace00e 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;
b6e0c3b6 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";
39d3ec89 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";
0ae4c1f2 404
eaace00e 405 print "\n";
dcc1cc82 406 print "R Return to Main Menu\n";
eaace00e 407 } elsif ( $menu == 2 ) {
47a29326 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";
35aaf666 414 if ( lc($useSendmail) eq 'true' ) {
eaace00e 415 print "Sendmail";
416 } else {
417 print "SMTP";
418 }
419 print "$NRM\n";
47a29326 420 print "\n";
598294a7 421
47a29326 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 ) {
35aaf666 432 if ( lc($useSendmail) eq 'true' ) {
47a29326 433 print $WHT . "Sendmail" . $NRM . "\n--------\n";
434 print "4. Sendmail Path : $WHT$sendmail_path$NRM\n";
432db2fc 435 print "5. Header encryption key : $WHT$encode_header_key$NRM\n";
47a29326 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";
432db2fc 444 print "9. Header encryption key : $WHT$encode_header_key$NRM\n";
47a29326 445 print "\n";
446 }
eaace00e 447 }
47a29326 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";
598294a7 454 }
47a29326 455 if ($show_smtp_settings == 0) {
35aaf666 456 if ( lc($useSendmail) eq 'true' ) {
47a29326 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 {
598294a7 466 print "H. Hide " .
467 ($show_imap_settings ? "IMAP Server" :
35aaf666 468 (lc($useSendmail) eq 'true') ? "Sendmail" : "SMTP") . " Settings\n";
47a29326 469 }
598294a7 470
eaace00e 471 print "\n";
dcc1cc82 472 print "R Return to Main Menu\n";
eaace00e 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";
2eec12b5 491 print "17. Folder Delete Bypasses Trash : $WHT$delete_folder$NRM\n";
ca85aabe 492 print "18. Enable /NoSelect folder fix : $WHT$noselect_fix_enable$NRM\n";
eaace00e 493 print "\n";
dcc1cc82 494 print "R Return to Main Menu\n";
eaace00e 495 } elsif ( $menu == 4 ) {
496 print $WHT. "General Options\n" . $NRM;
39d3ec89 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";
432db2fc 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";
39d3ec89 508 print "10. Allow server thread sort : $WHT$allow_thread_sort$NRM\n";
aacc7bec 509 print "11. Allow server-side sorting : $WHT$allow_server_sort$NRM\n";
39d3ec89 510 print "12. Allow server charset search : $WHT$allow_charset_search$NRM\n";
de74555e 511 print "13. Allow advanced search : $WHT$allow_advanced_search$NRM\n";
66bfb27b 512 print "14. PHP session name : $WHT$session_name$NRM\n";
eaace00e 513 print "\n";
dcc1cc82 514 print "R Return to Main Menu\n";
eaace00e 515 } elsif ( $menu == 5 ) {
516 print $WHT. "Themes\n" . $NRM;
517 print "1. Change Themes\n";
2eec12b5 518 for ( $count = 0 ; $count <= $#theme_name/2 ; $count++ ) {
519 $temp_name = $theme_name[$count*2];
598294a7 520 printf " %s%*s %s\n", $temp_name,
2eec12b5 521 40 - length($temp_name), " ",
522 $theme_name[($count*2)+1];
eaace00e 523 }
524 print "2. CSS File : $WHT$theme_css$NRM\n";
525 print "\n";
dcc1cc82 526 print "R Return to Main Menu\n";
eaace00e 527 } elsif ( $menu == 6 ) {
4272758c 528 print $WHT. "Address Books\n" . $NRM;
529 print "1. Change LDAP Servers\n";
eaace00e 530 for ( $count = 0 ; $count <= $#ldap_host ; $count++ ) {
531 print " > $ldap_host[$count]\n";
532 }
71d3f882 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";
4272758c 535 print "4. Allow writing into global file address book : $WHT$abook_global_file_writeable$NRM\n";
71d3f882 536 print "5. Allow listing of global file address book : $WHT$abook_global_file_listing$NRM\n";
eaace00e 537 print "\n";
dcc1cc82 538 print "R Return to Main Menu\n";
eaace00e 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";
dcc1cc82 545 print "R Return to Main Menu\n";
eaace00e 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 }
1a7a2fcc 571 }
eaace00e 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
eaace00e 580 print "\n";
dcc1cc82 581 print "R Return to Main Menu\n";
eaace00e 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";
99a6c222 586 print "\n";
eaace00e 587 print "3. DSN for Preferences : $WHT$prefs_dsn$NRM\n";
588 print "4. Table for Preferences : $WHT$prefs_table$NRM\n";
99a6c222 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";
eaace00e 592 print "\n";
30e9932c 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";
dcc1cc82 598 print "R Return to Main Menu\n";
39d3ec89 599 } elsif ( $menu == 10 ) {
35aaf666 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";
f03f6ee7 605 print "5. Enable aggressive decoding : $WHT$aggressive_decoding$NRM\n";
6d3689f5 606 print "6. Enable lossy encoding : $WHT$lossy_encoding$NRM\n";
35aaf666 607 print "\n";
dcc1cc82 608 print "R Return to Main Menu\n";
39d3ec89 609 } elsif ( $menu == 11 ) {
35aaf666 610 print $WHT. "Interface tweaks\n" . $NRM;
74d6a0d9 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";
35aaf666 614 print "\n";
615 print $WHT. "PHP tweaks\n" . $NRM;
74d6a0d9 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";
71d3f882 618 print "\n";
619 print $WHT. "Configuration tweaks\n" . $NRM;
74d6a0d9 620 print "6. Allow remote configtest : $WHT$allow_remote_configtest$NRM\n";
35aaf666 621 print "\n";
dcc1cc82 622 print "R Return to Main Menu\n";
eaace00e 623 }
624 if ( $config_use_color == 1 ) {
1ef64acb 625 print "C Turn color off\n";
eaace00e 626 } else {
1ef64acb 627 print "C Turn color on\n";
eaace00e 628 }
dcc1cc82 629 print "S Save data\n";
630 print "Q Quit\n";
eaace00e 631
632 print "\n";
633 print "Command >> " . $WHT;
634 $command = <STDIN>;
85645192 635 $command =~ s/[\n\r]//g;
eaace00e 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 ) {
39d3ec89 669 if ( ( $command > 0 ) && ( $command < 12 ) ) {
eaace00e 670 $menu = $command;
1a7a2fcc 671 }
eaace00e 672 } elsif ( $menu == 1 ) {
673 if ( $command == 1 ) { $org_name = command1(); }
674 elsif ( $command == 2 ) { $org_logo = command2(); }
b6e0c3b6 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(); }
39d3ec89 678 elsif ( $command == 6 ) { $frame_top = command6(); }
679 elsif ( $command == 7 ) { $provider_uri = command7(); }
680 elsif ( $command == 8 ) { $provider_name = command8(); }
0ae4c1f2 681
eaace00e 682 } elsif ( $menu == 2 ) {
47a29326 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(); }
b47821fb 694 elsif ( $command == 6 ) { $imap_auth_mech = command112a(); }
47a29326 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(); }
35aaf666 698 } elsif ( $show_smtp_settings && lc($useSendmail) eq 'true' ) {
432db2fc 699 if ( $command == 4 ) { $sendmail_path = command15(); }
700 elsif ( $command == 5 ) { $encode_header_key = command114(); }
47a29326 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(); }
b47821fb 705 elsif ( $command == 7 ) { $smtp_auth_mech = command112b(); }
47a29326 706 elsif ( $command == 8 ) { $use_smtp_tls = command113("SMTP",$use_smtp_tls); }
432db2fc 707 elsif ( $command == 9 ) { $encode_header_key = command114(); }
47a29326 708 }
eaace00e 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(); }
ca85aabe 727 elsif ( $command == 18 ) { $noselect_fix_enable = command216(); }
eaace00e 728 } elsif ( $menu == 4 ) {
39d3ec89 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(); }
de74555e 741 elsif ( $command == 13 ) { $allow_advanced_search = command316(); }
742 elsif ( $command == 14 ) { $session_name = command317(); }
eaace00e 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(); }
4272758c 749 elsif ( $command == 3 ) { $abook_global_file=command63(); }
750 elsif ( $command == 4 ) { command64(); }
71d3f882 751 elsif ( $command == 5 ) { command65(); }
eaace00e 752 } elsif ( $menu == 7 ) {
753 if ( $command == 1 ) { $motd = command71(); }
754 } elsif ( $menu == 8 ) {
755 if ( $command =~ /^[0-9]+/ ) { @plugins = command81(); }
eaace00e 756 } elsif ( $menu == 9 ) {
99a6c222 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(); }
30e9932c 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(); }
39d3ec89 768 } elsif ( $menu == 10 ) {
769 if ( $command == 1 ) { $squirrelmail_default_language = commandA1(); }
35aaf666 770 elsif ( $command == 2 ) { $default_charset = commandA2(); }
dcc1cc82 771 elsif ( $command == 3 ) { $show_alternative_names = commandA3(); }
35aaf666 772 elsif ( $command == 4 ) { $available_languages = commandA4(); }
f03f6ee7 773 elsif ( $command == 5 ) { $aggressive_decoding = commandA5(); }
6d3689f5 774 elsif ( $command == 6 ) { $lossy_encoding = commandA6(); }
39d3ec89 775 } elsif ( $menu == 11 ) {
776 if ( $command == 1 ) { $advanced_tree = commandB1(); }
74d6a0d9 777 if ( $command == 2 ) { $use_iframe = commandB2(); }
6395c46d 778 elsif ( $command == 3 ) { $use_icons = commandB3(); }
779 elsif ( $command == 4 ) { $use_php_recode = commandB4(); }
780 elsif ( $command == 5 ) { $use_php_iconv = commandB5(); }
71d3f882 781 elsif ( $command == 6 ) { $allow_remote_configtest = commandB6(); }
eaace00e 782 }
783 }
828b4753 784}
785
cbd6543c 786# we exit here
787print "\nExiting conf.pl.\n".
35aaf666 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";
cbd6543c 791
792
828b4753 793####################################################################################
794
5b6ae78a 795# org_name
796sub command1 {
eaace00e 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";
360ef370 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";
360ef370 804 print "\n";
eaace00e 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 {
85645192 810 $new_org_name =~ s/[\r\n]//g;
35aaf666 811 $new_org_name =~ s/\"/&quot;/g;
eaace00e 812 }
813 return $new_org_name;
5b6ae78a 814}
815
816# org_logo
817sub command2 {
eaace00e 818 print "Your organization's logo is an image that will be displayed at\n";
25be56ab 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";
5d28b77e 826 print " e.g. http://www.example.com/images/mylogo.gif or /images/mylogo.jpg\n";
eaace00e 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 {
85645192 833 $new_org_logo =~ s/[\r\n]//g;
eaace00e 834 }
835 return $new_org_logo;
5b6ae78a 836}
837
b6e0c3b6 838# org_logo_width
839sub 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 }
0e21688d 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!
e03345e1 854 if( $new_org_logo_height eq '' ) {
35aaf666 855 $new_org_logo_height = $org_logo_height;
856 }
00c4b08d 857 } else {
0e21688d 858 $new_org_logo_height = 0;
b6e0c3b6 859 }
860 return ($new_org_logo_width, $new_org_logo_height);
861}
862
5b6ae78a 863# org_title
864sub command3 {
eaace00e 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";
360ef370 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";
8b5c49cd 872 print "\$version, for example can be used, and will print the\n";
360ef370 873 print "string representing the current SquirrelMail version.\n";
874 print "\n";
eaace00e 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 {
85645192 880 $new_org_title =~ s/[\r\n]//g;
35aaf666 881 $new_org_title =~ s/\"/\'/g;
eaace00e 882 }
883 return $new_org_title;
5b6ae78a 884}
5b6ae78a 885
f923b93d 886# signout_page
887sub command4 {
eaace00e 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 {
85645192 898 $new_signout_page =~ s/[\r\n]//g;
eaace00e 899 $new_signout_page =~ s/^\s+$//g;
900 }
901 return $new_signout_page;
6ef7145f 902}
903
80e86e94 904# Default top frame
905sub 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>;
eaace00e 912 if ( $new_frame_top eq "\n" ) {
80e86e94 913 $new_frame_top = '_top';
914 } else {
85645192 915 $new_frame_top =~ s/[\r\n]//g;
80e86e94 916 $new_frame_top =~ s/^\s+$//g;
917 }
918 return $new_frame_top;
919}
920
0ae4c1f2 921# Default link to provider
922sub command7 {
923 print "Here you can set the link on the right of the page.\n";
8b5c49cd 924 print "If empty, it will link to the SquirrelMail About page.\n";
0ae4c1f2 925 print "\n";
926 print "[$WHT$provider_uri$NRM]: $WHT";
927 $new_provider_uri = <STDIN>;
928 if ( $new_provider_uri eq "\n" ) {
8b5c49cd 929 $new_provider_uri = '';
0ae4c1f2 930 } else {
85645192 931 $new_provider_uri =~ s/[\r\n]//g;
0ae4c1f2 932 $new_provider_uri =~ s/^\s+$//g;
933 }
7b6563c0 934 return $new_provider_uri;
0ae4c1f2 935}
936
937sub 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 {
85645192 946 $new_provider_name =~ s/[\r\n]//g;
0ae4c1f2 947 $new_provider_name =~ s/^\s+$//g;
948 }
7b6563c0 949 return $new_provider_name;
0ae4c1f2 950}
951
828b4753 952####################################################################################
5b6ae78a 953
828b4753 954# domain
955sub command11 {
e1e4f932 956 print "The domain name is the suffix at the end of all email addresses. If\n";
5d28b77e 957 print "for example, your email address is jdoe\@example.com, then your domain\n";
958 print "would be example.com.\n";
eaace00e 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 {
85645192 965 $new_domain =~ s/[\r\n]//g;
eaace00e 966 }
967 return $new_domain;
828b4753 968}
5b6ae78a 969
828b4753 970# imapServerAddress
971sub command12 {
47a29326 972 print "This is the hostname where your IMAP server can be contacted.\n";
eaace00e 973 print "[$WHT$imapServerAddress$NRM]: $WHT";
974 $new_imapServerAddress = <STDIN>;
975 if ( $new_imapServerAddress eq "\n" ) {
976 $new_imapServerAddress = $imapServerAddress;
977 } else {
85645192 978 $new_imapServerAddress =~ s/[\r\n]//g;
eaace00e 979 }
980 return $new_imapServerAddress;
828b4753 981}
5b6ae78a 982
828b4753 983# imapPort
984sub command13 {
eaace00e 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 {
85645192 991 $new_imapPort =~ s/[\r\n]//g;
eaace00e 992 }
993 return $new_imapPort;
828b4753 994}
995
996# useSendmail
997sub command14 {
eaace00e 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";
35aaf666 1001 if ( lc($useSendmail) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 1013 $useSendmail = 'true';
eaace00e 1014 } else {
35aaf666 1015 $useSendmail = 'false';
eaace00e 1016 }
1017 return $useSendmail;
828b4753 1018}
5b6ae78a 1019
828b4753 1020# sendmail_path
1021sub command15 {
eaace00e 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 {
85645192 1031 $new_sendmail_path =~ s/[\r\n]//g;
eaace00e 1032 }
1033 return $new_sendmail_path;
828b4753 1034}
5b6ae78a 1035
828b4753 1036# smtpServerAddress
1037sub command16 {
47a29326 1038 print "This is the hostname of your SMTP server.\n";
eaace00e 1039 print "[$WHT$smtpServerAddress$NRM]: $WHT";
1040 $new_smtpServerAddress = <STDIN>;
1041 if ( $new_smtpServerAddress eq "\n" ) {
1042 $new_smtpServerAddress = $smtpServerAddress;
1043 } else {
85645192 1044 $new_smtpServerAddress =~ s/[\r\n]//g;
eaace00e 1045 }
1046 return $new_smtpServerAddress;
828b4753 1047}
1048
1049# smtpPort
1050sub command17 {
eaace00e 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 {
85645192 1057 $new_smtpPort =~ s/[\r\n]//g;
eaace00e 1058 }
1059 return $new_smtpPort;
bbd30ac8 1060}
d2f4c914 1061
598294a7 1062# authenticated server
a93b12ba 1063sub command18 {
47a29326 1064 return;
35aaf666 1065 # This sub disabled by tassium - it has been replaced with smtp_auth_mech
eaace00e 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';
35aaf666 1071 $YesNo = 'y' if ( lc($use_authenticated_smtp) eq 'true' );
eaace00e 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;
35aaf666 1077 return 'true' if ( $new_use_authenticated_smtp eq "y" );
1078 return 'false' if ( $new_use_authenticated_smtp eq "n" );
eaace00e 1079 return $use_authenticated_smtp;
1080}
d2f4c914 1081
2044f95a 1082# pop before SMTP
1083sub 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';
35aaf666 1088 $YesNo = 'y' if ( lc($pop_before_smtp) eq 'true' );
2044f95a 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;
35aaf666 1094 return 'true' if ( $new_pop_before_smtp eq "y" );
1095 return 'false' if ( $new_pop_before_smtp eq "n" );
2044f95a 1096 return $pop_before_smtp;
1097}
1098
598294a7 1099# imap_server_type
d2f4c914 1100sub command19 {
eaace00e 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";
a33764f6 1107 print " courier = Courier IMAP server\n";
b39825f0 1108 print " cyrus = Cyrus IMAP server\n";
a33764f6 1109 print " dovecot = Dovecot Secure IMAP server\n";
b39825f0 1110 print " exchange = Microsoft Exchange IMAP server\n";
b39825f0 1111 print " hmailserver = hMailServer\n";
a33764f6 1112 print " macosx = Mac OS X Mailserver\n";
1113 print " uw = University of Washington's IMAP server\n";
1114 print "\n";
b39825f0 1115 print " other = Not one of the above servers\n";
a33764f6 1116 print "\n";
eaace00e 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 {
85645192 1123 $new_imap_server_type =~ s/[\r\n]//g;
eaace00e 1124 }
1125 return $new_imap_server_type;
a93b12ba 1126}
3f8fe68e 1127
d47b2518 1128# invert_time
d2f4c914 1129sub command110 {
eaace00e 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';
35aaf666 1140 $YesNo = 'y' if ( lc($invert_time) eq 'true' );
eaace00e 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;
35aaf666 1146 return 'true' if ( $new_invert_time eq "y" );
1147 return 'false' if ( $new_invert_time eq "n" );
eaace00e 1148 return $invert_time;
1149}
d47b2518 1150
d2f4c914 1151sub command111 {
eaace00e 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 {
85645192 1165 $new_optional_delimiter =~ s/[\r\n]//g;
eaace00e 1166 }
1167 return $new_optional_delimiter;
40ba4d36 1168}
b47821fb 1169# IMAP authentication type
33feaaec 1170# Possible values: login, plain, cram-md5, digest-md5
b47821fb 1171# Now offers to detect supported mechs, assuming server & port are set correctly
1172
1173sub command112a {
80e3fcf8 1174 if ($use_imap_tls =~ /^true\b/i) {
1175 print "Auto-detection of login methods is unavailable when using TLS.\n";
1176 } else {
35aaf666 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 }
80e3fcf8 1197 } else {
35aaf666 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 }
598294a7 1212
35aaf666 1213 }
598294a7 1214 }
35aaf666 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";
33feaaec 1217 print $WHT . "plain" . $NRM . " - SASL PLAIN. If you need this, you already know it.\n";
35aaf666 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";
b47821fb 1223 $inval=<STDIN>;
1224 chomp($inval);
33feaaec 1225 if ( ($inval =~ /^cram-md5\b/i) || ($inval =~ /^digest-md5\b/i) || ($inval =~ /^login\b/i) || ($inval =~ /^plain\b/i)) {
b47821fb 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}
40ba4d36 1232
598294a7 1233
b47821fb 1234# SMTP authentication type
1235# Possible choices: none, plain, cram-md5, digest-md5
1236sub command112b {
80e3fcf8 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";
35aaf666 1242 print "Auto-detection is *optional* - you can safely say \"n\" here.\n";
80e3fcf8 1243 print "\nTry to detect auth mechanisms? [y/N]: ";
1244 $inval=<STDIN>;
1245 chomp($inval);
1246 if ($inval =~ /^y\b/i) {
35aaf666 1247 # Yes, let's try to detect.
1248 print "Trying to detect supported methods (SMTP)...\n";
598294a7 1249
35aaf666 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 {
5d28b77e 1260 print $sock "HELO $domain\r\n";
35aaf666 1261 $got = <$sock>; # Discard
5d28b77e 1262 print $sock "MAIL FROM:<tester\@squirrelmail.org>\r\n";
1263 $got = <$sock>; # Discard
1264 print $sock "RCPT TO:<junk\@microsoft.com\r\n";
35aaf666 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 }
5d28b77e 1271 print $sock "RSET\r\n";
1272 print $sock "QUIT\r\n";
35aaf666 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 }
598294a7 1287
35aaf666 1288 # Try CRAM-MD5
80e3fcf8 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";
b47821fb 1299 }
598294a7 1300
80e3fcf8 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";
b47821fb 1312 }
598294a7 1313 }
80e3fcf8 1314 }
1315 print "\nWhat authentication mechanism do you want to use for SMTP connections?\n";
b47821fb 1316 print $WHT . "none" . $NRM . " - Your SMTP server does not require authorization.\n";
fe0b18b3 1317 print $WHT . "login" . $NRM . " - Plaintext. If you can do better, you probably should.\n";
33feaaec 1318 print $WHT . "plain" . $NRM . " - SASL PLAIN. You already know it if you need this.\n";
639c7164 1319 print $WHT . "cram-md5" . $NRM . " - Slightly better than plaintext.\n";
1320 print $WHT . "digest-md5" . $NRM . " - Privacy protection - better than cram-md5.\n";
fe0b18b3 1321 print $WHT . "\n*** YOUR SMTP SERVER MUST SUPPORT THE MECHANISM YOU CHOOSE HERE ***\n" . $NRM;
b47821fb 1322 print "If you don't understand or are unsure, you probably want \"none\"\n\n";
fe0b18b3 1323 print "none, login, cram-md5, or digest-md5 [$WHT$smtp_auth_mech$NRM]: $WHT";
47a29326 1324 $inval=<STDIN>;
1325 chomp($inval);
b47821fb 1326 if ($inval =~ /^none\b/i) {
47a29326 1327 # SMTP doesn't necessarily require logins
1328 return "none";
1329 }
598294a7 1330 if ( ($inval =~ /^cram-md5\b/i) || ($inval =~ /^digest-md5\b/i) ||
33feaaec 1331 ($inval =~ /^login\b/i) || ($inval =~/^plain\b/i)) {
47a29326 1332 return lc($inval);
1333 } else {
b47821fb 1334 # user entered garbage, or default value so nothing needs to be set
35aaf666 1335 return $smtp_auth_mech;
47a29326 1336 }
1337}
1338
1339# TLS
1340# This sub is reused for IMAP and SMTP
1341# Args: service name, default value
1342sub command113 {
35aaf666 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";
47a29326 1352 print "Enable TLS (y/n) [$WHT";
35aaf666 1353 if ($default_val eq 'true') {
47a29326 1354 print "y";
1355 } else {
1356 print "n";
1357 }
598294a7 1358 print "$NRM]: $WHT";
47a29326 1359 $inval=<STDIN>;
1360 $inval =~ tr/yn//cd;
35aaf666 1361 return 'true' if ( $inval eq "y" );
1362 return 'false' if ( $inval eq "n" );
47a29326 1363 return $default_val;
35aaf666 1364}
47a29326 1365
432db2fc 1366# $encode_header_key
35aaf666 1367sub command114{
432db2fc 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;
35aaf666 1388}
47a29326 1389
3f8fe68e 1390# MOTD
1391sub command71 {
eaace00e 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";
dcc1cc82 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";
eaace00e 1396
1397 $new_motd = "";
1398 do {
1399 print "] ";
1400 $line = <STDIN>;
85645192 1401 $line =~ s/[\r\n]//g;
eaace00e 1402 if ( $line ne "@" ) {
1403 $line =~ s/ /\&nbsp;\&nbsp;/g;
1404 $line =~ s/\t/\&nbsp;\&nbsp;\&nbsp;\&nbsp;/g;
1405 $line =~ s/$/ /;
d756b071 1406 $line =~ s/\"/&quot;/g;
eaace00e 1407
1408 $new_motd = $new_motd . $line;
1409 }
1410 } while ( $line ne "@" );
1411 return $new_motd;
3f8fe68e 1412}
911ad01c 1413
9d0c7bee 1414################# PLUGINS ###################
1415
1416sub command81 {
85645192 1417 $command =~ s/[\s\n\r]*//g;
eaace00e 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++;
9d0c7bee 1428 }
eaace00e 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] );
eaace00e 1437 }
1438 $ct++;
9d0c7bee 1439 }
eaace00e 1440 @plugins = @newplugins;
1441 }
1442 }
1443 return @plugins;
1444}
9d0c7bee 1445
911ad01c 1446################# FOLDERS ###################
1447
1448# default_folder_prefix
1449sub command21 {
eaace00e 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 {
d52532d5 1465 $new_default_folder_prefix =~ s/[\r\n]//g;
eaace00e 1466 }
d52532d5 1467 if ( ( $new_default_folder_prefix =~ /^\s*$/ ) || ( $new_default_folder_prefix =~ m/^none$/i ) ) {
eaace00e 1468 $new_default_folder_prefix = "";
1469 } else {
d52532d5 1470 # add the trailing delimiter only if we know what the server is.
ce9f808b 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')) {
d52532d5 1475 $new_default_folder_prefix =~ s/\.*$/\./;
ce9f808b 1476 } elsif ($imap_server_type eq 'uw' and
1477 $optional_delimiter eq 'detect') {
d52532d5 1478 $new_default_folder_prefix =~ s/\/*$/\//;
0e21688d 1479 }
eaace00e 1480 }
1481 return $new_default_folder_prefix;
911ad01c 1482}
1483
1484# Show Folder Prefix
1485sub command22 {
eaace00e 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
35aaf666 1497 if ( lc($show_prefix_option) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 1506 $show_prefix_option = 'true';
eaace00e 1507 } else {
35aaf666 1508 $show_prefix_option = 'false';
eaace00e 1509 }
1510 return $show_prefix_option;
911ad01c 1511}
1512
598294a7 1513# Trash Folder
f7b1b3b1 1514sub command23a {
eaace00e 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 {
85645192 1530 $new_trash_folder =~ s/[\r\n]//g;
eaace00e 1531 }
1532 return $new_trash_folder;
911ad01c 1533}
1534
598294a7 1535# Sent Folder
f7b1b3b1 1536sub command23b {
eaace00e 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 {
85645192 1551 $new_sent_folder =~ s/[\r\n]//g;
eaace00e 1552 }
1553 return $new_sent_folder;
911ad01c 1554}
1555
598294a7 1556# Draft Folder
f7b1b3b1 1557sub command23c {
eaace00e 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 {
85645192 1573 $new_draft_folder =~ s/[\r\n]//g;
eaace00e 1574 }
1575 return $new_draft_folder;
f7b1b3b1 1576}
1577
598294a7 1578# default move to trash
f7b1b3b1 1579sub command24a {
eaace00e 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
35aaf666 1588 if ( lc($default_move_to_trash) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 1596 $default_move_to_trash = 'true';
eaace00e 1597 } else {
35aaf666 1598 $default_move_to_trash = 'false';
eaace00e 1599 }
1600 return $default_move_to_trash;
2f287147 1601}
1602
598294a7 1603# default move to sent
f7b1b3b1 1604sub command24b {
eaace00e 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";
6517cfd0 1609 print "Sent folder is currently: $sent_folder\n";
eaace00e 1610 print "\n";
1611
35aaf666 1612 if ( lc($default_move_to_sent) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 1620 $default_move_to_sent = 'true';
eaace00e 1621 } else {
35aaf666 1622 $default_move_to_sent = 'false';
eaace00e 1623 }
1624 return $default_move_to_sent;
2f287147 1625}
1626
f7b1b3b1 1627# default save as draft
1628sub command24c {
eaace00e 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
35aaf666 1636 if ( lc($default_move_to_draft) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 1644 $default_save_as_draft = 'true';
eaace00e 1645 } else {
35aaf666 1646 $default_save_as_draft = 'false';
eaace00e 1647 }
1648 return $default_save_as_draft;
f7b1b3b1 1649}
1650
598294a7 1651# List special folders first
2f287147 1652sub command27 {
eaace00e 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
35aaf666 1660 if ( lc($list_special_folders_first) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 1669 $list_special_folders_first = 'true';
eaace00e 1670 } else {
35aaf666 1671 $list_special_folders_first = 'false';
eaace00e 1672 }
1673 return $list_special_folders_first;
911ad01c 1674}
1675
598294a7 1676# Show special folders color
2f287147 1677sub command28 {
eaace00e 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
35aaf666 1685 if ( lc($use_special_folder_color) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 1694 $use_special_folder_color = 'true';
eaace00e 1695 } else {
35aaf666 1696 $use_special_folder_color = 'false';
eaace00e 1697 }
1698 return $use_special_folder_color;
911ad01c 1699}
1700
598294a7 1701# Auto expunge
2f287147 1702sub command29 {
eaace00e 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
35aaf666 1710 if ( lc($auto_expunge) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 1718 $auto_expunge = 'true';
eaace00e 1719 } else {
35aaf666 1720 $auto_expunge = 'false';
eaace00e 1721 }
1722 return $auto_expunge;
911ad01c 1723}
1724
598294a7 1725# Default sub of inbox
2f287147 1726sub command210 {
eaace00e 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
35aaf666 1734 if ( lc($default_sub_of_inbox) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 1742 $default_sub_of_inbox = 'true';
eaace00e 1743 } else {
35aaf666 1744 $default_sub_of_inbox = 'false';
eaace00e 1745 }
1746 return $default_sub_of_inbox;
911ad01c 1747}
1748
598294a7 1749# Show contain subfolder option
2f287147 1750sub command211 {
eaace00e 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
35aaf666 1758 if ( lc($show_contain_subfolders_option) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 1766 $show_contain_subfolders_option = 'true';
eaace00e 1767 } else {
35aaf666 1768 $show_contain_subfolders_option = 'false';
eaace00e 1769 }
1770 return $show_contain_subfolders_option;
911ad01c 1771}
1772
598294a7 1773# Default Unseen Notify
24fc5dd2 1774sub command212 {
eaace00e 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>;
85645192 1785 if ( $new_show =~ /^[123]\n/i ) {
eaace00e 1786 $default_unseen_notify = $new_show;
1787 }
85645192 1788 $default_unseen_notify =~ s/[\r\n]//g;
eaace00e 1789 return $default_unseen_notify;
24fc5dd2 1790}
1791
598294a7 1792# Default Unseen Type
24fc5dd2 1793sub command213 {
eaace00e 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>;
85645192 1802 if ( $new_show =~ /^[12]\n/i ) {
eaace00e 1803 $default_unseen_type = $new_show;
1804 }
85645192 1805 $default_unseen_type =~ s/[\r\n]//g;
eaace00e 1806 return $default_unseen_type;
24fc5dd2 1807}
1808
f7bfc9de 1809# Auto create special folders
1810sub command214 {
eaace00e 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
35aaf666 1817 if ( lc($auto_create_special) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 1825 $auto_create_special = 'true';
eaace00e 1826 } else {
35aaf666 1827 $auto_create_special = 'false';
eaace00e 1828 }
1829 return $auto_create_special;
f7bfc9de 1830}
1831
598294a7 1832# Automatically delete folders
4e85a37f 1833sub command215 {
d04165f3 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";
98468fba 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";
2eec12b5 1839 print "Press any key to continue...\n";
1840 $new_delete = <STDIN>;
35aaf666 1841 $delete_folder = 'true';
598294a7 1842 } else {
d04165f3 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";
598294a7 1850 print "when changing this setting.\n\n";
d04165f3 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..
598294a7 1858 # we've changed the question to make it more clear,
1859 # and are here handling that to avoid changing the answers..
35aaf666 1860 if ( lc($delete_folder) eq 'true' ) {
2eec12b5 1861 $default_value = "n";
d04165f3 1862 } else {
1863 $default_value = "y";
2eec12b5 1864 }
d04165f3 1865 print "Send deleted folders to Trash? (y/n) [$WHT$default_value$NRM]: $WHT";
2eec12b5 1866 $new_delete = <STDIN>;
1867 if ( ( $new_delete =~ /^y\n/i ) || ( ( $new_delete =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 1868 $delete_folder = 'false';
d04165f3 1869 } else {
35aaf666 1870 $delete_folder = 'true';
2eec12b5 1871 }
eaace00e 1872 }
1873 return $delete_folder;
1874}
24fc5dd2 1875
ca85aabe 1876#noselect fix
1877sub 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
35aaf666 1883 if ( lc($noselect_fix_enable) eq 'true' ) {
ca85aabe 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" ) ) ) {
35aaf666 1891 $noselect_fix_enable = 'true';
ca85aabe 1892 } else {
35aaf666 1893 $noselect_fix_enable = 'false';
ca85aabe 1894 }
1895 return $noselect_fix_enable;
1896}
ccfb2029 1897############# GENERAL OPTIONS #####################
1898
ccfb2029 1899# Data directory
3392dc86 1900sub command33a {
e6566358 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";
598294a7 1905 print " Relative: ../data/\n";
8bd9e0dd 1906 print "Relative paths to directories outside of the SquirrelMail distribution\n";
e6566358 1907 print "will be converted to their absolute path equivalents in config.php.\n\n";
30e9932c 1908 print "Note: There are potential security risks with having a writeable directory\n";
e6566358 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";
2eec12b5 1911 print "in an alternate location of your choice. \n";
1912 print "\n";
1913
eaace00e 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 {
85645192 1919 $new_data_dir =~ s/[\r\n]//g;
eaace00e 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;
ccfb2029 1928}
1929
1930# Attachment directory
3392dc86 1931sub command33b {
eaace00e 1932 print "Path to directory used for storing attachments while a mail is\n";
e6566358 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";
eaace00e 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";
e6566358 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";
eaace00e 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 {
85645192 1959 $new_attachment_dir =~ s/[\r\n]//g;
eaace00e 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;
ccfb2029 1968}
1969
3392dc86 1970sub command33c {
eaace00e 1971 print "The directory hash level setting allows you to configure the level\n";
598294a7 1972 print "of hashing that SquirrelMail employs in your data and attachment\n";
eaace00e 1973 print "directories. This value must be an integer ranging from 0 to 4.\n";
598294a7 1974 print "When this value is set to 0, SquirrelMail will simply store all\n";
eaace00e 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 {
85645192 1990 $new_dir_hash_level =~ s/[\r\n]//g;
eaace00e 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;
3392dc86 2004}
ccfb2029 2005
2006sub command35 {
eaace00e 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 {
85645192 2016 $new_default_left_size =~ s/[\r\n]//g;
eaace00e 2017 }
2018 return $new_default_left_size;
ccfb2029 2019}
2020
985f7c88 2021sub command36 {
eaace00e 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
35aaf666 2028 if ( lc($force_username_lowercase) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 2036 return 'true';
eaace00e 2037 }
35aaf666 2038 return 'false';
985f7c88 2039}
2040
0d15cd19 2041sub command37 {
eaace00e 2042 print "";
2043 print "\n";
985f7c88 2044
35aaf666 2045 if ( lc($default_use_priority) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 2054 return 'true';
eaace00e 2055 }
35aaf666 2056 return 'false';
826b7f71 2057}
2058
eaace00e 2059sub command38 {
2060 print "";
2061 print "\n";
2062
35aaf666 2063 if ( lc($default_hide_attribution) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 2072 return 'true';
eaace00e 2073 }
35aaf666 2074 return 'false';
eaace00e 2075}
826b7f71 2076
8c21da0c 2077sub command39 {
eaace00e 2078 print "";
2079 print "\n";
2080
35aaf666 2081 if ( lc($default_use_mdn) eq 'true' ) {
eaace00e 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" ) ) ) {
35aaf666 2090 return 'true';
eaace00e 2091 }
35aaf666 2092 return 'false';
8c21da0c 2093}
2094
432db2fc 2095
8a7d0669 2096sub command310 {
2eec12b5 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 ";
8a7d0669 2099 print "retrieveuserdata plugin\n";
2100 print "\n";
eaace00e 2101
35aaf666 2102 if ( lc($edit_identity) eq 'true' ) {
8a7d0669 2103 $default_value = "y";
2104 } else {
2105 $default_value = "n";
2106 }
2eec12b5 2107 print "Allow editing of user's identity? (y/n) [$WHT$default_value$NRM]: $WHT";
8a7d0669 2108 $new_edit = <STDIN>;
eaace00e 2109 if ( ( $new_edit =~ /^y\n/i ) || ( ( $new_edit =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 2110 $edit_identity = 'true';
2111 $edit_name = 'true';
432db2fc 2112 $hide_auth_header = 'false';
8a7d0669 2113 } else {
35aaf666 2114 $edit_identity = 'false';
2eec12b5 2115 $edit_name = command311();
432db2fc 2116 $hide_auth_header = command311b();
8a7d0669 2117 }
2118 return $edit_identity;
2119}
2120
2121sub command311 {
2eec12b5 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";
8a7d0669 2125 print "\n";
2126
35aaf666 2127 if ( lc($edit_name) eq 'true' ) {
8a7d0669 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>;
eaace00e 2134 if ( ( $new_edit =~ /^y\n/i ) || ( ( $new_edit =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 2135 $edit_name = 'true';
8a7d0669 2136 } else {
35aaf666 2137 $edit_name = 'false';
8a7d0669 2138 }
2139 return $edit_name;
2140}
8c21da0c 2141
432db2fc 2142sub 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
7c612fdd 2168sub 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";
35aaf666 2171 print "PHP versions later than 4.0.3 recommended\n";
7c612fdd 2172 print "\n";
2173
35aaf666 2174 if ( lc($allow_thread_sort) eq 'true' ) {
7c612fdd 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" ) ) ) {
35aaf666 2182 $allow_thread_sort = 'true';
7c612fdd 2183 } else {
35aaf666 2184 $allow_thread_sort = 'false';
7c612fdd 2185 }
2186 return $allow_thread_sort;
2187}
2188
aa0da530 2189sub 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
aacc7bec 2194 if ( lc($allow_server_sort) eq 'true' ) {
aa0da530 2195 $default_value = "y";
2196 } else {
2197 $default_value = "n";
2198 }
aacc7bec 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';
aa0da530 2203 } else {
aacc7bec 2204 $allow_server_sort = 'false';
aa0da530 2205 }
aacc7bec 2206 return $allow_server_sort;
aa0da530 2207}
2208
65ffb3ce 2209sub 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
35aaf666 2214 if ( lc($allow_charset_search) eq 'true' ) {
65ffb3ce 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" ) ) ) {
35aaf666 2222 $allow_charset_search = 'true';
65ffb3ce 2223 } else {
35aaf666 2224 $allow_charset_search = 'false';
65ffb3ce 2225 }
2226 return $allow_charset_search;
2227}
2228
4ecd3a70 2229# command315 (UID support) obsoleted.
3c7ee482 2230
de74555e 2231# advanced search option
6c499577 2232sub command316 {
66bfb27b 2233 print "This option allows you to control the use of advanced search form.\n";
0f1b00b8 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>;
85645192 2241 if ( $new_allow_advanced_search =~ /^[012]\n/i ) {
0f1b00b8 2242 $allow_advanced_search = $new_allow_advanced_search;
de74555e 2243 }
85645192 2244 $allow_advanced_search =~ s/[\r\n]//g;
66bfb27b 2245 return $allow_advanced_search;
de74555e 2246}
2247
2248
2249sub command317 {
35aaf666 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";
6c499577 2253 print "[$WHT$session_name$NRM]: $WHT";
2254 $new_session_name = <STDIN>;
35aaf666 2255 chomp($new_session_name);
6614128e 2256 if ( $new_session_name eq "" ) {
6c499577 2257 $new_session_name = $session_name;
2258 }
2259 return $new_session_name;
2260}
2261
dcc1cc82 2262
65ffb3ce 2263
ccfb2029 2264sub command41 {
2eec12b5 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 ";
eaace00e 2267 print "them. You can also change the default theme.\n";
2268 print "[theme] command (?=help) > ";
2269 $input = <STDIN>;
85645192 2270 $input =~ s/[\r\n]//g;
eaace00e 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 }
2eec12b5 2280 if ( $count < 10 ) {
2281 print " ";
2282 }
eaace00e 2283 $name = $theme_name[$count];
2eec12b5 2284 $num_spaces = 35 - length($name);
eaace00e 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++;
ccfb2029 2293 }
eaace00e 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;
ccfb2029 2301 }
eaace00e 2302 } elsif ( $input =~ /^\s*\+/ ) {
2303 print "What is the name of this theme: ";
2304 $name = <STDIN>;
85645192 2305 $name =~ s/[\r\n]//g;
eaace00e 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>;
85645192 2310 $name =~ s/[\r\n]//g;
eaace00e 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;
ccfb2029 2319 }
eaace00e 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 }
8442ac08 2338 }
eaace00e 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>;
85645192 2358 $nm =~ s/[\n\r]//g;
eaace00e 2359 $theme_name[ $#theme_name + 1 ] = $nm;
2360 $theme_path[ $#theme_path + 1 ] = $filename;
2361 }
2362 }
2363 $cnt++;
8442ac08 2364 }
eaace00e 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>;
85645192 2404 $input =~ s/[\r\n]//g;
eaace00e 2405 }
2406}
ccfb2029 2407
6f3bfa54 2408# Theme - CSS file
2409sub command42 {
eaace00e 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";
25be56ab 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";
8bd9e0dd 2423 print "\n";
eaace00e 2424 print "[$WHT$theme_css$NRM]: $WHT";
2425 $new_theme_css = <STDIN>;
6f3bfa54 2426
eaace00e 2427 if ( $new_theme_css eq "\n" ) {
2428 $new_theme_css = $theme_css;
2429 } else {
85645192 2430 $new_theme_css =~ s/[\r\n]//g;
eaace00e 2431 }
2432 $new_theme_css =~ s/^\s*//;
2433 return $new_theme_css;
2434}
6f3bfa54 2435
1e0628fb 2436sub command61 {
eaace00e 2437 print "You can now define different LDAP servers.\n";
2438 print "[ldap] command (?=help) > ";
2439 $input = <STDIN>;
85645192 2440 $input =~ s/[\r\n]//g;
eaace00e 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 }
43397658 2459 if ( $ldap_filter[$count] ) {
2460 print " filter: $ldap_filter[$count]\n";
2461 }
30e9932c 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 }
43397658 2468 if ( $ldap_protocol[$count] ) {
30e9932c 2469 print " protocol: $ldap_protocol[$count]\n";
2470 }
43397658 2471 if ( $ldap_limit_scope[$count] ) {
2472 print " limit_scope: $ldap_limit_scope[$count]\n";
2473 }
30e9932c 2474
eaace00e 2475 print "\n";
2476 $count++;
a93b12ba 2477 }
eaace00e 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>;
85645192 2485 $name =~ s/[\r\n]//g;
eaace00e 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>;
85645192 2495 $name =~ s/[\r\n]//g;
eaace00e 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>;
85645192 2504 $name =~ s/[\r\n]//g;
eaace00e 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>;
85645192 2513 $name =~ s/[\r\n]//g;
eaace00e 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>;
85645192 2522 $name =~ s/[\r\n]//g;
eaace00e 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>;
85645192 2531 $name =~ s/[\r\n]//g;
eaace00e 2532 $ldap_maxrows[$sub] = $name;
2533
a93b12ba 2534 print "\n";
eaace00e 2535
43397658 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
30e9932c 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>;
85645192 2550 $name =~ s/[\r\n]//g;
30e9932c 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>;
85645192 2560 $name =~ s/[\r\n]//g;
30e9932c 2561 $ldap_bindpw[$sub] = $name;
2562
2563 print "\n";
2564 }
2565
43397658 2566 print "You can specify bind protocol version here.\n";
30e9932c 2567 print "Default protocol version depends on your php ldap settings.\n";
43397658 2568 print "Press ENTER for default.\n";
30e9932c 2569 print "protocol: ";
2570 $name = <STDIN>;
85645192 2571 $name =~ s/[\r\n]//g;
30e9932c 2572 $ldap_protocol[$sub] = $name;
2573
2574 print "\n";
2575
43397658 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
eaace00e 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 = ();
43397658 2607 @new_ldap_filter = ();
30e9932c 2608 @new_ldap_bindpw = ();
2609 @new_ldap_binddn = ();
2610 @new_ldap_protocol = ();
43397658 2611 @new_ldap_limit_scope = ();
eaace00e 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] );
43397658 2621 @new_ldap_filter = ( @new_ldap_filter, $ldap_filter[$count] );
30e9932c 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] );
43397658 2625 @new_ldap_limit_scope = ( @new_ldap_limit_scope, $ldap_limit_scope[$count] );
eaace00e 2626 }
2627 $count++;
1e0628fb 2628 }
eaace00e 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;
43397658 2635 @ldap_filter = @new_ldap_filter;
30e9932c 2636 @ldap_binddn = @new_ldap_binddn;
2637 @ldap_bindpw = @new_ldap_bindpw;
2638 @ldap_protocol = @new_ldap_protocol;
43397658 2639 @ldap_limit_scope = @new_ldap_limit_scope;
30e9932c 2640
eaace00e 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>;
85645192 2651 $input =~ s/[\r\n]//g;
eaace00e 2652 }
2653}
1e0628fb 2654
3806fa52 2655sub command62 {
eaace00e 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
35aaf666 2666 if ( lc($default_use_javascript_addr_book) eq 'true' ) {
eaace00e 2667 $default_value = "y";
2668 } else {
35aaf666 2669 $default_use_javascript_addr_book = 'false';
eaace00e 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" ) ) ) {
35aaf666 2675 $default_use_javascript_addr_book = 'true';
eaace00e 2676 } else {
35aaf666 2677 $default_use_javascript_addr_book = 'false';
eaace00e 2678 }
2679 return $default_use_javascript_addr_book;
3806fa52 2680}
1e0628fb 2681
4272758c 2682# global filebased address book
2683sub 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";
598294a7 2688 print "relative to main SquirrelMail directory. If value is empty,\n";
4272758c 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
2703sub command64 {
7eb64c3e 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";
4272758c 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 }
7eb64c3e 2715 print "Allow writing into global file address book (y/n) [$WHT$default_value$NRM]: $WHT";
4272758c 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
71d3f882 2725# listing of global filebased abook control
2726sub 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
497203d4 2747sub command91 {
eaace00e 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 {
85645192 2767 $new_dsn =~ s/[\r\n]//g;
eaace00e 2768 $new_dsn =~ s/^\s+$//g;
2769 }
2770 return $new_dsn;
497203d4 2771}
ccfb2029 2772
4f40a59d 2773sub command92 {
eaace00e 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 {
85645192 2782 $new_table =~ s/[\r\n]//g;
eaace00e 2783 }
2784 return $new_table;
4f40a59d 2785}
2786
3499f99f 2787sub 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
eaace00e 2797 if ( $prefs_dsn eq "" ) {
3499f99f 2798 $default_value = "Disabled";
2799 } else {
2800 $default_value = $prefs_dsn;
2801 }
2802 print "[$WHT$prefs_dsn$NRM]: $WHT";
2803 $new_dsn = <STDIN>;
eaace00e 2804 if ( $new_dsn eq "\n" ) {
3499f99f 2805 $new_dsn = "";
2806 } else {
85645192 2807 $new_dsn =~ s/[\r\n]//g;
3499f99f 2808 $new_dsn =~ s/^\s+$//g;
2809 }
2810 return $new_dsn;
2811}
2812
2813sub command94 {
2814 print "This is the name of the table you want to store the preferences\n";
99a6c222 2815 print "data in, it defaults to 'userprefs'\n";
3499f99f 2816 print "\n";
2817 print "[$WHT$prefs_table$NRM]: $WHT";
2818 $new_table = <STDIN>;
eaace00e 2819 if ( $new_table eq "\n" ) {
3499f99f 2820 $new_table = $prefs_table;
2821 } else {
85645192 2822 $new_table =~ s/[\r\n]//g;
3499f99f 2823 }
2824 return $new_table;
eaace00e 2825}
3499f99f 2826
99a6c222 2827sub 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 {
85645192 2838 $new_field =~ s/[\r\n]//g;
99a6c222 2839 }
2840 return $new_field;
2841}
2842
2843sub 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 {
85645192 2852 $new_field =~ s/[\r\n]//g;
99a6c222 2853 }
2854 return $new_field;
2855}
2856
2857sub 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 {
85645192 2866 $new_field =~ s/[\r\n]//g;
99a6c222 2867 }
2868 return $new_field;
2869}
2870
30e9932c 2871sub 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 {
85645192 2891 $new_dsn =~ s/[\r\n]//g;
30e9932c 2892 $new_dsn =~ s/^\s+$//g;
2893 }
2894 return $new_dsn;
2895}
2896
2897sub command99 {
2898 print "This is the name of the table you want to store the global address book\n";
6e00b127 2899 print "data in. Default table name is 'global_abook'. Address book uses same\n";
2900 print "database format as personal address book.\n";
30e9932c 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 {
85645192 2907 $new_table =~ s/[\r\n]//g;
30e9932c 2908 }
2909 return $new_table;
2910}
2911
2912sub command910 {
2913 print "This option controls users\' ability to add or modify records stored \n";
2914 print "in global address book\n";
2915
35aaf666 2916 if ( lc($addrbook_global_writeable) eq 'true' ) {
30e9932c 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" ) ) ) {
35aaf666 2924 $addrbook_global_writeable = 'true';
30e9932c 2925 } else {
35aaf666 2926 $addrbook_global_writeable = 'false';
30e9932c 2927 }
2928 return $addrbook_global_writeable;
2929}
2930
2931sub command911 {
2932 print "Enable this option if you want to see listing of addresses stored \n";
2933 print "in global address book\n";
2934
35aaf666 2935 if ( lc($addrbook_global_listing) eq 'true' ) {
30e9932c 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" ) ) ) {
35aaf666 2943 $addrbook_global_listing = 'true';
30e9932c 2944 } else {
35aaf666 2945 $addrbook_global_listing = 'false';
30e9932c 2946 }
2947 return $addrbook_global_listing;
2948}
2949
2950
39d3ec89 2951# Default language
2952sub 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 {
85645192 2962 $new_squirrelmail_default_language =~ s/[\r\n]//g;
39d3ec89 2963 $new_squirrelmail_default_language =~ s/^\s+$//g;
2964 }
2965 return $new_squirrelmail_default_language;
2966}
2967# Default Charset
2968sub commandA2 {
fe48c808 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";
39d3ec89 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 {
85645192 2980 $new_default_charset =~ s/[\r\n]//g;
39d3ec89 2981 }
2982 return $new_default_charset;
2983}
2984# Alternative language names
2985sub 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
35aaf666 2992 if ( lc($show_alternative_names) eq 'true' ) {
39d3ec89 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" ) ) ) {
35aaf666 3000 $show_alternative_names = 'true';
39d3ec89 3001 } else {
35aaf666 3002 $show_alternative_names = 'false';
39d3ec89 3003 }
3004 return $show_alternative_names;
3005}
3006# Available languages
3007sub 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";
fe48c808 3016 print "You can find valid language names in doc/i18n.txt.\n";
39d3ec89 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 {
85645192 3023 $new_available_languages =~ s/[\r\n]//g;
39d3ec89 3024 $new_available_languages =~ s/^\s+$//g;
3025 }
3026 return $new_available_languages;
3027}
f03f6ee7 3028# Aggressive decoding
39d3ec89 3029sub 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
f03f6ee7 3036 if ( lc($aggressive_decoding) eq 'true' ) {
39d3ec89 3037 $default_value = "y";
3038 } else {
3039 $default_value = "n";
3040 }
f03f6ee7 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';
39d3ec89 3045 } else {
f03f6ee7 3046 $aggressive_decoding = 'false';
39d3ec89 3047 }
f03f6ee7 3048 return $aggressive_decoding;
39d3ec89 3049}
3050
6d3689f5 3051# Lossy encoding
f03f6ee7 3052sub commandA6 {
6d3689f5 3053 print "Enable this option if you want to allow lossy charset encoding in message\n";
f03f6ee7 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
6d3689f5 3059 if ( lc($lossy_encoding) eq 'true' ) {
f03f6ee7 3060 $default_value = "y";
3061 } else {
3062 $default_value = "n";
3063 }
6d3689f5 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';
f03f6ee7 3068 } else {
6d3689f5 3069 $lossy_encoding = 'false';
f03f6ee7 3070 }
6d3689f5 3071 return $lossy_encoding;
f03f6ee7 3072}
3073
3074
39d3ec89 3075# Advanced tree
3076sub 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
35aaf666 3082 if ( lc($advanced_tree) eq 'true' ) {
39d3ec89 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" ) ) ) {
35aaf666 3090 $advanced_tree = 'true';
39d3ec89 3091 } else {
35aaf666 3092 $advanced_tree = 'false';
39d3ec89 3093 }
3094 return $advanced_tree;
3095}
74d6a0d9 3096# display html emails in iframe
3097sub 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}
6395c46d 3118# use icons
39d3ec89 3119sub commandB3 {
6395c46d 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
35aaf666 3129 if ( lc($use_icons) eq 'true' ) {
6395c46d 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" ) ) ) {
35aaf666 3137 $use_icons = 'true';
6395c46d 3138 } else {
35aaf666 3139 $use_icons = 'false';
6395c46d 3140 }
3141 return $use_icons;
3142}
3143# php recode
3144sub commandB4 {
39d3ec89 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
35aaf666 3152 if ( lc($use_php_recode) eq 'true' ) {
39d3ec89 3153 $default_value = "y";
3154 } else {
3155 $default_value = "n";
3156 }
ad9d110a 3157 print "Use php recode functions? (y/n) [$WHT$default_value$NRM]: $WHT";
39d3ec89 3158 $use_php_recode = <STDIN>;
3159 if ( ( $use_php_recode =~ /^y\n/i ) || ( ( $use_php_recode =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 3160 $use_php_recode = 'true';
39d3ec89 3161 } else {
35aaf666 3162 $use_php_recode = 'false';
39d3ec89 3163 }
3164 return $use_php_recode;
3165}
3166# php iconv
6395c46d 3167sub commandB5 {
39d3ec89 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
35aaf666 3176 if ( lc($use_php_iconv) eq 'true' ) {
39d3ec89 3177 $default_value = "y";
3178 } else {
3179 $default_value = "n";
3180 }
ad9d110a 3181 print "Use php iconv functions? (y/n) [$WHT$default_value$NRM]: $WHT";
39d3ec89 3182 $use_php_iconv = <STDIN>;
3183 if ( ( $use_php_iconv =~ /^y\n/i ) || ( ( $use_php_iconv =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 3184 $use_php_iconv = 'true';
39d3ec89 3185 } else {
35aaf666 3186 $use_php_iconv = 'false';
39d3ec89 3187 }
3188 return $use_php_iconv;
3189}
3190
71d3f882 3191# configtest block
3192sub 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
39d3ec89 3213
ccfb2029 3214sub save_data {
ebd13f55 3215 $tab = " ";
eaace00e 3216 if ( open( CF, ">config.php" ) ) {
ebd13f55 3217 print CF "<?php\n";
3218 print CF "\n";
eaace00e 3219
ebd13f55 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";
93c06fa2 3225 print CF "global \$version;\n";
598294a7 3226
ebd13f55 3227 if ($print_config_version) {
eaace00e 3228 print CF "\$config_version = '$print_config_version';\n";
ebd13f55 3229 }
35aaf666 3230 # integer
254ded61 3231 print CF "\$config_use_color = $config_use_color;\n";
ebd13f55 3232 print CF "\n";
598294a7 3233
35aaf666 3234 # string
d756b071 3235 print CF "\$org_name = \"$org_name\";\n";
254ded61 3236 # string
35aaf666 3237 print CF "\$org_logo = " . &change_to_SM_path($org_logo) . ";\n";
b6e0c3b6 3238 $org_logo_width |= 0;
3239 $org_logo_height |= 0;
35aaf666 3240 # string
6c2d0a35 3241 print CF "\$org_logo_width = '$org_logo_width';\n";
3242 # string
35aaf666 3243 print CF "\$org_logo_height = '$org_logo_height';\n";
3244 # string that can contain variables.
12947430 3245 print CF "\$org_title = \"$org_title\";\n";
35aaf666 3246 # string
8bd9e0dd 3247 print CF "\$signout_page = " . &change_to_SM_path($signout_page) . ";\n";
35aaf666 3248 # string
3d043efc 3249 print CF "\$frame_top = '$frame_top';\n";
ebd13f55 3250 print CF "\n";
eaace00e 3251
0ae4c1f2 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
35aaf666 3258 # string that can contain variables
254ded61 3259 print CF "\$motd = \"$motd\";\n";
ebd13f55 3260 print CF "\n";
598294a7 3261
35aaf666 3262 # string
ebd13f55 3263 print CF "\$squirrelmail_default_language = '$squirrelmail_default_language';\n";
35aaf666 3264 # string
39d3ec89 3265 print CF "\$default_charset = '$default_charset';\n";
35aaf666 3266 # boolean
6cbbd722 3267 print CF "\$show_alternative_names = $show_alternative_names;\n";
35aaf666 3268 # string
39d3ec89 3269 print CF "\$available_languages = '$available_languages';\n";
35aaf666 3270 # boolean
f03f6ee7 3271 print CF "\$aggressive_decoding = $aggressive_decoding;\n";
3272 # boolean
6d3689f5 3273 print CF "\$lossy_encoding = $lossy_encoding;\n";
ebd13f55 3274 print CF "\n";
eaace00e 3275
35aaf666 3276 # string
ebd13f55 3277 print CF "\$domain = '$domain';\n";
35aaf666 3278 # string
ebd13f55 3279 print CF "\$imapServerAddress = '$imapServerAddress';\n";
35aaf666 3280 # integer
254ded61 3281 print CF "\$imapPort = $imapPort;\n";
35aaf666 3282 # boolean
254ded61 3283 print CF "\$useSendmail = $useSendmail;\n";
35aaf666 3284 # string
ebd13f55 3285 print CF "\$smtpServerAddress = '$smtpServerAddress';\n";
35aaf666 3286 # integer
254ded61 3287 print CF "\$smtpPort = $smtpPort;\n";
35aaf666 3288 # string
ebd13f55 3289 print CF "\$sendmail_path = '$sendmail_path';\n";
35aaf666 3290 # boolean
47a29326 3291# print CF "\$use_authenticated_smtp = $use_authenticated_smtp;\n";
35aaf666 3292 # boolean
254ded61 3293 print CF "\$pop_before_smtp = $pop_before_smtp;\n";
35aaf666 3294 # string
ebd13f55 3295 print CF "\$imap_server_type = '$imap_server_type';\n";
35aaf666 3296 # boolean
374726c9 3297 print CF "\$invert_time = $invert_time;\n";
35aaf666 3298 # string
ebd13f55 3299 print CF "\$optional_delimiter = '$optional_delimiter';\n";
432db2fc 3300 # string
3301 print CF "\$encode_header_key = '$encode_header_key';\n";
ebd13f55 3302 print CF "\n";
eaace00e 3303
35aaf666 3304 # string
ebd13f55 3305 print CF "\$default_folder_prefix = '$default_folder_prefix';\n";
35aaf666 3306 # string
ebd13f55 3307 print CF "\$trash_folder = '$trash_folder';\n";
35aaf666 3308 # string
ebd13f55 3309 print CF "\$sent_folder = '$sent_folder';\n";
35aaf666 3310 # string
ebd13f55 3311 print CF "\$draft_folder = '$draft_folder';\n";
35aaf666 3312 # boolean
254ded61 3313 print CF "\$default_move_to_trash = $default_move_to_trash;\n";
35aaf666 3314 # boolean
254ded61 3315 print CF "\$default_move_to_sent = $default_move_to_sent;\n";
35aaf666 3316 # boolean
254ded61 3317 print CF "\$default_save_as_draft = $default_save_as_draft;\n";
35aaf666 3318 # boolean
254ded61 3319 print CF "\$show_prefix_option = $show_prefix_option;\n";
35aaf666 3320 # boolean
254ded61 3321 print CF "\$list_special_folders_first = $list_special_folders_first;\n";
35aaf666 3322 # boolean
254ded61 3323 print CF "\$use_special_folder_color = $use_special_folder_color;\n";
35aaf666 3324 # boolean
254ded61 3325 print CF "\$auto_expunge = $auto_expunge;\n";
35aaf666 3326 # boolean
254ded61 3327 print CF "\$default_sub_of_inbox = $default_sub_of_inbox;\n";
35aaf666 3328 # boolean
254ded61 3329 print CF "\$show_contain_subfolders_option = $show_contain_subfolders_option;\n";
35aaf666 3330 # integer
254ded61 3331 print CF "\$default_unseen_notify = $default_unseen_notify;\n";
35aaf666 3332 # integer
254ded61 3333 print CF "\$default_unseen_type = $default_unseen_type;\n";
35aaf666 3334 # boolean
254ded61 3335 print CF "\$auto_create_special = $auto_create_special;\n";
35aaf666 3336 # boolean
254ded61 3337 print CF "\$delete_folder = $delete_folder;\n";
ca85aabe 3338 # boolean
3339 print CF "\$noselect_fix_enable = $noselect_fix_enable;\n";
3340
ebd13f55 3341 print CF "\n";
eaace00e 3342
35aaf666 3343 # string
8bd9e0dd 3344 print CF "\$data_dir = " . &change_to_SM_path($data_dir) . ";\n";
35aaf666 3345 # string that can contain a variable
8bd9e0dd 3346 print CF "\$attachment_dir = " . &change_to_SM_path($attachment_dir) . ";\n";
35aaf666 3347 # integer
254ded61 3348 print CF "\$dir_hash_level = $dir_hash_level;\n";
35aaf666 3349 # string
80519ece 3350 print CF "\$default_left_size = '$default_left_size';\n";
35aaf666 3351 # boolean
254ded61 3352 print CF "\$force_username_lowercase = $force_username_lowercase;\n";
35aaf666 3353 # boolean
254ded61 3354 print CF "\$default_use_priority = $default_use_priority;\n";
35aaf666 3355 # boolean
254ded61 3356 print CF "\$hide_sm_attributions = $hide_sm_attributions;\n";
35aaf666 3357 # boolean
254ded61 3358 print CF "\$default_use_mdn = $default_use_mdn;\n";
35aaf666 3359 # boolean
254ded61 3360 print CF "\$edit_identity = $edit_identity;\n";
35aaf666 3361 # boolean
254ded61 3362 print CF "\$edit_name = $edit_name;\n";
432db2fc 3363 # boolean
3364 print CF "\$hide_auth_header = $hide_auth_header;\n";
35aaf666 3365 # boolean
254ded61 3366 print CF "\$allow_thread_sort = $allow_thread_sort;\n";
35aaf666 3367 # boolean
aacc7bec 3368 print CF "\$allow_server_sort = $allow_server_sort;\n";
66bfb27b 3369 # boolean
3c7ee482 3370 print CF "\$allow_charset_search = $allow_charset_search;\n";
0f1b00b8 3371 # integer
3372 print CF "\$allow_advanced_search = $allow_advanced_search;\n";
ebd13f55 3373 print CF "\n";
598294a7 3374
35aaf666 3375 # all plugins are strings
eaace00e 3376 for ( $ct = 0 ; $ct <= $#plugins ; $ct++ ) {
a1b036d6 3377 print CF "\$plugins[] = '$plugins[$ct]';\n";
ebd13f55 3378 }
3379 print CF "\n";
eaace00e 3380
35aaf666 3381 # strings
8bd9e0dd 3382 print CF "\$theme_css = " . &change_to_SM_path($theme_css) . ";\n";
35aaf666 3383 if ( $theme_default eq '' ) { $theme_default = '0'; }
57c6fabc 3384 print CF "\$theme_default = $theme_default;\n";
3385
eaace00e 3386 for ( $count = 0 ; $count <= $#theme_name ; $count++ ) {
8bd9e0dd 3387 print CF "\$theme[$count]['PATH'] = " . &change_to_SM_path($theme_path[$count]) . ";\n";
ed65d11b 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";
ebd13f55 3393 }
3394 print CF "\n";
eaace00e 3395
96862638 3396 ## Address books
3397 # boolean
ebd13f55 3398 print CF "\$default_use_javascript_addr_book = $default_use_javascript_addr_book;\n";
eaace00e 3399 for ( $count = 0 ; $count <= $#ldap_host ; $count++ ) {
3400 print CF "\$ldap_server[$count] = array(\n";
35aaf666 3401 # string
eaace00e 3402 print CF " 'host' => '$ldap_host[$count]',\n";
35aaf666 3403 # string
eaace00e 3404 print CF " 'base' => '$ldap_base[$count]'";
3405 if ( $ldap_name[$count] ) {
3406 print CF ",\n";
35aaf666 3407 # string
eaace00e 3408 print CF " 'name' => '$ldap_name[$count]'";
3409 }
3410 if ( $ldap_port[$count] ) {
3411 print CF ",\n";
35aaf666 3412 # integer
254ded61 3413 print CF " 'port' => $ldap_port[$count]";
eaace00e 3414 }
3415 if ( $ldap_charset[$count] ) {
3416 print CF ",\n";
35aaf666 3417 # string
eaace00e 3418 print CF " 'charset' => '$ldap_charset[$count]'";
3419 }
3420 if ( $ldap_maxrows[$count] ) {
3421 print CF ",\n";
35aaf666 3422 # integer
254ded61 3423 print CF " 'maxrows' => $ldap_maxrows[$count]";
eaace00e 3424 }
43397658 3425 # string
3426 if ( $ldap_filter[$count] ) {
3427 print CF ",\n";
3428 print CF " 'filter' => '$ldap_filter[$count]'";
3429 }
30e9932c 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";
35aaf666 3442 # integer
30e9932c 3443 print CF " 'protocol' => $ldap_protocol[$count]";
3444 }
43397658 3445 if ( $ldap_limit_scope[$count] ) {
3446 print CF ",\n";
3447 # boolean
3448 print CF " 'limit_scope' => $ldap_limit_scope[$count]";
3449 }
eaace00e 3450 print CF "\n";
3451 print CF ");\n";
3452 print CF "\n";
ebd13f55 3453 }
b622e1b8 3454
35aaf666 3455 # string
4f40a59d 3456 print CF "\$addrbook_dsn = '$addrbook_dsn';\n";
35aaf666 3457 # string
4f40a59d 3458 print CF "\$addrbook_table = '$addrbook_table';\n\n";
35aaf666 3459 # string
3499f99f 3460 print CF "\$prefs_dsn = '$prefs_dsn';\n";
35aaf666 3461 # string
99a6c222 3462 print CF "\$prefs_table = '$prefs_table';\n";
35aaf666 3463 # string
99a6c222 3464 print CF "\$prefs_user_field = '$prefs_user_field';\n";
35aaf666 3465 # string
99a6c222 3466 print CF "\$prefs_key_field = '$prefs_key_field';\n";
35aaf666 3467 # string
30e9932c 3468 print CF "\$prefs_val_field = '$prefs_val_field';\n\n";
35aaf666 3469 # string
30e9932c 3470 print CF "\$addrbook_global_dsn = '$addrbook_global_dsn';\n";
35aaf666 3471 # string
30e9932c 3472 print CF "\$addrbook_global_table = '$addrbook_global_table';\n";
35aaf666 3473 # boolean
4272758c 3474 print CF "\$addrbook_global_writeable = $addrbook_global_writeable;\n";
35aaf666 3475 # boolean
30e9932c 3476 print CF "\$addrbook_global_listing = $addrbook_global_listing;\n\n";
4272758c 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";
71d3f882 3481 # boolean
3482 print CF "\$abook_global_file_listing = $abook_global_file_listing;\n\n";
35aaf666 3483 # boolean
6395c46d 3484 print CF "\$no_list_for_subscribe = $no_list_for_subscribe;\n";
47a29326 3485
35aaf666 3486 # string
6395c46d 3487 print CF "\$smtp_auth_mech = '$smtp_auth_mech';\n";
35aaf666 3488 # string
6395c46d 3489 print CF "\$imap_auth_mech = '$imap_auth_mech';\n";
35aaf666 3490 # boolean
6395c46d 3491 print CF "\$use_imap_tls = $use_imap_tls;\n";
35aaf666 3492 # boolean
6395c46d 3493 print CF "\$use_smtp_tls = $use_smtp_tls;\n";
35aaf666 3494 # string
6395c46d 3495 print CF "\$session_name = '$session_name';\n";
6c499577 3496
35aaf666 3497 print CF "\n";
3498
3499 # boolean
3500 print CF "\$advanced_tree = $advanced_tree;\n";
3501 print CF "\n";
3502 # boolean
74d6a0d9 3503 print CF "\$use_iframe = $use_iframe;\n";
3504 print CF "\n";
3505 # boolean
35aaf666 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";
71d3f882 3513 print CF "\n";
3514 # boolean
3515 print CF "\$allow_remote_configtest = $allow_remote_configtest;\n";
35aaf666 3516 print CF "\n";
3517
3518 print CF "\@include SM_PATH . 'config/config_local.php';\n";
598294a7 3519
35aaf666 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 "?>";
598294a7 3528
35aaf666 3529 close CF;
ebd13f55 3530
35aaf666 3531 print "Data saved in config.php\n";
ebd13f55 3532 } else {
3533 print "Error saving config.php: $!\n";
3534 }
911ad01c 3535}
a93b12ba 3536
3537sub set_defaults {
f8c17cdd 3538 clear_screen();
eaace00e 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";
a33764f6 3558 print " courier = Courier IMAP server\n";
b39825f0 3559 print " cyrus = Cyrus IMAP server\n";
a33764f6 3560 print " dovecot = Dovecot Secure IMAP server\n";
b39825f0 3561 print " exchange = Microsoft Exchange IMAP server\n";
b39825f0 3562 print " hmailserver = hMailServer\n";
a33764f6 3563 print " macosx = Mac OS X Mailserver\n";
b39825f0 3564 print " mercury32 = Mercury/32\n";
a33764f6 3565 print " uw = University of Washington's IMAP server\n";
3566 print "\n";
b39825f0 3567 print " quit = Do not change anything\n";
a33764f6 3568 print "\n";
eaace00e 3569 print "Command >> ";
3570 $server = <STDIN>;
85645192 3571 $server =~ s/[\r\n]//g;
eaace00e 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>";
b79b84c2 3585 $force_username_lowercase = false;
eaace00e 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;
2eec12b5 3599 $delete_folder = true;
b79b84c2 3600 $force_username_lowercase = true;
598294a7 3601
eaace00e 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>";
b79b84c2 3614 $force_username_lowercase = true;
eaace00e 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;
2eec12b5 3628 $delete_folder = true;
b79b84c2 3629 $force_username_lowercase = false;
598294a7 3630
cfe486a7 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;
eaace00e 3644
063ed2b1 3645 $continue = 1;
b39825f0 3646 } elsif ( $server eq "hmailserver" ) {
3647 $imap_server_type = "hmailserver";
946b11e9 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;
e50f5ac2 3658 $delete_folder = false;
3659 $force_username_lowercase = false;
b39825f0 3660
e50f5ac2 3661 $continue = 1;
063ed2b1 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
a33764f6 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
eaace00e 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";
2eec12b5 3708 print " delete_folder = $delete_folder\n";
b79b84c2 3709 print " force_username_lowercase = $force_username_lowercase\n";
eaace00e 3710 }
b79b84c2 3711 print "\nPress enter to continue...";
eaace00e 3712 $tmp = <STDIN>;
a93b12ba 3713}
8bd9e0dd 3714
8bd9e0dd 3715# This subroutine corrects relative paths to ensure they
3716# will work within the SM space. If the path falls within
598294a7 3717# the SM directory tree, the SM_PATH variable will be
8bd9e0dd 3718# prepended to the path, if not, then the path will be
e6566358 3719# converted to an absolute path, e.g.
2222aed0 3720# '../images/logo.gif' --> SM_PATH . 'images/logo.gif'
a2a74376 3721# '../../someplace/data' --> '/absolute/path/someplace/data'
2222aed0 3722# 'images/logo.gif' --> SM_PATH . 'config/images/logo.gif'
3723# '/absolute/path/logo.gif' --> '/absolute/path/logo.gif'
3724# 'http://whatever/' --> 'http://whatever'
b72da239 3725# $some_var/path --> "$some_var/path"
8bd9e0dd 3726sub 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 '');
a28a56da 3735 return "\'" . $old_path . "\'" if ( $old_path =~ /^(\/|http)/ );
d3fb3870 3736 return "\'" . $old_path . "\'" if ( $old_path =~ /^\w:\// );
25be56ab 3737 return $old_path if ( $old_path =~ /^\'(\/|http)/ );
d3fb3870 3738 return $old_path if ( $old_path =~ /^\'\w:\// );
b72da239 3739 return $old_path if ( $old_path =~ /^SM_PATH/);
598294a7 3740
b72da239 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 }
598294a7 3749
25be56ab 3750 # Remove remaining '
3751 $old_path =~ s/\'//g;
598294a7 3752
8bd9e0dd 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.
a2a74376 3758 @abs_path = split(/\//, $dir);
598294a7 3759
a2a74376 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;
1df76076 3766 $new_path = "\'" . join('/', @abs_path) . "\'";
8bd9e0dd 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 . \'/;
25be56ab 3771 $new_path .= "\'";
8bd9e0dd 3772 } else {
3773 # Last, it's a relative path without any leading '.'
598294a7 3774 # Prepend SM_PATH and config, since the paths are
35aaf666 3775 # relative to the config directory
e6566358 3776 $new_path = "SM_PATH . \'config/" . $old_path . "\'";
8bd9e0dd 3777 }
8bd9e0dd 3778 return $new_path;
3779}
3780
e6566358 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'
8bd9e0dd 3787sub change_to_rel_path() {
3788 my ($old_path) = @_;
e6566358 3789 my $new_path = $old_path;
8bd9e0dd 3790
3791 if ( $old_path =~ /^SM_PATH/ ) {
8bd9e0dd 3792 $new_path =~ s/^SM_PATH . \'/\.\.\//;
b72da239 3793 $new_path =~ s/\.\.\/config\///;
8bd9e0dd 3794 }
3795
3796 return $new_path;
3797}
b47821fb 3798
3799sub 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
35aaf666 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 }
598294a7 3815
35aaf666 3816 if ($service eq 'SMTP') {
5d28b77e 3817 $cmd = "AUTH $mech\r\n";
3818 $logout = "QUIT\r\n";
35aaf666 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
b47821fb 3828 my $sock=IO::Socket::INET->new($host);
3829 if (!defined($sock)) {
3830 # Connect failed
3831 return undef;
3832 }
35aaf666 3833 my $discard = <$sock>; # Server greeting/banner - who cares..
3834
3835 if ($service eq 'SMTP') {
3836 # Say hello first..
5d28b77e 3837 print $sock "HELO $domain\r\n";
35aaf666 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
5d28b77e 3852 print $sock $logout;
35aaf666 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
5d28b77e 3862 print $sock $logout;
35aaf666 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';
b47821fb 3877}
f8c17cdd 3878
3879sub clear_screen() {
3880 if ( $^O =~ /^mswin/i) {
3881 system "cls";
3882 } else {
3883 system "clear";
3884 }
3885}