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