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