"Fix" so old prefs do not totally kill conf.pl. Should be reverted when everyone...
[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];
5e78e498 191 } elsif ( $options[0] =~ /^aTemplateSet\[[0-9]+\]\[['"]ID['"]\]/ ) {
85bacb8f 192 $sub = $options[0];
5e78e498 193 $sub =~ s/\]\[['"]ID['"]\]//;
85bacb8f 194 $sub =~ s/.*\[//;
195 if ( -e "../templates" ) {
196 $options[1] =~ s/^\.\.\/config/\.\.\/templates/;
197 }
5e78e498 198 $templateset_id[$sub] = $options[1];
b4e8b4a3 199##### FIXME: This section here so old prefs files don't blow up when running conf.pl
200##### Remove after a month or two
201 } elsif ( $options[0] =~ /^aTemplateSet\[[0-9]+\]\[['"]PATH['"]\]/ ) {
202 $sub = $options[0];
203 $sub =~ s/\]\[['"]PATH['"]\]//;
204 $sub =~ s/.*\[//;
205 if ( -e "../templates" ) {
206 $options[1] =~ s/^\.\.\/config/\.\.\/templates/;
207 }
208 $templateset_id[$sub] = $options[1];
209##### FIXME: This section here so old prefs files don't blow up when running conf.pl
210##### Remove after a month or two
85bacb8f 211 } elsif ( $options[0] =~ /^aTemplateSet\[[0-9]+\]\[['"]NAME['"]\]/ ) {
212 $sub = $options[0];
213 $sub =~ s/\]\[['"]NAME['"]\]//;
214 $sub =~ s/.*\[//;
215 $templateset_name[$sub] = $options[1];
a1b036d6 216 } elsif ( $options[0] =~ /^plugins\[[0-9]*\]/ ) {
eaace00e 217 $sub = $options[0];
218 $sub =~ s/\]//;
219 $sub =~ s/^plugins\[//;
a1b036d6 220 if ($sub eq '') {
221 push @plugins, $options[1];
222 } else {
223 $plugins[$sub] = $options[1];
224 }
81132de8 225 } elsif ($options[0] =~ /^fontsets\[\'[a-z]*\'\]/) {
226 # parse associative $fontsets array
227 $sub = $options[0];
228 $sub =~ s/\'\]//;
229 $sub =~ s/^fontsets\[\'//;
230 $fontsets{$sub} = $options[1];
eaace00e 231 } elsif ( $options[0] =~ /^ldap_server\[[0-9]+\]/ ) {
232 $sub = $options[0];
233 $sub =~ s/\]//;
234 $sub =~ s/^ldap_server\[//;
235 $continue = 0;
236 while ( ( $tmp = <FILE> ) && ( $continue != 1 ) ) {
237 if ( $tmp =~ /\);\s*$/ ) {
238 $continue = 1;
239 }
240
85645192 241 if ( $tmp =~ /^\s*[\'\"]host[\'\"]/i ) {
242 $tmp =~ s/^\s*[\'\"]host[\'\"]\s*=>\s*[\'\"]//i;
243 $tmp =~ s/[\'\"],?\s*$//;
244 $tmp =~ s/[\'\"]\);\s*$//;
eaace00e 245 $host = $tmp;
85645192 246 } elsif ( $tmp =~ /^\s*[\'\"]base[\'\"]/i ) {
247 $tmp =~ s/^\s*[\'\"]base[\'\"]\s*=>\s*[\'\"]//i;
248 $tmp =~ s/[\'\"],?\s*$//;
249 $tmp =~ s/[\'\"]\);\s*$//;
eaace00e 250 $base = $tmp;
85645192 251 } elsif ( $tmp =~ /^\s*[\'\"]charset[\'\"]/i ) {
252 $tmp =~ s/^\s*[\'\"]charset[\'\"]\s*=>\s*[\'\"]//i;
253 $tmp =~ s/[\'\"],?\s*$//;
254 $tmp =~ s/[\'\"]\);\s*$//;
eaace00e 255 $charset = $tmp;
85645192 256 } elsif ( $tmp =~ /^\s*[\'\"]port[\'\"]/i ) {
257 $tmp =~ s/^\s*[\'\"]port[\'\"]\s*=>\s*[\'\"]?//i;
258 $tmp =~ s/[\'\"]?,?\s*$//;
259 $tmp =~ s/[\'\"]?\);\s*$//;
eaace00e 260 $port = $tmp;
85645192 261 } elsif ( $tmp =~ /^\s*[\'\"]maxrows[\'\"]/i ) {
262 $tmp =~ s/^\s*[\'\"]maxrows[\'\"]\s*=>\s*[\'\"]?//i;
263 $tmp =~ s/[\'\"]?,?\s*$//;
264 $tmp =~ s/[\'\"]?\);\s*$//;
eaace00e 265 $maxrows = $tmp;
43397658 266 } elsif ( $tmp =~ /^\s*[\'\"]filter[\'\"]/i ) {
267 $tmp =~ s/^\s*[\'\"]filter[\'\"]\s*=>\s*[\'\"]?//i;
268 $tmp =~ s/[\'\"]?,?\s*$//;
269 $tmp =~ s/[\'\"]?\);\s*$//;
270 $filter = $tmp;
85645192 271 } elsif ( $tmp =~ /^\s*[\'\"]name[\'\"]/i ) {
272 $tmp =~ s/^\s*[\'\"]name[\'\"]\s*=>\s*[\'\"]//i;
273 $tmp =~ s/[\'\"],?\s*$//;
274 $tmp =~ s/[\'\"]\);\s*$//;
eaace00e 275 $name = $tmp;
85645192 276 } elsif ( $tmp =~ /^\s*[\'\"]binddn[\'\"]/i ) {
277 $tmp =~ s/^\s*[\'\"]binddn[\'\"]\s*=>\s*[\'\"]//i;
278 $tmp =~ s/[\'\"],?\s*$//;
279 $tmp =~ s/[\'\"]\);\s*$//;
30e9932c 280 $binddn = $tmp;
85645192 281 } elsif ( $tmp =~ /^\s*[\'\"]bindpw[\'\"]/i ) {
282 $tmp =~ s/^\s*[\'\"]bindpw[\'\"]\s*=>\s*[\'\"]//i;
283 $tmp =~ s/[\'\"],?\s*$//;
284 $tmp =~ s/[\'\"]\);\s*$//;
30e9932c 285 $bindpw = $tmp;
85645192 286 } elsif ( $tmp =~ /^\s*[\'\"]protocol[\'\"]/i ) {
287 $tmp =~ s/^\s*[\'\"]protocol[\'\"]\s*=>\s*[\'\"]?//i;
288 $tmp =~ s/[\'\"]?,?\s*$//;
289 $tmp =~ s/[\'\"]?\);\s*$//;
30e9932c 290 $protocol = $tmp;
43397658 291 } elsif ( $tmp =~ /^\s*[\'\"]limit_scope[\'\"]/i ) {
292 $tmp =~ s/^\s*[\'\"]limit_scope[\'\"]\s*=>\s*[\'\"]?//i;
293 $tmp =~ s/[\'\"]?,?\s*$//;
294 $tmp =~ s/[\'\"]?\);\s*$//;
295 $limit_scope = $tmp;
327e2d96 296 } elsif ( $tmp =~ /^\s*[\'\"]listing[\'\"]/i ) {
297 $tmp =~ s/^\s*[\'\"]listing[\'\"]\s*=>\s*[\'\"]?//i;
298 $tmp =~ s/[\'\"]?,?\s*$//;
299 $tmp =~ s/[\'\"]?\);\s*$//;
300 $listing = $tmp;
664fd7a0 301 } elsif ( $tmp =~ /^\s*[\'\"]writeable[\'\"]/i ) {
302 $tmp =~ s/^\s*[\'\"]writeable[\'\"]\s*=>\s*[\'\"]?//i;
303 $tmp =~ s/[\'\"]?,?\s*$//;
304 $tmp =~ s/[\'\"]?\);\s*$//;
305 $writeable = $tmp;
593370a4 306 } elsif ( $tmp =~ /^\s*[\'\"]search_tree[\'\"]/i ) {
307 $tmp =~ s/^\s*[\'\"]search_tree[\'\"]\s*=>\s*[\'\"]?//i;
308 $tmp =~ s/[\'\"]?,?\s*$//;
309 $tmp =~ s/[\'\"]?\);\s*$//;
310 $search_tree = $tmp;
311 } elsif ( $tmp =~ /^\s*[\'\"]starttls[\'\"]/i ) {
312 $tmp =~ s/^\s*[\'\"]starttls[\'\"]\s*=>\s*[\'\"]?//i;
313 $tmp =~ s/[\'\"]?,?\s*$//;
314 $tmp =~ s/[\'\"]?\);\s*$//;
315 $starttls = $tmp;
eaace00e 316 }
a3439b27 317 }
eaace00e 318 $ldap_host[$sub] = $host;
319 $ldap_base[$sub] = $base;
320 $ldap_name[$sub] = $name;
321 $ldap_port[$sub] = $port;
322 $ldap_maxrows[$sub] = $maxrows;
43397658 323 $ldap_filter[$sub] = $filter;
eaace00e 324 $ldap_charset[$sub] = $charset;
30e9932c 325 $ldap_binddn[$sub] = $binddn;
326 $ldap_bindpw[$sub] = $bindpw;
327 $ldap_protocol[$sub] = $protocol;
43397658 328 $ldap_limit_scope[$sub] = $limit_scope;
327e2d96 329 $ldap_listing[$sub] = $listing;
664fd7a0 330 $ldap_writeable[$sub] = $writeable;
593370a4 331 $ldap_search_tree[$sub] = $search_tree;
332 $ldap_starttls[$sub] = $starttls;
c65344a7 333 } elsif ( $options[0] =~ /^(data_dir|attachment_dir|theme_css|org_logo|signout_page|icon_theme_def)$/ ) {
8bd9e0dd 334 ${ $options[0] } = &change_to_rel_path($options[1]);
eaace00e 335 } else {
336 ${ $options[0] } = $options[1];
337 }
338 }
bbd30ac8 339}
1a7a2fcc 340close FILE;
0ae4c1f2 341
a15f9d93 342# FIXME: unknown introduction date
35aaf666 343$useSendmail = 'false' if ( lc($useSendmail) ne 'true' );
344$sendmail_path = "/usr/sbin/sendmail" if ( !$sendmail_path );
345$pop_before_smtp = 'false' if ( !$pop_before_smtp );
346$default_unseen_notify = 2 if ( !$default_unseen_notify );
347$default_unseen_type = 1 if ( !$default_unseen_type );
348$config_use_color = 0 if ( !$config_use_color );
349$invert_time = 'false' if ( !$invert_time );
350$force_username_lowercase = 'false' if ( !$force_username_lowercase );
351$optional_delimiter = "detect" if ( !$optional_delimiter );
352$auto_create_special = 'false' if ( !$auto_create_special );
353$default_use_priority = 'true' if ( !$default_use_priority );
35aaf666 354$default_use_mdn = 'true' if ( !$default_use_mdn );
355$delete_folder = 'false' if ( !$delete_folder );
356$noselect_fix_enable = 'false' if ( !$noselect_fix_enable );
357$frame_top = "_top" if ( !$frame_top );
358$provider_uri = '' if ( !$provider_uri );
359$provider_name = '' if ( !$provider_name );
360$edit_identity = 'true' if ( !$edit_identity );
361$edit_name = 'true' if ( !$edit_name );
35aaf666 362$no_list_for_subscribe = 'false' if ( !$no_list_for_subscribe );
363$allow_charset_search = 'true' if ( !$allow_charset_search );
66bfb27b 364$allow_advanced_search = 0 if ( !$allow_advanced_search) ;
35aaf666 365$prefs_user_field = 'user' if ( !$prefs_user_field );
366$prefs_key_field = 'prefkey' if ( !$prefs_key_field );
367$prefs_val_field = 'prefval' if ( !$prefs_val_field );
a15f9d93 368$session_name = 'SQMSESSID' if ( !$session_name );
369$skip_SM_header = 'false' if ( !$skip_SM_header );
370$default_use_javascript_addr_book = 'false' if (! $default_use_javascript_addr_book);
371
beebd508 372# since 1.2.0
373$hide_sm_attributions = 'false' if ( !$hide_sm_attributions );
374
a15f9d93 375# since 1.4.0
35aaf666 376$use_smtp_tls= 'false' if ( !$use_smtp_tls);
377$smtp_auth_mech = 'none' if ( !$smtp_auth_mech );
378$use_imap_tls = 'false' if ( !$use_imap_tls );
379$imap_auth_mech = 'login' if ( !$imap_auth_mech );
81132de8 380
71d3f882 381# since 1.5.0
35aaf666 382$show_alternative_names = 'false' if ( !$show_alternative_names );
5ba5dc8e 383# $available_languages option available only in 1.5.0. removed due to $languages
384# implementation changes. options are provided by limit_languages plugin
385# $available_languages = 'all' if ( !$available_languages );
f03f6ee7 386$aggressive_decoding = 'false' if ( !$aggressive_decoding );
ca885a4f 387# available only in 1.5.0 and 1.5.1
388# $advanced_tree = 'false' if ( !$advanced_tree );
35aaf666 389$use_php_recode = 'false' if ( !$use_php_recode );
390$use_php_iconv = 'false' if ( !$use_php_iconv );
81132de8 391
71d3f882 392# since 1.5.1
393$use_icons = 'false' if ( !$use_icons );
ef6ad2a1 394$use_iframe = 'false' if ( !$use_iframe );
71d3f882 395$lossy_encoding = 'false' if ( !$lossy_encoding );
396$allow_remote_configtest = 'false' if ( !$allow_remote_configtest );
397$addrbook_global_table = 'global_abook' if ( !$addrbook_global_table );
398$addrbook_global_writeable = 'false' if ( !$addrbook_global_writeable );
399$addrbook_global_listing = 'false' if ( !$addrbook_global_listing );
400$abook_global_file = '' if ( !$abook_global_file);
401$abook_global_file_writeable = 'false' if ( !$abook_global_file_writeable);
402$abook_global_file_listing = 'true' if ( !$abook_global_file_listing );
432db2fc 403$encode_header_key = '' if ( !$encode_header_key );
404$hide_auth_header = 'false' if ( !$hide_auth_header );
ee20a285 405$time_zone_type = '0' if ( !$time_zone_type );
06316c07 406$prefs_user_size = 128 if ( !$prefs_user_size );
407$prefs_key_size = 64 if ( !$prefs_key_size );
408$prefs_val_size = 65536 if ( !$prefs_val_size );
81132de8 409
72bf0ae7 410# since 1.5.2
411$icon_theme_def = '' if ( !$icon_theme_def );
412
fd7ab795 413# add qmail-inject test here for backwards compatibility
85bacb8f 414if ( !$sendmail_args && $sendmail_path =~ /qmail-inject/ ) {
fd7ab795 415 $sendmail_args = '';
416} elsif ( !$sendmail_args ) {
417 $sendmail_args = '-i -t';
418}
39d3ec89 419
81132de8 420$default_fontsize = '' if ( !$default_fontsize);
421$default_fontset = '' if ( !$default_fontset);
422if ( !%fontsets) {
423 %fontsets = ('serif', 'serif',
424 'sans', 'helvetica,arial,sans-serif',
425 'comicsans', 'comic sans ms,sans-serif',
426 'tahoma', 'tahoma,sans-serif',
427 'verasans', 'bitstream vera sans,verdana,sans-serif');
428}
429
a15f9d93 430# $use_imap_tls and $use_smtp_tls are switched to integer since 1.5.1
431$use_imap_tls = 0 if ( $use_imap_tls eq 'false');
432$use_imap_tls = 1 if ( $use_imap_tls eq 'true');
433$use_smtp_tls = 0 if ( $use_smtp_tls eq 'false');
434$use_smtp_tls = 1 if ( $use_smtp_tls eq 'true');
801da708 435# sorting options changed names and reversed values in 1.5.1
436$disable_thread_sort = 'false' if ( !$disable_thread_sort );
437$disable_server_sort = 'false' if ( !$disable_server_sort );
81132de8 438
7311c377 439# since 1.5.2
440$abook_file_line_length = 2048 if ( !$abook_file_line_length );
3dc5d88f 441$config_location_base = '' if ( !$config_location_base );
029d1fc2 442$smtp_sitewide_user = '' if ( !$smtp_sitewide_user );
443$smtp_sitewide_pass = '' if ( !$smtp_sitewide_pass );
7311c377 444
eaace00e 445if ( $ARGV[0] eq '--install-plugin' ) {
446 print "Activating plugin " . $ARGV[1] . "\n";
ebd13f55 447 push @plugins, $ARGV[1];
448 save_data();
449 exit(0);
eaace00e 450} elsif ( $ARGV[0] eq '--remove-plugin' ) {
451 print "Removing plugin " . $ARGV[1] . "\n";
ebd13f55 452 foreach $plugin (@plugins) {
eaace00e 453 if ( $plugin ne $ARGV[1] ) {
454 push @newplugins, $plugin;
ebd13f55 455 }
456 }
457 @plugins = @newplugins;
458 save_data();
459 exit(0);
460}
461
5b6ae78a 462#####################################################################################
eaace00e 463if ( $config_use_color == 1 ) {
464 $WHT = "\x1B[37;1m";
465 $NRM = "\x1B[0m";
0ecb47e5 466} else {
eaace00e 467 $WHT = "";
468 $NRM = "";
469 $config_use_color = 2;
470}
471
8b5c49cd 472while ( ( $command ne "q" ) && ( $command ne "Q" ) && ( $command ne ":q" ) ) {
f8c17cdd 473 clear_screen();
eaace00e 474 print $WHT. "SquirrelMail Configuration : " . $NRM;
475 if ( $config == 1 ) { print "Read: config.php"; }
476 elsif ( $config == 2 ) { print "Read: config_default.php"; }
477 print " ($print_config_version)\n";
478 print "---------------------------------------------------------\n";
479
480 if ( $menu == 0 ) {
481 print $WHT. "Main Menu --\n" . $NRM;
482 print "1. Organization Preferences\n";
483 print "2. Server Settings\n";
484 print "3. Folder Defaults\n";
485 print "4. General Options\n";
85bacb8f 486 print "5. Templates\n";
4272758c 487 print "6. Address Books\n";
eaace00e 488 print "7. Message of the Day (MOTD)\n";
489 print "8. Plugins\n";
490 print "9. Database\n";
598294a7 491 print "10. Language settings\n";
492 print "11. Tweaks\n";
eaace00e 493 print "\n";
494 print "D. Set pre-defined settings for specific IMAP servers\n";
495 print "\n";
496 } elsif ( $menu == 1 ) {
497 print $WHT. "Organization Preferences\n" . $NRM;
b6e0c3b6 498 print "1. Organization Name : $WHT$org_name$NRM\n";
499 print "2. Organization Logo : $WHT$org_logo$NRM\n";
500 print "3. Org. Logo Width/Height : $WHT($org_logo_width/$org_logo_height)$NRM\n";
501 print "4. Organization Title : $WHT$org_title$NRM\n";
502 print "5. Signout Page : $WHT$signout_page$NRM\n";
39d3ec89 503 print "6. Top Frame : $WHT$frame_top$NRM\n";
504 print "7. Provider link : $WHT$provider_uri$NRM\n";
505 print "8. Provider name : $WHT$provider_name$NRM\n";
0ae4c1f2 506
eaace00e 507 print "\n";
dcc1cc82 508 print "R Return to Main Menu\n";
eaace00e 509 } elsif ( $menu == 2 ) {
47a29326 510 print $WHT. "Server Settings\n\n" . $NRM;
511 print $WHT . "General" . $NRM . "\n";
512 print "-------\n";
513 print "1. Domain : $WHT$domain$NRM\n";
514 print "2. Invert Time : $WHT$invert_time$NRM\n";
515 print "3. Sendmail or SMTP : $WHT";
35aaf666 516 if ( lc($useSendmail) eq 'true' ) {
eaace00e 517 print "Sendmail";
518 } else {
519 print "SMTP";
520 }
521 print "$NRM\n";
47a29326 522 print "\n";
598294a7 523
47a29326 524 if ( $show_imap_settings ) {
525 print $WHT . "IMAP Settings". $NRM . "\n--------------\n";
526 print "4. IMAP Server : $WHT$imapServerAddress$NRM\n";
527 print "5. IMAP Port : $WHT$imapPort$NRM\n";
528 print "6. Authentication type : $WHT$imap_auth_mech$NRM\n";
2b4a868c 529 print "7. Secure IMAP (TLS) : $WHT" . display_use_tls($use_imap_tls) . "$NRM\n";
47a29326 530 print "8. Server software : $WHT$imap_server_type$NRM\n";
531 print "9. Delimiter : $WHT$optional_delimiter$NRM\n";
532 print "\n";
533 } elsif ( $show_smtp_settings ) {
35aaf666 534 if ( lc($useSendmail) eq 'true' ) {
47a29326 535 print $WHT . "Sendmail" . $NRM . "\n--------\n";
536 print "4. Sendmail Path : $WHT$sendmail_path$NRM\n";
fd7ab795 537 print "5. Sendmail arguments : $WHT$sendmail_args$NRM\n";
538 print "6. Header encryption key : $WHT$encode_header_key$NRM\n";
47a29326 539 print "\n";
540 } else {
541 print $WHT . "SMTP Settings" . $NRM . "\n-------------\n";
542 print "4. SMTP Server : $WHT$smtpServerAddress$NRM\n";
543 print "5. SMTP Port : $WHT$smtpPort$NRM\n";
544 print "6. POP before SMTP : $WHT$pop_before_smtp$NRM\n";
029d1fc2 545 print "7. SMTP Authentication : $WHT$smtp_auth_mech" . display_smtp_sitewide_userpass() ."$NRM\n";
2b4a868c 546 print "8. Secure SMTP (TLS) : $WHT" . display_use_tls($use_smtp_tls) . "$NRM\n";
432db2fc 547 print "9. Header encryption key : $WHT$encode_header_key$NRM\n";
47a29326 548 print "\n";
549 }
eaace00e 550 }
47a29326 551
552 if ($show_imap_settings == 0) {
553 print "A. Update IMAP Settings : ";
554 print "$WHT$imapServerAddress$NRM:";
555 print "$WHT$imapPort$NRM ";
556 print "($WHT$imap_server_type$NRM)\n";
598294a7 557 }
47a29326 558 if ($show_smtp_settings == 0) {
35aaf666 559 if ( lc($useSendmail) eq 'true' ) {
47a29326 560 print "B. Change Sendmail Config : $WHT$sendmail_path$NRM\n";
561 } else {
562 print "B. Update SMTP Settings : ";
563 print "$WHT$smtpServerAddress$NRM:";
564 print "$WHT$smtpPort$NRM\n";
565 }
566 }
567 if ( $show_smtp_settings || $show_imap_settings )
568 {
598294a7 569 print "H. Hide " .
570 ($show_imap_settings ? "IMAP Server" :
35aaf666 571 (lc($useSendmail) eq 'true') ? "Sendmail" : "SMTP") . " Settings\n";
47a29326 572 }
598294a7 573
eaace00e 574 print "\n";
dcc1cc82 575 print "R Return to Main Menu\n";
eaace00e 576 } elsif ( $menu == 3 ) {
577 print $WHT. "Folder Defaults\n" . $NRM;
578 print "1. Default Folder Prefix : $WHT$default_folder_prefix$NRM\n";
579 print "2. Show Folder Prefix Option : $WHT$show_prefix_option$NRM\n";
580 print "3. Trash Folder : $WHT$trash_folder$NRM\n";
581 print "4. Sent Folder : $WHT$sent_folder$NRM\n";
582 print "5. Drafts Folder : $WHT$draft_folder$NRM\n";
583 print "6. By default, move to trash : $WHT$default_move_to_trash$NRM\n";
584 print "7. By default, move to sent : $WHT$default_move_to_sent$NRM\n";
585 print "8. By default, save as draft : $WHT$default_save_as_draft$NRM\n";
586 print "9. List Special Folders First : $WHT$list_special_folders_first$NRM\n";
587 print "10. Show Special Folders Color : $WHT$use_special_folder_color$NRM\n";
588 print "11. Auto Expunge : $WHT$auto_expunge$NRM\n";
589 print "12. Default Sub. of INBOX : $WHT$default_sub_of_inbox$NRM\n";
590 print "13. Show 'Contain Sub.' Option : $WHT$show_contain_subfolders_option$NRM\n";
591 print "14. Default Unseen Notify : $WHT$default_unseen_notify$NRM\n";
592 print "15. Default Unseen Type : $WHT$default_unseen_type$NRM\n";
593 print "16. Auto Create Special Folders : $WHT$auto_create_special$NRM\n";
2eec12b5 594 print "17. Folder Delete Bypasses Trash : $WHT$delete_folder$NRM\n";
ca85aabe 595 print "18. Enable /NoSelect folder fix : $WHT$noselect_fix_enable$NRM\n";
eaace00e 596 print "\n";
dcc1cc82 597 print "R Return to Main Menu\n";
eaace00e 598 } elsif ( $menu == 4 ) {
599 print $WHT. "General Options\n" . $NRM;
39d3ec89 600 print "1. Data Directory : $WHT$data_dir$NRM\n";
601 print "2. Attachment Directory : $WHT$attachment_dir$NRM\n";
602 print "3. Directory Hash Level : $WHT$dir_hash_level$NRM\n";
603 print "4. Default Left Size : $WHT$default_left_size$NRM\n";
604 print "5. Usernames in Lowercase : $WHT$force_username_lowercase$NRM\n";
605 print "6. Allow use of priority : $WHT$default_use_priority$NRM\n";
606 print "7. Hide SM attributions : $WHT$hide_sm_attributions$NRM\n";
607 print "8. Allow use of receipts : $WHT$default_use_mdn$NRM\n";
432db2fc 608 print "9. Allow editing of identity : $WHT$edit_identity$NRM\n";
609 print " Allow editing of name : $WHT$edit_name$NRM\n";
610 print " Remove username from header : $WHT$hide_auth_header$NRM\n";
11e00010 611 print "10. Disable server thread sort : $WHT$disable_thread_sort$NRM\n";
612 print "11. Disable server-side sorting : $WHT$disable_server_sort$NRM\n";
39d3ec89 613 print "12. Allow server charset search : $WHT$allow_charset_search$NRM\n";
de74555e 614 print "13. Allow advanced search : $WHT$allow_advanced_search$NRM\n";
66bfb27b 615 print "14. PHP session name : $WHT$session_name$NRM\n";
ee20a285 616 print "15. Time zone configuration : $WHT$time_zone_type$NRM\n";
74530cf4 617 print "16. Location base : $WHT$config_location_base$NRM\n";
eaace00e 618 print "\n";
dcc1cc82 619 print "R Return to Main Menu\n";
eaace00e 620 } elsif ( $menu == 5 ) {
621 print $WHT. "Themes\n" . $NRM;
85bacb8f 622 print "1. Change Template set\n";
623# for ( $count = 0 ; $count <= $#theme_name/2 ; $count++ ) {
624# $temp_name = $theme_name[$count*2];
625# printf " %s%*s %s\n", $temp_name,
626# 40 - length($temp_name), " ",
627# $theme_name[($count*2)+1];
628# }
eaace00e 629 print "2. CSS File : $WHT$theme_css$NRM\n";
81132de8 630 print "3. Default font size: $WHT$default_fontsize$NRM\n";
631 print "4. Change available font sets\n";
85bacb8f 632 print "5. Change Themes\n";
633
eaace00e 634 print "\n";
dcc1cc82 635 print "R Return to Main Menu\n";
eaace00e 636 } elsif ( $menu == 6 ) {
4272758c 637 print $WHT. "Address Books\n" . $NRM;
638 print "1. Change LDAP Servers\n";
eaace00e 639 for ( $count = 0 ; $count <= $#ldap_host ; $count++ ) {
640 print " > $ldap_host[$count]\n";
641 }
71d3f882 642 print "2. Use Javascript address book search : $WHT$default_use_javascript_addr_book$NRM\n";
ee20a285 643 print "3. Global address book file : $WHT$abook_global_file$NRM\n";
4272758c 644 print "4. Allow writing into global file address book : $WHT$abook_global_file_writeable$NRM\n";
71d3f882 645 print "5. Allow listing of global file address book : $WHT$abook_global_file_listing$NRM\n";
7311c377 646 print "6. Allowed address book line length : $WHT$abook_file_line_length$NRM\n";
eaace00e 647 print "\n";
dcc1cc82 648 print "R Return to Main Menu\n";
eaace00e 649 } elsif ( $menu == 7 ) {
650 print $WHT. "Message of the Day (MOTD)\n" . $NRM;
651 print "\n$motd\n";
652 print "\n";
653 print "1 Edit the MOTD\n";
654 print "\n";
dcc1cc82 655 print "R Return to Main Menu\n";
eaace00e 656 } elsif ( $menu == 8 ) {
657 print $WHT. "Plugins\n" . $NRM;
658 print " Installed Plugins\n";
659 $num = 0;
660 for ( $count = 0 ; $count <= $#plugins ; $count++ ) {
661 $num = $count + 1;
662 print " $num. $plugins[$count]\n";
663 }
664 print "\n Available Plugins:\n";
665 opendir( DIR, "../plugins" );
666 @files = readdir(DIR);
667 $pos = 0;
668 @unused_plugins = ();
669 for ( $i = 0 ; $i <= $#files ; $i++ ) {
670 if ( -d "../plugins/" . $files[$i] && $files[$i] !~ /^\./ && $files[$i] ne "CVS" ) {
671 $match = 0;
672 for ( $k = 0 ; $k <= $#plugins ; $k++ ) {
673 if ( $plugins[$k] eq $files[$i] ) {
674 $match = 1;
675 }
676 }
677 if ( $match == 0 ) {
678 $unused_plugins[$pos] = $files[$i];
679 $pos++;
680 }
1a7a2fcc 681 }
eaace00e 682 }
683
684 for ( $i = 0 ; $i <= $#unused_plugins ; $i++ ) {
685 $num = $num + 1;
686 print " $num. $unused_plugins[$i]\n";
687 }
688 closedir DIR;
689
eaace00e 690 print "\n";
dcc1cc82 691 print "R Return to Main Menu\n";
eaace00e 692 } elsif ( $menu == 9 ) {
693 print $WHT. "Database\n" . $NRM;
694 print "1. DSN for Address Book : $WHT$addrbook_dsn$NRM\n";
695 print "2. Table for Address Book : $WHT$addrbook_table$NRM\n";
99a6c222 696 print "\n";
eaace00e 697 print "3. DSN for Preferences : $WHT$prefs_dsn$NRM\n";
698 print "4. Table for Preferences : $WHT$prefs_table$NRM\n";
06316c07 699 print "5. Field for username : $WHT$prefs_user_field$NRM ($prefs_user_size)\n";
700 print "6. Field for prefs key : $WHT$prefs_key_field$NRM ($prefs_key_size)\n";
701 print "7. Field for prefs value : $WHT$prefs_val_field$NRM ($prefs_val_size)\n";
eaace00e 702 print "\n";
30e9932c 703 print "8. DSN for Global Address Book : $WHT$addrbook_global_dsn$NRM\n";
704 print "9. Table for Global Address Book : $WHT$addrbook_global_table$NRM\n";
705 print "10. Allow writing into Global Address Book : $WHT$addrbook_global_writeable$NRM\n";
706 print "11. Allow listing of Global Address Book : $WHT$addrbook_global_listing$NRM\n";
707 print "\n";
dcc1cc82 708 print "R Return to Main Menu\n";
39d3ec89 709 } elsif ( $menu == 10 ) {
35aaf666 710 print $WHT. "Language settings\n" . $NRM;
711 print "1. Default Language : $WHT$squirrelmail_default_language$NRM\n";
712 print "2. Default Charset : $WHT$default_charset$NRM\n";
713 print "3. Show alternative language names : $WHT$show_alternative_names$NRM\n";
5ba5dc8e 714 print "4. Enable aggressive decoding : $WHT$aggressive_decoding$NRM\n";
715 print "5. Enable lossy encoding : $WHT$lossy_encoding$NRM\n";
35aaf666 716 print "\n";
dcc1cc82 717 print "R Return to Main Menu\n";
39d3ec89 718 } elsif ( $menu == 11 ) {
35aaf666 719 print $WHT. "Interface tweaks\n" . $NRM;
ca885a4f 720 print "1. Display html mails in iframe : $WHT$use_iframe$NRM\n";
721 print "2. Use Icons : $WHT$use_icons$NRM\n";
72bf0ae7 722 print "3. Default Icon Set : $WHT$icon_theme_def$NRM\n";
35aaf666 723 print "\n";
724 print $WHT. "PHP tweaks\n" . $NRM;
72bf0ae7 725 print "4. Use php recode functions : $WHT$use_php_recode$NRM\n";
726 print "5. Use php iconv functions : $WHT$use_php_iconv$NRM\n";
71d3f882 727 print "\n";
728 print $WHT. "Configuration tweaks\n" . $NRM;
72bf0ae7 729 print "6. Allow remote configtest : $WHT$allow_remote_configtest$NRM\n";
35aaf666 730 print "\n";
dcc1cc82 731 print "R Return to Main Menu\n";
eaace00e 732 }
733 if ( $config_use_color == 1 ) {
1ef64acb 734 print "C Turn color off\n";
eaace00e 735 } else {
1ef64acb 736 print "C Turn color on\n";
eaace00e 737 }
dcc1cc82 738 print "S Save data\n";
739 print "Q Quit\n";
eaace00e 740
741 print "\n";
742 print "Command >> " . $WHT;
743 $command = <STDIN>;
85645192 744 $command =~ s/[\n\r]//g;
eaace00e 745 $command =~ tr/A-Z/a-z/;
746 print "$NRM\n";
747
748 # Read the commands they entered.
749 if ( $command eq "r" ) {
750 $menu = 0;
751 } elsif ( $command eq "s" ) {
752 save_data();
753 print "Press enter to continue...";
754 $tmp = <STDIN>;
755 $saved = 1;
756 } elsif ( ( $command eq "q" ) && ( $saved == 0 ) ) {
757 print "You have not saved your data.\n";
758 print "Save? [" . $WHT . "Y" . $NRM . "/n]: ";
759 $save = <STDIN>;
760 if ( ( $save =~ /^y/i ) || ( $save =~ /^\s*$/ ) ) {
761 save_data();
762 }
763 } elsif ( $command eq "c" ) {
764 if ( $config_use_color == 1 ) {
765 $config_use_color = 2;
766 $WHT = "";
767 $NRM = "";
768 } else {
769 $config_use_color = 1;
770 $WHT = "\x1B[37;1m";
771 $NRM = "\x1B[0m";
772 }
773 } elsif ( $command eq "d" && $menu == 0 ) {
774 set_defaults();
775 } else {
776 $saved = 0;
777 if ( $menu == 0 ) {
39d3ec89 778 if ( ( $command > 0 ) && ( $command < 12 ) ) {
eaace00e 779 $menu = $command;
1a7a2fcc 780 }
eaace00e 781 } elsif ( $menu == 1 ) {
782 if ( $command == 1 ) { $org_name = command1(); }
783 elsif ( $command == 2 ) { $org_logo = command2(); }
b6e0c3b6 784 elsif ( $command == 3 ) { ($org_logo_width,$org_logo_height) = command2a(); }
785 elsif ( $command == 4 ) { $org_title = command3(); }
786 elsif ( $command == 5 ) { $signout_page = command4(); }
39d3ec89 787 elsif ( $command == 6 ) { $frame_top = command6(); }
788 elsif ( $command == 7 ) { $provider_uri = command7(); }
789 elsif ( $command == 8 ) { $provider_name = command8(); }
0ae4c1f2 790
eaace00e 791 } elsif ( $menu == 2 ) {
47a29326 792 if ( $command eq "a" ) { $show_imap_settings = 1; $show_smtp_settings = 0; }
793 elsif ( $command eq "b" ) { $show_imap_settings = 0; $show_smtp_settings = 1; }
794 elsif ( $command eq "h" ) { $show_imap_settings = 0; $show_smtp_settings = 0; }
795 elsif ( $command <= 3 ) {
796 if ( $command == 1 ) { $domain = command11(); }
797 elsif ( $command == 2 ) { $invert_time = command110(); }
798 elsif ( $command == 3 ) { $useSendmail = command14(); }
799 $show_imap_settings = 0; $show_smtp_settings = 0;
800 } elsif ( $show_imap_settings ) {
801 if ( $command == 4 ) { $imapServerAddress = command12(); }
802 elsif ( $command == 5 ) { $imapPort = command13(); }
b47821fb 803 elsif ( $command == 6 ) { $imap_auth_mech = command112a(); }
a15f9d93 804 elsif ( $command == 7 ) { $use_imap_tls = command_use_tls("IMAP",$use_imap_tls); }
47a29326 805 elsif ( $command == 8 ) { $imap_server_type = command19(); }
806 elsif ( $command == 9 ) { $optional_delimiter = command111(); }
35aaf666 807 } elsif ( $show_smtp_settings && lc($useSendmail) eq 'true' ) {
432db2fc 808 if ( $command == 4 ) { $sendmail_path = command15(); }
fd7ab795 809 elsif ( $command == 5 ) { $sendmail_args = command_sendmail_args(); }
810 elsif ( $command == 6 ) { $encode_header_key = command114(); }
47a29326 811 } elsif ( $show_smtp_settings ) {
812 if ( $command == 4 ) { $smtpServerAddress = command16(); }
813 elsif ( $command == 5 ) { $smtpPort = command17(); }
814 elsif ( $command == 6 ) { $pop_before_smtp = command18a(); }
b47821fb 815 elsif ( $command == 7 ) { $smtp_auth_mech = command112b(); }
a15f9d93 816 elsif ( $command == 8 ) { $use_smtp_tls = command_use_tls("SMTP",$use_smtp_tls); }
432db2fc 817 elsif ( $command == 9 ) { $encode_header_key = command114(); }
47a29326 818 }
eaace00e 819 } elsif ( $menu == 3 ) {
820 if ( $command == 1 ) { $default_folder_prefix = command21(); }
821 elsif ( $command == 2 ) { $show_prefix_option = command22(); }
822 elsif ( $command == 3 ) { $trash_folder = command23a(); }
823 elsif ( $command == 4 ) { $sent_folder = command23b(); }
824 elsif ( $command == 5 ) { $draft_folder = command23c(); }
825 elsif ( $command == 6 ) { $default_move_to_trash = command24a(); }
826 elsif ( $command == 7 ) { $default_move_to_sent = command24b(); }
827 elsif ( $command == 8 ) { $default_save_as_draft = command24c(); }
828 elsif ( $command == 9 ) { $list_special_folders_first = command27(); }
829 elsif ( $command == 10 ) { $use_special_folder_color = command28(); }
830 elsif ( $command == 11 ) { $auto_expunge = command29(); }
831 elsif ( $command == 12 ) { $default_sub_of_inbox = command210(); }
832 elsif ( $command == 13 ) { $show_contain_subfolders_option = command211(); }
833 elsif ( $command == 14 ) { $default_unseen_notify = command212(); }
834 elsif ( $command == 15 ) { $default_unseen_type = command213(); }
835 elsif ( $command == 16 ) { $auto_create_special = command214(); }
836 elsif ( $command == 17 ) { $delete_folder = command215(); }
ca85aabe 837 elsif ( $command == 18 ) { $noselect_fix_enable = command216(); }
eaace00e 838 } elsif ( $menu == 4 ) {
39d3ec89 839 if ( $command == 1 ) { $data_dir = command33a(); }
840 elsif ( $command == 2 ) { $attachment_dir = command33b(); }
841 elsif ( $command == 3 ) { $dir_hash_level = command33c(); }
842 elsif ( $command == 4 ) { $default_left_size = command35(); }
843 elsif ( $command == 5 ) { $force_username_lowercase = command36(); }
844 elsif ( $command == 6 ) { $default_use_priority = command37(); }
845 elsif ( $command == 7 ) { $hide_sm_attributions = command38(); }
846 elsif ( $command == 8 ) { $default_use_mdn = command39(); }
ee20a285 847 elsif ( $command == 9 ) { $edit_identity = command310(); }
11e00010 848 elsif ( $command == 10 ) { $disable_thread_sort = command312(); }
849 elsif ( $command == 11 ) { $disable_server_sort = command313(); }
39d3ec89 850 elsif ( $command == 12 ) { $allow_charset_search = command314(); }
de74555e 851 elsif ( $command == 13 ) { $allow_advanced_search = command316(); }
852 elsif ( $command == 14 ) { $session_name = command317(); }
ee20a285 853 elsif ( $command == 15 ) { $time_zone_type = command318(); }
3dc5d88f 854 elsif ( $command == 16 ) { $config_location_base = command_config_location_base(); }
eaace00e 855 } elsif ( $menu == 5 ) {
85bacb8f 856 if ( $command == 1 ) { $templateset_default = command_templates(); }
eaace00e 857 elsif ( $command == 2 ) { $theme_css = command42(); }
81132de8 858 elsif ( $command == 3 ) { $default_fontsize = command_default_fontsize(); }
859 elsif ( $command == 4 ) { command_fontsets(); }
85bacb8f 860 elsif ( $command == 5 ) { command41(); }
eaace00e 861 } elsif ( $menu == 6 ) {
862 if ( $command == 1 ) { command61(); }
863 elsif ( $command == 2 ) { command62(); }
4272758c 864 elsif ( $command == 3 ) { $abook_global_file=command63(); }
865 elsif ( $command == 4 ) { command64(); }
71d3f882 866 elsif ( $command == 5 ) { command65(); }
7311c377 867 elsif ( $command == 6 ) { command_abook_file_line_length(); }
eaace00e 868 } elsif ( $menu == 7 ) {
869 if ( $command == 1 ) { $motd = command71(); }
870 } elsif ( $menu == 8 ) {
871 if ( $command =~ /^[0-9]+/ ) { @plugins = command81(); }
eaace00e 872 } elsif ( $menu == 9 ) {
99a6c222 873 if ( $command == 1 ) { $addrbook_dsn = command91(); }
874 elsif ( $command == 2 ) { $addrbook_table = command92(); }
875 elsif ( $command == 3 ) { $prefs_dsn = command93(); }
876 elsif ( $command == 4 ) { $prefs_table = command94(); }
877 elsif ( $command == 5 ) { $prefs_user_field = command95(); }
878 elsif ( $command == 6 ) { $prefs_key_field = command96(); }
879 elsif ( $command == 7 ) { $prefs_val_field = command97(); }
30e9932c 880 elsif ( $command == 8 ) { $addrbook_global_dsn = command98(); }
881 elsif ( $command == 9 ) { $addrbook_global_table = command99(); }
882 elsif ( $command == 10 ) { $addrbook_global_writeable = command910(); }
883 elsif ( $command == 11 ) { $addrbook_global_listing = command911(); }
39d3ec89 884 } elsif ( $menu == 10 ) {
885 if ( $command == 1 ) { $squirrelmail_default_language = commandA1(); }
5ba5dc8e 886 elsif ( $command == 2 ) { $default_charset = commandA2(); }
dcc1cc82 887 elsif ( $command == 3 ) { $show_alternative_names = commandA3(); }
5ba5dc8e 888 elsif ( $command == 4 ) { $aggressive_decoding = commandA4(); }
889 elsif ( $command == 5 ) { $lossy_encoding = commandA5(); }
39d3ec89 890 } elsif ( $menu == 11 ) {
ca885a4f 891 if ( $command == 1 ) { $use_iframe = commandB2(); }
892 elsif ( $command == 2 ) { $use_icons = commandB3(); }
72bf0ae7 893 elsif ( $command == 3 ) { $icon_theme_def = commandB7(); }
894 elsif ( $command == 4 ) { $use_php_recode = commandB4(); }
895 elsif ( $command == 5 ) { $use_php_iconv = commandB5(); }
896 elsif ( $command == 6 ) { $allow_remote_configtest = commandB6(); }
eaace00e 897 }
898 }
828b4753 899}
900
cbd6543c 901# we exit here
902print "\nExiting conf.pl.\n".
35aaf666 903 "You might want to test your configuration by browsing to\n".
904 "http://your-squirrelmail-location/src/configtest.php\n".
905 "Happy SquirrelMailing!\n\n";
cbd6543c 906
907
828b4753 908####################################################################################
909
5b6ae78a 910# org_name
911sub command1 {
eaace00e 912 print "We have tried to make the name SquirrelMail as transparent as\n";
913 print "possible. If you set up an organization name, most places where\n";
914 print "SquirrelMail would take credit will be credited to your organization.\n";
915 print "\n";
360ef370 916 print "If your Organization Name includes a '\$', please precede it with a \\. \n";
917 print "Other '\$' will be considered the beginning of a variable that\n";
918 print "must be defined before the \$org_name is printed.\n";
360ef370 919 print "\n";
eaace00e 920 print "[$WHT$org_name$NRM]: $WHT";
921 $new_org_name = <STDIN>;
922 if ( $new_org_name eq "\n" ) {
923 $new_org_name = $org_name;
924 } else {
85645192 925 $new_org_name =~ s/[\r\n]//g;
35aaf666 926 $new_org_name =~ s/\"/&quot;/g;
eaace00e 927 }
928 return $new_org_name;
5b6ae78a 929}
930
931# org_logo
932sub command2 {
eaace00e 933 print "Your organization's logo is an image that will be displayed at\n";
25be56ab 934 print "different times throughout SquirrelMail. ";
935 print "\n";
936 print "Please be aware of the following: \n";
937 print " - Relative URLs are relative to the config dir\n";
938 print " to use the default logo, use ../images/sm_logo.png\n";
939 print " - To specify a logo defined outside the SquirrelMail source tree\n";
940 print " use the absolute URL the webserver would use to include the file\n";
5d28b77e 941 print " e.g. http://www.example.com/images/mylogo.gif or /images/mylogo.jpg\n";
eaace00e 942 print "\n";
943 print "[$WHT$org_logo$NRM]: $WHT";
944 $new_org_logo = <STDIN>;
945 if ( $new_org_logo eq "\n" ) {
946 $new_org_logo = $org_logo;
947 } else {
85645192 948 $new_org_logo =~ s/[\r\n]//g;
eaace00e 949 }
950 return $new_org_logo;
5b6ae78a 951}
952
b6e0c3b6 953# org_logo_width
954sub command2a {
955 print "Your organization's logo is an image that will be displayed at\n";
956 print "different times throughout SquirrelMail. Width\n";
957 print "and Height of your logo image. Use '0' to disable.\n";
958 print "\n";
959 print "Width: [$WHT$org_logo_width$NRM]: $WHT";
960 $new_org_logo_width = <STDIN>;
961 $new_org_logo_width =~ tr/0-9//cd; # only want digits!
962 if ( $new_org_logo_width eq '' ) {
963 $new_org_logo_width = $org_logo_width;
964 }
0e21688d 965 if ( $new_org_logo_width > 0 ) {
966 print "Height: [$WHT$org_logo_height$NRM]: $WHT";
967 $new_org_logo_height = <STDIN>;
968 $new_org_logo_height =~ tr/0-9//cd; # only want digits!
e03345e1 969 if( $new_org_logo_height eq '' ) {
35aaf666 970 $new_org_logo_height = $org_logo_height;
971 }
00c4b08d 972 } else {
0e21688d 973 $new_org_logo_height = 0;
b6e0c3b6 974 }
975 return ($new_org_logo_width, $new_org_logo_height);
976}
977
5b6ae78a 978# org_title
979sub command3 {
eaace00e 980 print "A title is what is displayed at the top of the browser window in\n";
981 print "the titlebar. Usually this will end up looking something like:\n";
982 print "\"Netscape: $org_title\"\n";
983 print "\n";
360ef370 984 print "If your Organization Title includes a '\$', please precede it with a \\. \n";
985 print "Other '\$' will be considered the beginning of a variable that\n";
986 print "must be defined before the \$org_title is printed.\n";
360ef370 987 print "\n";
eaace00e 988 print "[$WHT$org_title$NRM]: $WHT";
989 $new_org_title = <STDIN>;
990 if ( $new_org_title eq "\n" ) {
991 $new_org_title = $org_title;
992 } else {
85645192 993 $new_org_title =~ s/[\r\n]//g;
35aaf666 994 $new_org_title =~ s/\"/\'/g;
eaace00e 995 }
996 return $new_org_title;
5b6ae78a 997}
5b6ae78a 998
f923b93d 999# signout_page
1000sub command4 {
eaace00e 1001 print "When users click the Sign Out button they will be logged out and\n";
1002 print "then sent to signout_page. If signout_page is left empty,\n";
1003 print "(hit space and then return) they will be taken, as normal,\n";
1004 print "to the default and rather sparse SquirrelMail signout page.\n";
1005 print "\n";
1006 print "[$WHT$signout_page$NRM]: $WHT";
1007 $new_signout_page = <STDIN>;
1008 if ( $new_signout_page eq "\n" ) {
1009 $new_signout_page = $signout_page;
1010 } else {
85645192 1011 $new_signout_page =~ s/[\r\n]//g;
eaace00e 1012 $new_signout_page =~ s/^\s+$//g;
1013 }
1014 return $new_signout_page;
6ef7145f 1015}
1016
80e86e94 1017# Default top frame
1018sub command6 {
1019 print "SquirrelMail defaults to using the whole of the browser window.\n";
1020 print "This allows you to keep it within a specified frame. The default\n";
1021 print "is '_top'\n";
1022 print "\n";
1023 print "[$WHT$frame_top$NRM]: $WHT";
1024 $new_frame_top = <STDIN>;
eaace00e 1025 if ( $new_frame_top eq "\n" ) {
80e86e94 1026 $new_frame_top = '_top';
1027 } else {
85645192 1028 $new_frame_top =~ s/[\r\n]//g;
80e86e94 1029 $new_frame_top =~ s/^\s+$//g;
1030 }
1031 return $new_frame_top;
1032}
1033
0ae4c1f2 1034# Default link to provider
1035sub command7 {
1036 print "Here you can set the link on the right of the page.\n";
8b5c49cd 1037 print "If empty, it will link to the SquirrelMail About page.\n";
0ae4c1f2 1038 print "\n";
1039 print "[$WHT$provider_uri$NRM]: $WHT";
1040 $new_provider_uri = <STDIN>;
1041 if ( $new_provider_uri eq "\n" ) {
8b5c49cd 1042 $new_provider_uri = '';
0ae4c1f2 1043 } else {
85645192 1044 $new_provider_uri =~ s/[\r\n]//g;
0ae4c1f2 1045 $new_provider_uri =~ s/^\s+$//g;
1046 }
7b6563c0 1047 return $new_provider_uri;
0ae4c1f2 1048}
1049
1050sub command8 {
1051 print "Here you can set the name of the link on the right of the page.\n";
26eed4f7 1052 print "The default is 'SquirrelMail'\n";
0ae4c1f2 1053 print "\n";
1054 print "[$WHT$provider_name$NRM]: $WHT";
1055 $new_provider_name = <STDIN>;
1056 if ( $new_provider_name eq "\n" ) {
1057 $new_provider_name = 'SquirrelMail';
1058 } else {
85645192 1059 $new_provider_name =~ s/[\r\n]//g;
0ae4c1f2 1060 $new_provider_name =~ s/^\s+$//g;
26eed4f7 1061 $new_provider_name =~ s/\'/\\'/g;
0ae4c1f2 1062 }
7b6563c0 1063 return $new_provider_name;
0ae4c1f2 1064}
1065
828b4753 1066####################################################################################
5b6ae78a 1067
828b4753 1068# domain
1069sub command11 {
e1e4f932 1070 print "The domain name is the suffix at the end of all email addresses. If\n";
5d28b77e 1071 print "for example, your email address is jdoe\@example.com, then your domain\n";
1072 print "would be example.com.\n";
eaace00e 1073 print "\n";
1074 print "[$WHT$domain$NRM]: $WHT";
1075 $new_domain = <STDIN>;
1076 if ( $new_domain eq "\n" ) {
1077 $new_domain = $domain;
1078 } else {
85645192 1079 $new_domain =~ s/[\r\n]//g;
eaace00e 1080 }
1081 return $new_domain;
828b4753 1082}
5b6ae78a 1083
828b4753 1084# imapServerAddress
1085sub command12 {
47a29326 1086 print "This is the hostname where your IMAP server can be contacted.\n";
eaace00e 1087 print "[$WHT$imapServerAddress$NRM]: $WHT";
1088 $new_imapServerAddress = <STDIN>;
1089 if ( $new_imapServerAddress eq "\n" ) {
1090 $new_imapServerAddress = $imapServerAddress;
1091 } else {
85645192 1092 $new_imapServerAddress =~ s/[\r\n]//g;
eaace00e 1093 }
1094 return $new_imapServerAddress;
828b4753 1095}
5b6ae78a 1096
828b4753 1097# imapPort
1098sub command13 {
eaace00e 1099 print "This is the port that your IMAP server is on. Usually this is 143.\n";
1100 print "[$WHT$imapPort$NRM]: $WHT";
1101 $new_imapPort = <STDIN>;
1102 if ( $new_imapPort eq "\n" ) {
1103 $new_imapPort = $imapPort;
1104 } else {
85645192 1105 $new_imapPort =~ s/[\r\n]//g;
eaace00e 1106 }
1107 return $new_imapPort;
828b4753 1108}
1109
1110# useSendmail
1111sub command14 {
eaace00e 1112 print "You now need to choose the method that you will use for sending\n";
1113 print "messages in SquirrelMail. You can either connect to an SMTP server\n";
1114 print "or use sendmail directly.\n";
35aaf666 1115 if ( lc($useSendmail) eq 'true' ) {
eaace00e 1116 $default_value = "1";
1117 } else {
1118 $default_value = "2";
1119 }
1120 print "\n";
1121 print " 1. Sendmail\n";
1122 print " 2. SMTP\n";
1123 print "Your choice [1/2] [$WHT$default_value$NRM]: $WHT";
1124 $use_sendmail = <STDIN>;
1125 if ( ( $use_sendmail =~ /^1\n/i )
1126 || ( ( $use_sendmail =~ /^\n/ ) && ( $default_value eq "1" ) ) ) {
35aaf666 1127 $useSendmail = 'true';
eaace00e 1128 } else {
35aaf666 1129 $useSendmail = 'false';
eaace00e 1130 }
1131 return $useSendmail;
828b4753 1132}
5b6ae78a 1133
828b4753 1134# sendmail_path
1135sub command15 {
eaace00e 1136 print "Specify where the sendmail executable is located. Usually /usr/sbin/sendmail\n";
1137 print "[$WHT$sendmail_path$NRM]: $WHT";
1138 $new_sendmail_path = <STDIN>;
1139 if ( $new_sendmail_path eq "\n" ) {
1140 $new_sendmail_path = $sendmail_path;
1141 } else {
85645192 1142 $new_sendmail_path =~ s/[\r\n]//g;
eaace00e 1143 }
1144 return $new_sendmail_path;
828b4753 1145}
5b6ae78a 1146
fd7ab795 1147# Extra sendmail arguments
1148sub command_sendmail_args {
1149 print "Specify additional sendmail program arguments.\n";
1150 print "\n";
1151 print "Make sure that arguments are supported by your sendmail program. -f argument \n";
1152 print "is added automatically by SquirrelMail scripts. Variable defaults to standard\n";
1153 print "/usr/sbin/sendmail arguments. If you use qmail-inject, nbsmtp or any other \n";
1154 print "sendmail wrapper, which does not support -i and -t arguments, set variable to\n";
85bacb8f 1155 print "empty string or use arguments suitable for your mailer.\n";
fd7ab795 1156 print "\n";
1157 print "[$WHT$sendmail_args$NRM]: $WHT";
1158 $new_sendmail_args = <STDIN>;
1159 if ( $new_sendmail_args eq "\n" ) {
1160 $new_sendmail_args = $sendmail_args;
1161 } else {
1162 # strip linefeeds and crs.
1163 $new_sendmail_args =~ s/[\r\n]//g;
1164 }
1165 return trim($new_sendmail_args);
1166}
1167
828b4753 1168# smtpServerAddress
1169sub command16 {
47a29326 1170 print "This is the hostname of your SMTP server.\n";
eaace00e 1171 print "[$WHT$smtpServerAddress$NRM]: $WHT";
1172 $new_smtpServerAddress = <STDIN>;
1173 if ( $new_smtpServerAddress eq "\n" ) {
1174 $new_smtpServerAddress = $smtpServerAddress;
1175 } else {
85645192 1176 $new_smtpServerAddress =~ s/[\r\n]//g;
eaace00e 1177 }
1178 return $new_smtpServerAddress;
828b4753 1179}
1180
1181# smtpPort
1182sub command17 {
eaace00e 1183 print "This is the port to connect to for SMTP. Usually 25.\n";
1184 print "[$WHT$smtpPort$NRM]: $WHT";
1185 $new_smtpPort = <STDIN>;
1186 if ( $new_smtpPort eq "\n" ) {
1187 $new_smtpPort = $smtpPort;
1188 } else {
85645192 1189 $new_smtpPort =~ s/[\r\n]//g;
eaace00e 1190 }
1191 return $new_smtpPort;
bbd30ac8 1192}
d2f4c914 1193
2044f95a 1194# pop before SMTP
1195sub command18a {
1196 print "Do you wish to use POP3 before SMTP? Your server must\n";
1197 print "support this in order for SquirrelMail to work with it.\n";
1198
1199 $YesNo = 'n';
35aaf666 1200 $YesNo = 'y' if ( lc($pop_before_smtp) eq 'true' );
2044f95a 1201
1202 print "Use pop before SMTP (y/n) [$WHT$YesNo$NRM]: $WHT";
1203
1204 $new_pop_before_smtp = <STDIN>;
1205 $new_pop_before_smtp =~ tr/yn//cd;
35aaf666 1206 return 'true' if ( $new_pop_before_smtp eq "y" );
1207 return 'false' if ( $new_pop_before_smtp eq "n" );
2044f95a 1208 return $pop_before_smtp;
1209}
1210
598294a7 1211# imap_server_type
d2f4c914 1212sub command19 {
eaace00e 1213 print "Each IMAP server has its own quirks. As much as we tried to stick\n";
1214 print "to standards, it doesn't help much if the IMAP server doesn't follow\n";
1215 print "the same principles. We have made some work-arounds for some of\n";
1216 print "these servers. If you would like to use them, please select your\n";
1217 print "IMAP server. If you do not wish to use these work-arounds, you can\n";
1218 print "set this to \"other\", and none will be used.\n";
a33764f6 1219 print " courier = Courier IMAP server\n";
b39825f0 1220 print " cyrus = Cyrus IMAP server\n";
a33764f6 1221 print " dovecot = Dovecot Secure IMAP server\n";
b39825f0 1222 print " exchange = Microsoft Exchange IMAP server\n";
b39825f0 1223 print " hmailserver = hMailServer\n";
a33764f6 1224 print " macosx = Mac OS X Mailserver\n";
67a24f8a 1225 print " mercury32 = Mercury Mail Transport System\n";
a33764f6 1226 print " uw = University of Washington's IMAP server\n";
1227 print "\n";
b39825f0 1228 print " other = Not one of the above servers\n";
a33764f6 1229 print "\n";
eaace00e 1230 print "[$WHT$imap_server_type$NRM]: $WHT";
1231 $new_imap_server_type = <STDIN>;
1232
1233 if ( $new_imap_server_type eq "\n" ) {
1234 $new_imap_server_type = $imap_server_type;
1235 } else {
85645192 1236 $new_imap_server_type =~ s/[\r\n]//g;
eaace00e 1237 }
1238 return $new_imap_server_type;
a93b12ba 1239}
3f8fe68e 1240
d47b2518 1241# invert_time
d2f4c914 1242sub command110 {
eaace00e 1243 print "Sometimes the date of messages sent is messed up (off by a few hours\n";
1244 print "on some machines). Typically this happens if the system doesn't support\n";
1245 print "tm_gmtoff. It will happen only if your time zone is \"negative\".\n";
1246 print "This most often occurs on Solaris 7 machines in the United States.\n";
1247 print "By default, this is off. It should be kept off unless problems surface\n";
1248 print "about the time that messages are sent.\n";
1249 print " no = Do NOT fix time -- almost always correct\n";
1250 print " yes = Fix the time for this system\n";
1251
1252 $YesNo = 'n';
35aaf666 1253 $YesNo = 'y' if ( lc($invert_time) eq 'true' );
eaace00e 1254
1255 print "Fix the time for this system (y/n) [$WHT$YesNo$NRM]: $WHT";
1256
1257 $new_invert_time = <STDIN>;
1258 $new_invert_time =~ tr/yn//cd;
35aaf666 1259 return 'true' if ( $new_invert_time eq "y" );
1260 return 'false' if ( $new_invert_time eq "n" );
eaace00e 1261 return $invert_time;
1262}
d47b2518 1263
d2f4c914 1264sub command111 {
eaace00e 1265 print "This is the delimiter that your IMAP server uses to distinguish between\n";
1266 print "folders. For example, Cyrus uses '.' as the delimiter and a complete\n";
1267 print "folder would look like 'INBOX.Friends.Bob', while UW uses '/' and would\n";
1268 print "look like 'INBOX/Friends/Bob'. Normally this should be left at 'detect'\n";
1269 print "but if you are sure you know what delimiter your server uses, you can\n";
1270 print "specify it here.\n";
1271 print "\nTo have it autodetect the delimiter, set it to 'detect'.\n\n";
1272 print "[$WHT$optional_delimiter$NRM]: $WHT";
1273 $new_optional_delimiter = <STDIN>;
1274
1275 if ( $new_optional_delimiter eq "\n" ) {
1276 $new_optional_delimiter = $optional_delimiter;
1277 } else {
85645192 1278 $new_optional_delimiter =~ s/[\r\n]//g;
eaace00e 1279 }
1280 return $new_optional_delimiter;
40ba4d36 1281}
b47821fb 1282# IMAP authentication type
33feaaec 1283# Possible values: login, plain, cram-md5, digest-md5
b47821fb 1284# Now offers to detect supported mechs, assuming server & port are set correctly
1285
1286sub command112a {
61e49023 1287 if ($use_imap_tls ne "0") {
1288 # 1. Script does not handle TLS.
1289 # 2. Server does not have to declare all supported authentication mechs when
1290 # STARTTLS is used. Supported mechs are declared only after STARTTLS.
1291 print "Auto-detection of login methods is unavailable when using TLS or STARTTLS.\n";
80e3fcf8 1292 } else {
35aaf666 1293 print "If you have already set the hostname and port number, I can try to\n";
1294 print "detect the mechanisms your IMAP server supports.\n";
1295 print "I will try to detect CRAM-MD5 and DIGEST-MD5 support. I can't test\n";
1296 print "for \"login\" or \"plain\" without knowing a username and password.\n";
1297 print "Auto-detecting is optional - you can safely say \"n\" here.\n";
1298 print "\nTry to detect supported mechanisms? [y/N]: ";
1299 $inval=<STDIN>;
1300 chomp($inval);
1301 if ($inval =~ /^y\b/i) {
1302 # Yes, let's try to detect.
1303 print "Trying to detect IMAP capabilities...\n";
1304 my $host = $imapServerAddress . ':'. $imapPort;
1305 print "CRAM-MD5:\t";
1306 my $tmp = detect_auth_support('IMAP',$host,'CRAM-MD5');
1307 if (defined($tmp)) {
1308 if ($tmp eq 'YES') {
1309 print "$WHT SUPPORTED$NRM\n";
1310 } else {
1311 print "$WHT NOT SUPPORTED$NRM\n";
1312 }
80e3fcf8 1313 } else {
35aaf666 1314 print $WHT . " ERROR DETECTING$NRM\n";
1315 }
1316
1317 print "DIGEST-MD5:\t";
1318 $tmp = detect_auth_support('IMAP',$host,'DIGEST-MD5');
1319 if (defined($tmp)) {
1320 if ($tmp eq 'YES') {
1321 print "$WHT SUPPORTED$NRM\n";
1322 } else {
1323 print "$WHT NOT SUPPORTED$NRM\n";
1324 }
1325 } else {
1326 print $WHT . " ERROR DETECTING$NRM\n";
1327 }
598294a7 1328
35aaf666 1329 }
598294a7 1330 }
35aaf666 1331 print "\nWhat authentication mechanism do you want to use for IMAP connections?\n\n";
1332 print $WHT . "login" . $NRM . " - Plaintext. If you can do better, you probably should.\n";
33feaaec 1333 print $WHT . "plain" . $NRM . " - SASL PLAIN. If you need this, you already know it.\n";
35aaf666 1334 print $WHT . "cram-md5" . $NRM . " - Slightly better than plaintext methods.\n";
1335 print $WHT . "digest-md5" . $NRM . " - Privacy protection - better than cram-md5.\n";
1336 print "\n*** YOUR IMAP SERVER MUST SUPPORT THE MECHANISM YOU CHOOSE HERE ***\n";
1337 print "If you don't understand or are unsure, you probably want \"login\"\n\n";
1338 print "login, plain, cram-md5, or digest-md5 [$WHT$imap_auth_mech$NRM]: $WHT";
b47821fb 1339 $inval=<STDIN>;
1340 chomp($inval);
33feaaec 1341 if ( ($inval =~ /^cram-md5\b/i) || ($inval =~ /^digest-md5\b/i) || ($inval =~ /^login\b/i) || ($inval =~ /^plain\b/i)) {
b47821fb 1342 return lc($inval);
1343 } else {
1344 # user entered garbage or default value so nothing needs to be set
1345 return $imap_auth_mech;
1346 }
1347}
40ba4d36 1348
598294a7 1349
b47821fb 1350# SMTP authentication type
1351# Possible choices: none, plain, cram-md5, digest-md5
1352sub command112b {
61e49023 1353 if ($use_smtp_tls ne "0") {
1354 print "Auto-detection of login methods is unavailable when using TLS or STARTTLS.\n";
1355 } elsif (eval ("use IO::Socket; 1")) {
1356 # try loading IO::Socket module
80e3fcf8 1357 print "If you have already set the hostname and port number, I can try to\n";
1358 print "automatically detect some of the mechanisms your SMTP server supports.\n";
35aaf666 1359 print "Auto-detection is *optional* - you can safely say \"n\" here.\n";
80e3fcf8 1360 print "\nTry to detect auth mechanisms? [y/N]: ";
1361 $inval=<STDIN>;
1362 chomp($inval);
1363 if ($inval =~ /^y\b/i) {
35aaf666 1364 # Yes, let's try to detect.
1365 print "Trying to detect supported methods (SMTP)...\n";
598294a7 1366
35aaf666 1367 # Special case!
1368 # Check none by trying to relay to junk@microsoft.com
1369 $host = $smtpServerAddress . ':' . $smtpPort;
35aaf666 1370 my $sock = IO::Socket::INET->new($host);
1371 print "Testing none:\t\t$WHT";
1372 if (!defined($sock)) {
1373 print " ERROR TESTING\n";
1374 close $sock;
1375 } else {
5d28b77e 1376 print $sock "HELO $domain\r\n";
35aaf666 1377 $got = <$sock>; # Discard
5d28b77e 1378 print $sock "MAIL FROM:<tester\@squirrelmail.org>\r\n";
1379 $got = <$sock>; # Discard
1380 print $sock "RCPT TO:<junk\@microsoft.com\r\n";
35aaf666 1381 $got = <$sock>; # This is the important line
1382 if ($got =~ /^250\b/) { # SMTP will relay without auth
1383 print "SUPPORTED$NRM\n";
1384 } else {
1385 print "NOT SUPPORTED$NRM\n";
1386 }
5d28b77e 1387 print $sock "RSET\r\n";
1388 print $sock "QUIT\r\n";
35aaf666 1389 close $sock;
1390 }
1391 # Try login (SquirrelMail default)
1392 print "Testing login:\t\t";
1393 $tmp=detect_auth_support('SMTP',$host,'LOGIN');
1394 if (defined($tmp)) {
1395 if ($tmp eq 'YES') {
1396 print $WHT . "SUPPORTED$NRM\n";
1397 } else {
1398 print $WHT . "NOT SUPPORTED$NRM\n";
1399 }
1400 } else {
1401 print $WHT . "ERROR DETECTING$NRM\n";
1402 }
598294a7 1403
35aaf666 1404 # Try CRAM-MD5
80e3fcf8 1405 print "Testing CRAM-MD5:\t";
1406 $tmp=detect_auth_support('SMTP',$host,'CRAM-MD5');
1407 if (defined($tmp)) {
1408 if ($tmp eq 'YES') {
1409 print $WHT . "SUPPORTED$NRM\n";
1410 } else {
1411 print $WHT . "NOT SUPPORTED$NRM\n";
1412 }
1413 } else {
1414 print $WHT . "ERROR DETECTING$NRM\n";
b47821fb 1415 }
598294a7 1416
80e3fcf8 1417
1418 print "Testing DIGEST-MD5:\t";
1419 $tmp=detect_auth_support('SMTP',$host,'DIGEST-MD5');
1420 if (defined($tmp)) {
1421 if ($tmp eq 'YES') {
1422 print $WHT . "SUPPORTED$NRM\n";
1423 } else {
1424 print $WHT . "NOT SUPPORTED$NRM\n";
1425 }
1426 } else {
1427 print $WHT . "ERROR DETECTING$NRM\n";
b47821fb 1428 }
598294a7 1429 }
80e3fcf8 1430 }
1431 print "\nWhat authentication mechanism do you want to use for SMTP connections?\n";
b47821fb 1432 print $WHT . "none" . $NRM . " - Your SMTP server does not require authorization.\n";
fe0b18b3 1433 print $WHT . "login" . $NRM . " - Plaintext. If you can do better, you probably should.\n";
33feaaec 1434 print $WHT . "plain" . $NRM . " - SASL PLAIN. You already know it if you need this.\n";
639c7164 1435 print $WHT . "cram-md5" . $NRM . " - Slightly better than plaintext.\n";
1436 print $WHT . "digest-md5" . $NRM . " - Privacy protection - better than cram-md5.\n";
fe0b18b3 1437 print $WHT . "\n*** YOUR SMTP SERVER MUST SUPPORT THE MECHANISM YOU CHOOSE HERE ***\n" . $NRM;
b47821fb 1438 print "If you don't understand or are unsure, you probably want \"none\"\n\n";
fe0b18b3 1439 print "none, login, cram-md5, or digest-md5 [$WHT$smtp_auth_mech$NRM]: $WHT";
47a29326 1440 $inval=<STDIN>;
1441 chomp($inval);
b47821fb 1442 if ($inval =~ /^none\b/i) {
029d1fc2 1443 # remove sitewide smtp authentication information
1444 $smtp_sitewide_user = '';
1445 $smtp_sitewide_pass = '';
1446 # SMTP doesn't necessarily require logins
1447 return "none";
1448 } elsif ( ($inval =~ /^cram-md5\b/i) || ($inval =~ /^digest-md5\b/i) ||
1449 ($inval =~ /^login\b/i) || ($inval =~/^plain\b/i)) {
1450 command_smtp_sitewide_userpass($inval);
1451 return lc($inval);
1452 } elsif (trim($inval) eq '') {
1453 # user selected default value
1454 command_smtp_sitewide_userpass($smtp_auth_mech);
1455 return $smtp_auth_mech;
1456 } else {
1457 # user entered garbage
1458 return $smtp_auth_mech;
47a29326 1459 }
029d1fc2 1460}
1461
1462sub command_smtp_sitewide_userpass($) {
1463 # get first function argument
1464 my $auth_mech = shift(@_);
1465 my $default, $tmp;
1466 $auth_mech = lc(trim($auth_mech));
54b27c06 1467 if ($auth_mech eq 'none') {
029d1fc2 1468 return;
1469 }
1470 print "SMTP authentication uses IMAP username and password by default.\n";
1471 print "\n";
1472 print "Would you like to use other login and password for all SquirrelMail \n";
1473 print "SMTP connections?";
1474 if ($smtp_sitewide_user ne '') {
1475 $default = 'y';
1476 print " [Yn]:";
1477 } else {
1478 $default = 'n';
1479 print " [yN]:";
1480 }
1481 $tmp=<STDIN>;
1482 $tmp = trim($tmp);
1483
1484 if ($tmp eq '') {
1485 $tmp = $default;
47a29326 1486 } else {
029d1fc2 1487 $tmp = lc($tmp);
1488 }
1489
1490 if ($tmp eq 'n') {
1491 $smtp_sitewide_user = '';
1492 $smtp_sitewide_pass = '';
1493 } elsif ($tmp eq 'y') {
1494 print "Enter username [$smtp_sitewide_user]:";
1495 my $new_user = <STDIN>;
1496 $new_user = trim($new_user);
1497 if ($new_user ne '') {
1498 $smtp_sitewide_user = $new_user;
1499 }
1500 if ($smtp_sitewide_user ne '') {
1501 print "If you don't enter any password, current sitewide password will be used.\n";
1502 print "If you enter space, password will be set to empty string.\n";
1503 print "Enter password:";
1504 my $new_pass = <STDIN>;
1505 if ($new_pass ne "\n") {
1506 $smtp_sitewide_pass = trim($new_pass);
1507 }
1508 } else {
1509 print "Invalid input. You must set username used for SMTP authentication.\n";
1510 print "Click any key to continue\n";
1511 $tmp = <STDIN>;
1512 }
1513 } else {
1514 print "Invalid input\n";
1515 print "Click any key to continue\n";
1516 $tmp = <STDIN>;
47a29326 1517 }
1518}
1519
029d1fc2 1520# Sub adds information about SMTP authentication type to menu
1521sub display_smtp_sitewide_userpass() {
1522 my $ret = '';
1523 if ($smtp_auth_mech ne 'none') {
1524 if ($smtp_sitewide_user ne '') {
1525 $ret = ' (with custom username and password)';
1526 } else {
1527 $ret = ' (with IMAP username and password)';
1528 }
1529 }
1530 return $ret;
1531}
1532
47a29326 1533# TLS
1534# This sub is reused for IMAP and SMTP
1535# Args: service name, default value
a15f9d93 1536sub command_use_tls {
35aaf666 1537 my($default_val,$service,$inval);
1538 $service=$_[0];
1539 $default_val=$_[1];
1540 print "TLS (Transport Layer Security) encrypts the traffic between server and client.\n";
a15f9d93 1541 print "STARTTLS extensions allow to start encryption on existing plain text connection.\n";
1542 print "These options add specific PHP and IMAP server configuration requirements.\n";
1543 print "See SquirrelMail documentation about connection security.\n";
1544 print "\n";
1545 print "If your " . $service . " server is localhost, you can safely disable this.\n";
35aaf666 1546 print "If it is remote, you may wish to seriously consider enabling this.\n";
a15f9d93 1547 $valid_input=0;
1548 while ($valid_input eq 0) {
1549 print "\nSelect connection security model:\n";
1550 print " 0 - Use plain text connection\n";
1551 print " 1 - Use TLS connection\n";
1552 print " 2 - Use STARTTLS extension\n";
1553 print "Select [$default_val]: ";
1554 $inval=<STDIN>;
1555 $inval=trim($inval);
1556 if ($inval =~ /^[012]$/ || $inval eq '') {
1557 $valid_input = 1;
1558 }
47a29326 1559 }
a15f9d93 1560 if ($inval ne '') {$default_val = $inval};
47a29326 1561 return $default_val;
35aaf666 1562}
47a29326 1563
2b4a868c 1564# This sub is used to display human readable text for
1565# $use_imap_tls and $use_smtp_tls values in conf.pl menu
1566sub display_use_tls($) {
1567 my $val = shift(@_);
1568 my $ret = 'disabled';
1569 if ($val eq '2') {
1570 $ret = 'STARTTLS';
1571 } elsif ($val eq '1') {
1572 $ret = 'TLS';
1573 }
1574 return $ret;
1575}
1576
432db2fc 1577# $encode_header_key
35aaf666 1578sub command114{
432db2fc 1579 print "Encryption key allows to hide SquirrelMail Received: headers\n";
1580 print "in outbound messages. Interface uses encryption key to encode\n";
1581 print "username, remote address and proxied address, then stores encoded\n";
1582 print "information in X-Squirrel-* headers.\n";
1583 print "\n";
1584 print "Warning: used encryption function is not bulletproof. When used\n";
1585 print "with static encryption keys, it provides only minimal security\n";
1586 print "measures and information can be decoded quickly.\n";
1587 print "\n";
1588 print "Encoded information can be decoded with decrypt_headers.php script\n";
1589 print "from SquirrelMail contrib/ directory.\n";
1590 print "\n";
1591 print "Enter encryption key: ";
1592 $new_encode_header_key = <STDIN>;
1593 if ( $new_encode_header_key eq "\n" ) {
1594 $new_encode_header_key = $encode_header_key;
1595 } else {
1596 $new_encode_header_key =~ s/[\r\n]//g;
1597 }
1598 return $new_encode_header_key;
35aaf666 1599}
47a29326 1600
3f8fe68e 1601# MOTD
1602sub command71 {
eaace00e 1603 print "\nYou can now create the welcome message that is displayed\n";
1604 print "every time a user logs on. You can use HTML or just plain\n";
dcc1cc82 1605 print
1606"text. If you do not wish to have one, just make it blank.\n\n(Type @ on a blank line to exit)\n";
eaace00e 1607
1608 $new_motd = "";
1609 do {
1610 print "] ";
1611 $line = <STDIN>;
85645192 1612 $line =~ s/[\r\n]//g;
eaace00e 1613 if ( $line ne "@" ) {
1614 $line =~ s/ /\&nbsp;\&nbsp;/g;
1615 $line =~ s/\t/\&nbsp;\&nbsp;\&nbsp;\&nbsp;/g;
1616 $line =~ s/$/ /;
8278a58d 1617 $line =~ s/\"/\\\"/g;
eaace00e 1618
1619 $new_motd = $new_motd . $line;
1620 }
1621 } while ( $line ne "@" );
1622 return $new_motd;
3f8fe68e 1623}
911ad01c 1624
9d0c7bee 1625################# PLUGINS ###################
1626
1627sub command81 {
85645192 1628 $command =~ s/[\s\n\r]*//g;
eaace00e 1629 if ( $command > 0 ) {
1630 $command = $command - 1;
1631 if ( $command <= $#plugins ) {
1632 @newplugins = ();
1633 $ct = 0;
1634 while ( $ct <= $#plugins ) {
1635 if ( $ct != $command ) {
1636 @newplugins = ( @newplugins, $plugins[$ct] );
1637 }
1638 $ct++;
9d0c7bee 1639 }
eaace00e 1640 @plugins = @newplugins;
1641 } elsif ( $command <= $#plugins + $#unused_plugins + 1 ) {
1642 $num = $command - $#plugins - 1;
1643 @newplugins = @plugins;
1644 $ct = 0;
1645 while ( $ct <= $#unused_plugins ) {
1646 if ( $ct == $num ) {
1647 @newplugins = ( @newplugins, $unused_plugins[$ct] );
eaace00e 1648 }
1649 $ct++;
9d0c7bee 1650 }
eaace00e 1651 @plugins = @newplugins;
1652 }
1653 }
1654 return @plugins;
1655}
9d0c7bee 1656
911ad01c 1657################# FOLDERS ###################
1658
1659# default_folder_prefix
1660sub command21 {
eaace00e 1661 print "Some IMAP servers (UW, for example) store mail and folders in\n";
1662 print "your user space in a separate subdirectory. This is where you\n";
1663 print "specify what that directory is.\n";
1664 print "\n";
1665 print "EXAMPLE: mail/";
1666 print "\n";
1667 print "NOTE: If you use Cyrus, or some server that would not use this\n";
1668 print " option, you must set this to 'none'.\n";
1669 print "\n";
1670 print "[$WHT$default_folder_prefix$NRM]: $WHT";
1671 $new_default_folder_prefix = <STDIN>;
1672
1673 if ( $new_default_folder_prefix eq "\n" ) {
1674 $new_default_folder_prefix = $default_folder_prefix;
1675 } else {
d52532d5 1676 $new_default_folder_prefix =~ s/[\r\n]//g;
eaace00e 1677 }
d52532d5 1678 if ( ( $new_default_folder_prefix =~ /^\s*$/ ) || ( $new_default_folder_prefix =~ m/^none$/i ) ) {
eaace00e 1679 $new_default_folder_prefix = "";
1680 } else {
d52532d5 1681 # add the trailing delimiter only if we know what the server is.
ce9f808b 1682 if (($imap_server_type eq 'cyrus' and
1683 $optional_delimiter eq 'detect') or
1684 ($imap_server_type eq 'courier' and
1685 $optional_delimiter eq 'detect')) {
d52532d5 1686 $new_default_folder_prefix =~ s/\.*$/\./;
ce9f808b 1687 } elsif ($imap_server_type eq 'uw' and
1688 $optional_delimiter eq 'detect') {
d52532d5 1689 $new_default_folder_prefix =~ s/\/*$/\//;
0e21688d 1690 }
eaace00e 1691 }
1692 return $new_default_folder_prefix;
911ad01c 1693}
1694
1695# Show Folder Prefix
1696sub command22 {
eaace00e 1697 print "It is possible to set up the default folder prefix as a user\n";
1698 print "specific option, where each user can specify what their mail\n";
1699 print "folder is. If you set this to false, they will never see the\n";
1700 print "option, but if it is true, this option will appear in the\n";
1701 print "'options' section.\n";
1702 print "\n";
1703 print "NOTE: You set the default folder prefix in option '1' of this\n";
1704 print " section. That will be the default if the user doesn't\n";
1705 print " specify anything different.\n";
1706 print "\n";
1707
35aaf666 1708 if ( lc($show_prefix_option) eq 'true' ) {
eaace00e 1709 $default_value = "y";
1710 } else {
1711 $default_value = "n";
1712 }
1713 print "\n";
1714 print "Show option (y/n) [$WHT$default_value$NRM]: $WHT";
1715 $new_show = <STDIN>;
1716 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 1717 $show_prefix_option = 'true';
eaace00e 1718 } else {
35aaf666 1719 $show_prefix_option = 'false';
eaace00e 1720 }
1721 return $show_prefix_option;
911ad01c 1722}
1723
598294a7 1724# Trash Folder
f7b1b3b1 1725sub command23a {
eaace00e 1726 print "You can now specify where the default trash folder is located.\n";
1727 print "On servers where you do not want this, you can set it to anything\n";
1728 print "and set option 6 to false.\n";
1729 print "\n";
1730 print "This is relative to where the rest of your email is kept. You do\n";
1731 print "not need to worry about their mail directory. If this folder\n";
1732 print "would be ~/mail/trash on the filesystem, you only need to specify\n";
1733 print "that this is 'trash', and be sure to put 'mail/' in option 1.\n";
1734 print "\n";
1735
1736 print "[$WHT$trash_folder$NRM]: $WHT";
1737 $new_trash_folder = <STDIN>;
1738 if ( $new_trash_folder eq "\n" ) {
1739 $new_trash_folder = $trash_folder;
1740 } else {
5ef3253e 1741 if (check_imap_folder($new_trash_folder)) {
1742 $new_trash_folder =~ s/[\r\n]//g;
1743 } else {
1744 $new_trash_folder = $trash_folder;
1745 }
eaace00e 1746 }
1747 return $new_trash_folder;
911ad01c 1748}
1749
598294a7 1750# Sent Folder
f7b1b3b1 1751sub command23b {
eaace00e 1752 print "This is where messages that are sent will be stored. SquirrelMail\n";
1753 print "by default puts a copy of all outgoing messages in this folder.\n";
1754 print "\n";
1755 print "This is relative to where the rest of your email is kept. You do\n";
1756 print "not need to worry about their mail directory. If this folder\n";
1757 print "would be ~/mail/sent on the filesystem, you only need to specify\n";
1758 print "that this is 'sent', and be sure to put 'mail/' in option 1.\n";
1759 print "\n";
1760
1761 print "[$WHT$sent_folder$NRM]: $WHT";
1762 $new_sent_folder = <STDIN>;
1763 if ( $new_sent_folder eq "\n" ) {
1764 $new_sent_folder = $sent_folder;
1765 } else {
5ef3253e 1766 if (check_imap_folder($new_sent_folder)) {
1767 $new_sent_folder =~ s/[\r\n]//g;
1768 } else {
1769 $new_sent_folder = $sent_folder;
1770 }
eaace00e 1771 }
1772 return $new_sent_folder;
911ad01c 1773}
1774
598294a7 1775# Draft Folder
f7b1b3b1 1776sub command23c {
eaace00e 1777 print "You can now specify where the default draft folder is located.\n";
1778 print "On servers where you do not want this, you can set it to anything\n";
1779 print "and set option 9 to false.\n";
1780 print "\n";
1781 print "This is relative to where the rest of your email is kept. You do\n";
1782 print "not need to worry about their mail directory. If this folder\n";
1783 print "would be ~/mail/drafts on the filesystem, you only need to specify\n";
1784 print "that this is 'drafts', and be sure to put 'mail/' in option 1.\n";
1785 print "\n";
1786
1787 print "[$WHT$draft_folder$NRM]: $WHT";
1788 $new_draft_folder = <STDIN>;
1789 if ( $new_draft_folder eq "\n" ) {
1790 $new_draft_folder = $draft_folder;
1791 } else {
5ef3253e 1792 if (check_imap_folder($new_draft_folder)) {
1793 $new_draft_folder =~ s/[\r\n]//g;
1794 } else {
1795 $new_draft_folder = $draft_folder;
1796 }
eaace00e 1797 }
1798 return $new_draft_folder;
f7b1b3b1 1799}
1800
598294a7 1801# default move to trash
f7b1b3b1 1802sub command24a {
eaace00e 1803 print "By default, should messages get moved to the trash folder? You\n";
1804 print "can specify the default trash folder in option 3. If this is set\n";
1805 print "to false, messages will get deleted immediately without moving\n";
1806 print "to the trash folder.\n";
1807 print "\n";
1808 print "Trash folder is currently: $trash_folder\n";
1809 print "\n";
1810
35aaf666 1811 if ( lc($default_move_to_trash) eq 'true' ) {
eaace00e 1812 $default_value = "y";
1813 } else {
1814 $default_value = "n";
1815 }
1816 print "By default, move to trash (y/n) [$WHT$default_value$NRM]: $WHT";
1817 $new_show = <STDIN>;
1818 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 1819 $default_move_to_trash = 'true';
eaace00e 1820 } else {
35aaf666 1821 $default_move_to_trash = 'false';
eaace00e 1822 }
1823 return $default_move_to_trash;
2f287147 1824}
1825
598294a7 1826# default move to sent
f7b1b3b1 1827sub command24b {
eaace00e 1828 print "By default, should messages get moved to the sent folder? You\n";
1829 print "can specify the default sent folder in option 4. If this is set\n";
1830 print "to false, messages will get sent and no copy will be made.\n";
1831 print "\n";
6517cfd0 1832 print "Sent folder is currently: $sent_folder\n";
eaace00e 1833 print "\n";
1834
35aaf666 1835 if ( lc($default_move_to_sent) eq 'true' ) {
eaace00e 1836 $default_value = "y";
1837 } else {
1838 $default_value = "n";
1839 }
1840 print "By default, move to sent (y/n) [$WHT$default_value$NRM]: $WHT";
1841 $new_show = <STDIN>;
1842 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 1843 $default_move_to_sent = 'true';
eaace00e 1844 } else {
35aaf666 1845 $default_move_to_sent = 'false';
eaace00e 1846 }
1847 return $default_move_to_sent;
2f287147 1848}
1849
f7b1b3b1 1850# default save as draft
1851sub command24c {
eaace00e 1852 print "By default, should the save to draft option be shown? You can\n";
1853 print "specify the default drafts folder in option 5. If this is set\n";
1854 print "to false, users will not be shown the save to draft option.\n";
1855 print "\n";
1856 print "Drafts folder is currently: $draft_folder\n";
1857 print "\n";
1858
35aaf666 1859 if ( lc($default_move_to_draft) eq 'true' ) {
eaace00e 1860 $default_value = "y";
1861 } else {
1862 $default_value = "n";
1863 }
1864 print "By default, save as draft (y/n) [$WHT$default_value$NRM]: $WHT";
1865 $new_show = <STDIN>;
1866 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 1867 $default_save_as_draft = 'true';
eaace00e 1868 } else {
35aaf666 1869 $default_save_as_draft = 'false';
eaace00e 1870 }
1871 return $default_save_as_draft;
f7b1b3b1 1872}
1873
598294a7 1874# List special folders first
2f287147 1875sub command27 {
eaace00e 1876 print "SquirrelMail has what we call 'special folders' that are not\n";
1877 print "manipulated and viewed like normal folders. Some examples of\n";
1878 print "these folders would be INBOX, Trash, Sent, etc. This option\n";
1879 print "Simply asks if you want these folders listed first in the folder\n";
1880 print "listing.\n";
1881 print "\n";
1882
35aaf666 1883 if ( lc($list_special_folders_first) eq 'true' ) {
eaace00e 1884 $default_value = "y";
1885 } else {
1886 $default_value = "n";
1887 }
1888 print "\n";
1889 print "List first (y/n) [$WHT$default_value$NRM]: $WHT";
1890 $new_show = <STDIN>;
1891 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 1892 $list_special_folders_first = 'true';
eaace00e 1893 } else {
35aaf666 1894 $list_special_folders_first = 'false';
eaace00e 1895 }
1896 return $list_special_folders_first;
911ad01c 1897}
1898
598294a7 1899# Show special folders color
2f287147 1900sub command28 {
eaace00e 1901 print "SquirrelMail has what we call 'special folders' that are not\n";
1902 print "manipulated and viewed like normal folders. Some examples of\n";
1903 print "these folders would be INBOX, Trash, Sent, etc. This option\n";
1904 print "wants to know if we should display special folders in a\n";
1905 print "color than the other folders.\n";
1906 print "\n";
1907
35aaf666 1908 if ( lc($use_special_folder_color) eq 'true' ) {
eaace00e 1909 $default_value = "y";
1910 } else {
1911 $default_value = "n";
1912 }
1913 print "\n";
1914 print "Show color (y/n) [$WHT$default_value$NRM]: $WHT";
1915 $new_show = <STDIN>;
1916 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 1917 $use_special_folder_color = 'true';
eaace00e 1918 } else {
35aaf666 1919 $use_special_folder_color = 'false';
eaace00e 1920 }
1921 return $use_special_folder_color;
911ad01c 1922}
1923
598294a7 1924# Auto expunge
2f287147 1925sub command29 {
eaace00e 1926 print "The way that IMAP handles deleting messages is as follows. You\n";
1927 print "mark the message as deleted, and then to 'really' delete it, you\n";
1928 print "expunge it. This option asks if you want to just have messages\n";
1929 print "marked as deleted, or if you want SquirrelMail to expunge the \n";
1930 print "messages too.\n";
1931 print "\n";
1932
35aaf666 1933 if ( lc($auto_expunge) eq 'true' ) {
eaace00e 1934 $default_value = "y";
1935 } else {
1936 $default_value = "n";
1937 }
1938 print "Auto expunge (y/n) [$WHT$default_value$NRM]: $WHT";
1939 $new_show = <STDIN>;
1940 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 1941 $auto_expunge = 'true';
eaace00e 1942 } else {
35aaf666 1943 $auto_expunge = 'false';
eaace00e 1944 }
1945 return $auto_expunge;
911ad01c 1946}
1947
598294a7 1948# Default sub of inbox
2f287147 1949sub command210 {
eaace00e 1950 print "Some IMAP servers (Cyrus) have all folders as subfolders of INBOX.\n";
1951 print "This can cause some confusion in folder creation for users when\n";
1952 print "they try to create folders and don't put it as a subfolder of INBOX\n";
1953 print "and get permission errors. This option asks if you want folders\n";
1954 print "to be subfolders of INBOX by default.\n";
1955 print "\n";
1956
35aaf666 1957 if ( lc($default_sub_of_inbox) eq 'true' ) {
eaace00e 1958 $default_value = "y";
1959 } else {
1960 $default_value = "n";
1961 }
1962 print "Default sub of INBOX (y/n) [$WHT$default_value$NRM]: $WHT";
1963 $new_show = <STDIN>;
1964 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 1965 $default_sub_of_inbox = 'true';
eaace00e 1966 } else {
35aaf666 1967 $default_sub_of_inbox = 'false';
eaace00e 1968 }
1969 return $default_sub_of_inbox;
911ad01c 1970}
1971
598294a7 1972# Show contain subfolder option
2f287147 1973sub command211 {
eaace00e 1974 print "Some IMAP servers (UW) make it so that there are two types of\n";
1975 print "folders. Those that contain messages, and those that contain\n";
1976 print "subfolders. If this is the case for your server, set this to\n";
1977 print "true, and it will ask the user whether the folder they are\n";
1978 print "creating contains subfolders or messages.\n";
1979 print "\n";
1980
35aaf666 1981 if ( lc($show_contain_subfolders_option) eq 'true' ) {
eaace00e 1982 $default_value = "y";
1983 } else {
1984 $default_value = "n";
1985 }
1986 print "Show option (y/n) [$WHT$default_value$NRM]: $WHT";
1987 $new_show = <STDIN>;
1988 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 1989 $show_contain_subfolders_option = 'true';
eaace00e 1990 } else {
35aaf666 1991 $show_contain_subfolders_option = 'false';
eaace00e 1992 }
1993 return $show_contain_subfolders_option;
911ad01c 1994}
1995
598294a7 1996# Default Unseen Notify
24fc5dd2 1997sub command212 {
eaace00e 1998 print "This option specifies where the users will receive notification\n";
1999 print "about unseen messages by default. This is of course an option that\n";
2000 print "can be changed on a user level.\n";
2001 print " 1 = No notification\n";
2002 print " 2 = Only on the INBOX\n";
2003 print " 3 = On all folders\n";
2004 print "\n";
2005
2006 print "Which one should be default (1,2,3)? [$WHT$default_unseen_notify$NRM]: $WHT";
2007 $new_show = <STDIN>;
85645192 2008 if ( $new_show =~ /^[123]\n/i ) {
eaace00e 2009 $default_unseen_notify = $new_show;
2010 }
85645192 2011 $default_unseen_notify =~ s/[\r\n]//g;
eaace00e 2012 return $default_unseen_notify;
24fc5dd2 2013}
2014
598294a7 2015# Default Unseen Type
24fc5dd2 2016sub command213 {
eaace00e 2017 print "Here you can define the default way that unseen messages will be displayed\n";
2018 print "to the user in the folder listing on the left side.\n";
2019 print " 1 = Only unseen messages (4)\n";
2020 print " 2 = Unseen and Total messages (4/27)\n";
2021 print "\n";
2022
2023 print "Which one should be default (1,2)? [$WHT$default_unseen_type$NRM]: $WHT";
2024 $new_show = <STDIN>;
85645192 2025 if ( $new_show =~ /^[12]\n/i ) {
eaace00e 2026 $default_unseen_type = $new_show;
2027 }
85645192 2028 $default_unseen_type =~ s/[\r\n]//g;
eaace00e 2029 return $default_unseen_type;
24fc5dd2 2030}
2031
f7bfc9de 2032# Auto create special folders
2033sub command214 {
eaace00e 2034 print "Would you like the Sent, Trash, and Drafts folders to be created\n";
2035 print "automatically print for you when a user logs in? If the user\n";
2036 print "accidentally deletes their special folders, this option will\n";
2037 print "automatically create it again for them.\n";
2038 print "\n";
2039
35aaf666 2040 if ( lc($auto_create_special) eq 'true' ) {
eaace00e 2041 $default_value = "y";
2042 } else {
2043 $default_value = "n";
2044 }
2045 print "Auto create special folders? (y/n) [$WHT$default_value$NRM]: $WHT";
2046 $new_show = <STDIN>;
2047 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 2048 $auto_create_special = 'true';
eaace00e 2049 } else {
35aaf666 2050 $auto_create_special = 'false';
eaace00e 2051 }
2052 return $auto_create_special;
f7bfc9de 2053}
2054
598294a7 2055# Automatically delete folders
4e85a37f 2056sub command215 {
d04165f3 2057 if ( $imap_server_type eq "uw" ) {
2058 print "UW IMAP servers will not allow folders containing mail to also contain folders.\n";
2059 print "Deleting folders will bypass the trash folder and be immediately deleted\n\n";
98468fba 2060 print "If this is not the correct value for your server,\n";
2061 print "please use option D on the Main Menu to configure your server correctly.\n\n";
2eec12b5 2062 print "Press any key to continue...\n";
2063 $new_delete = <STDIN>;
35aaf666 2064 $delete_folder = 'true';
598294a7 2065 } else {
d04165f3 2066 if ( $imap_server_type eq "courier" ) {
2067 print "Courier (or Courier-IMAP) IMAP servers may not support ";
2068 print "subfolders of Trash. \n";
2069 print "Specifically, if Courier is set to always move messages to Trash, \n";
2070 print "Trash will be treated by Courier as a special folder that does not \n";
2071 print "allow subfolders. \n\n";
2072 print "Please verify your Courier configuration, and test folder deletion \n";
598294a7 2073 print "when changing this setting.\n\n";
d04165f3 2074 }
2075
2076 print "Are subfolders of the Trash supported by your IMAP server?\n";
2077 print "If so, should deleted folders be sent to Trash?\n";
2078 print "If not, say no (deleted folders should not be sent to Trash)\n\n";
2079 # reversal of logic.
2080 # question was: Should folders be automatically deleted instead of sent to trash..
598294a7 2081 # we've changed the question to make it more clear,
2082 # and are here handling that to avoid changing the answers..
35aaf666 2083 if ( lc($delete_folder) eq 'true' ) {
2eec12b5 2084 $default_value = "n";
d04165f3 2085 } else {
2086 $default_value = "y";
2eec12b5 2087 }
d04165f3 2088 print "Send deleted folders to Trash? (y/n) [$WHT$default_value$NRM]: $WHT";
2eec12b5 2089 $new_delete = <STDIN>;
2090 if ( ( $new_delete =~ /^y\n/i ) || ( ( $new_delete =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 2091 $delete_folder = 'false';
d04165f3 2092 } else {
35aaf666 2093 $delete_folder = 'true';
2eec12b5 2094 }
eaace00e 2095 }
2096 return $delete_folder;
2097}
24fc5dd2 2098
ca85aabe 2099#noselect fix
2100sub command216 {
2101 print "Some IMAP server allow subfolders to exist even if the parent\n";
2102 print "folders do not. This fixes some problems with the folder list\n";
2103 print "when this is the case, causing the /NoSelect folders to be displayed\n";
2104 print "\n";
2105
35aaf666 2106 if ( lc($noselect_fix_enable) eq 'true' ) {
ca85aabe 2107 $default_value = "y";
2108 } else {
2109 $default_value = "n";
2110 }
2111 print "enable noselect fix? (y/n) [$WHT$noselect_fix_enable$NRM]: $WHT";
2112 $noselect_fix_enable = <STDIN>;
2113 if ( ( $noselect_fix_enable =~ /^y\n/i ) || ( ( $noselect_fix_enable =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 2114 $noselect_fix_enable = 'true';
ca85aabe 2115 } else {
35aaf666 2116 $noselect_fix_enable = 'false';
ca85aabe 2117 }
2118 return $noselect_fix_enable;
2119}
ccfb2029 2120############# GENERAL OPTIONS #####################
2121
ccfb2029 2122# Data directory
3392dc86 2123sub command33a {
e6566358 2124 print "Specify the location for your data directory.\n";
368ab966 2125 print "You need to create this directory yourself.\n";
e6566358 2126 print "The path name can be absolute or relative (to the config directory).\n";
368ab966 2127 print "Here are two examples:\n";
2128 print " Absolute: /var/local/squirrelmail/data/\n";
598294a7 2129 print " Relative: ../data/\n";
8bd9e0dd 2130 print "Relative paths to directories outside of the SquirrelMail distribution\n";
e6566358 2131 print "will be converted to their absolute path equivalents in config.php.\n\n";
30e9932c 2132 print "Note: There are potential security risks with having a writeable directory\n";
e6566358 2133 print "under the web server's root directory (ex: /home/httpd/html).\n";
2134 print "For this reason, it is recommended to put the data directory\n";
2eec12b5 2135 print "in an alternate location of your choice. \n";
2136 print "\n";
2137
eaace00e 2138 print "[$WHT$data_dir$NRM]: $WHT";
2139 $new_data_dir = <STDIN>;
2140 if ( $new_data_dir eq "\n" ) {
2141 $new_data_dir = $data_dir;
2142 } else {
85645192 2143 $new_data_dir =~ s/[\r\n]//g;
eaace00e 2144 }
2145 if ( $new_data_dir =~ /^\s*$/ ) {
2146 $new_data_dir = "";
2147 } else {
2148 $new_data_dir =~ s/\/*$//g;
2149 $new_data_dir =~ s/$/\//g;
2150 }
2151 return $new_data_dir;
ccfb2029 2152}
2153
2154# Attachment directory
3392dc86 2155sub command33b {
eaace00e 2156 print "Path to directory used for storing attachments while a mail is\n";
368ab966 2157 print "being composed. The path name can be absolute or relative (to the\n";
2158 print "config directory). Here are two examples:\n";
2159 print " Absolute: /var/local/squirrelmail/attach/\n";
e6566358 2160 print " Relative: ../attach/\n";
2161 print "Relative paths to directories outside of the SquirrelMail distribution\n";
2162 print "will be converted to their absolute path equivalents in config.php.\n\n";
2163 print "Note: There are a few security considerations regarding this\n";
eaace00e 2164 print "directory:\n";
2165 print " 1. It should have the permission 733 (rwx-wx-wx) to make it\n";
2166 print " impossible for a random person with access to the webserver\n";
2167 print " to list files in this directory. Confidential data might\n";
2168 print " be laying around in there.\n";
e6566358 2169 print " Depending on your user:group assignments, 730 (rwx-wx---)\n";
2170 print " may be possible, and more secure (e.g. root:apache)\n";
eaace00e 2171 print " 2. Since the webserver is not able to list the files in the\n";
2172 print " content is also impossible for the webserver to delete files\n";
2173 print " lying around there for too long.\n";
2174 print " 3. It should probably be another directory than the data\n";
2175 print " directory specified in option 3.\n";
2176 print "\n";
2177
2178 print "[$WHT$attachment_dir$NRM]: $WHT";
2179 $new_attachment_dir = <STDIN>;
2180 if ( $new_attachment_dir eq "\n" ) {
2181 $new_attachment_dir = $attachment_dir;
2182 } else {
85645192 2183 $new_attachment_dir =~ s/[\r\n]//g;
eaace00e 2184 }
2185 if ( $new_attachment_dir =~ /^\s*$/ ) {
2186 $new_attachment_dir = "";
2187 } else {
2188 $new_attachment_dir =~ s/\/*$//g;
2189 $new_attachment_dir =~ s/$/\//g;
2190 }
2191 return $new_attachment_dir;
ccfb2029 2192}
2193
3392dc86 2194sub command33c {
eaace00e 2195 print "The directory hash level setting allows you to configure the level\n";
598294a7 2196 print "of hashing that SquirrelMail employs in your data and attachment\n";
eaace00e 2197 print "directories. This value must be an integer ranging from 0 to 4.\n";
598294a7 2198 print "When this value is set to 0, SquirrelMail will simply store all\n";
eaace00e 2199 print "files as normal in the data and attachment directories. However,\n";
2200 print "when set to a value from 1 to 4, a simple hashing scheme will be\n";
2201 print "used to organize the files in this directory. In short, the crc32\n";
2202 print "value for a username will be computed. Then, up to the first 4\n";
2203 print "digits of the hash, as set by this configuration value, will be\n";
2204 print "used to directory hash the files for that user in the data and\n";
2205 print "attachment directory. This allows for better performance on\n";
2206 print "servers with larger numbers of users.\n";
2207 print "\n";
2208
2209 print "[$WHT$dir_hash_level$NRM]: $WHT";
2210 $new_dir_hash_level = <STDIN>;
2211 if ( $new_dir_hash_level eq "\n" ) {
2212 $new_dir_hash_level = $dir_hash_level;
2213 } else {
85645192 2214 $new_dir_hash_level =~ s/[\r\n]//g;
eaace00e 2215 }
2216 if ( ( int($new_dir_hash_level) < 0 )
2217 || ( int($new_dir_hash_level) > 4 )
2218 || !( int($new_dir_hash_level) eq $new_dir_hash_level ) ) {
2219 print "Invalid Directory Hash Level.\n";
2220 print "Value must be an integer ranging from 0 to 4\n";
2221 print "Hit enter to continue.\n";
2222 $enter_key = <STDIN>;
2223
2224 $new_dir_hash_level = $dir_hash_level;
2225 }
2226
2227 return $new_dir_hash_level;
3392dc86 2228}
ccfb2029 2229
2230sub command35 {
eaace00e 2231 print "This is the default size (in pixels) of the left folder list.\n";
2232 print "Default is 200, but you can set it to whatever you wish. This\n";
2233 print "is a user preference, so this will only show up as their default.\n";
2234 print "\n";
2235 print "[$WHT$default_left_size$NRM]: $WHT";
2236 $new_default_left_size = <STDIN>;
2237 if ( $new_default_left_size eq "\n" ) {
2238 $new_default_left_size = $default_left_size;
2239 } else {
85645192 2240 $new_default_left_size =~ s/[\r\n]//g;
eaace00e 2241 }
2242 return $new_default_left_size;
ccfb2029 2243}
2244
985f7c88 2245sub command36 {
eaace00e 2246 print "Some IMAP servers only have lowercase letters in the usernames\n";
2247 print "but they still allow people with uppercase to log in. This\n";
2248 print "causes a problem with the user's preference files. This option\n";
2249 print "transparently changes all usernames to lowercase.";
2250 print "\n";
2251
35aaf666 2252 if ( lc($force_username_lowercase) eq 'true' ) {
eaace00e 2253 $default_value = "y";
2254 } else {
2255 $default_value = "n";
2256 }
2257 print "Convert usernames to lowercase (y/n) [$WHT$default_value$NRM]: $WHT";
2258 $new_show = <STDIN>;
2259 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 2260 return 'true';
eaace00e 2261 }
35aaf666 2262 return 'false';
985f7c88 2263}
2264
0d15cd19 2265sub command37 {
eaace00e 2266 print "";
2267 print "\n";
985f7c88 2268
35aaf666 2269 if ( lc($default_use_priority) eq 'true' ) {
eaace00e 2270 $default_value = "y";
2271 } else {
2272 $default_value = "n";
2273 }
2274
2275 print "Allow users to specify priority of outgoing mail (y/n) [$WHT$default_value$NRM]: $WHT";
2276 $new_show = <STDIN>;
2277 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 2278 return 'true';
eaace00e 2279 }
35aaf666 2280 return 'false';
826b7f71 2281}
2282
eaace00e 2283sub command38 {
2284 print "";
2285 print "\n";
2286
35aaf666 2287 if ( lc($default_hide_attribution) eq 'true' ) {
eaace00e 2288 $default_value = "y";
2289 } else {
2290 $default_value = "n";
2291 }
2292
2293 print "Hide SM attributions (y/n) [$WHT$default_value$NRM]: $WHT";
2294 $new_show = <STDIN>;
2295 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 2296 return 'true';
eaace00e 2297 }
35aaf666 2298 return 'false';
eaace00e 2299}
826b7f71 2300
8c21da0c 2301sub command39 {
eaace00e 2302 print "";
2303 print "\n";
2304
35aaf666 2305 if ( lc($default_use_mdn) eq 'true' ) {
eaace00e 2306 $default_value = "y";
2307 } else {
2308 $default_value = "n";
2309 }
2310
2311 print "Enable support for read/delivery receipt support (y/n) [$WHT$default_value$NRM]: $WHT";
2312 $new_show = <STDIN>;
2313 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 2314 return 'true';
eaace00e 2315 }
35aaf666 2316 return 'false';
8c21da0c 2317}
2318
432db2fc 2319
8a7d0669 2320sub command310 {
85bacb8f 2321 print " In loosely managed environments, you may want to allow users
2322 to edit their full name and email address. In strictly managed
bb08da84 2323 environments, you may want to force users to use the name
2324 and email address assigned to them.
85bacb8f 2325
bb08da84 2326 'y' - allow a user to edit their full name and email address,
2327 'n' - users must use the assigned values.
85bacb8f 2328
bb08da84 2329 ";
eaace00e 2330
35aaf666 2331 if ( lc($edit_identity) eq 'true' ) {
8a7d0669 2332 $default_value = "y";
2333 } else {
2334 $default_value = "n";
2335 }
2eec12b5 2336 print "Allow editing of user's identity? (y/n) [$WHT$default_value$NRM]: $WHT";
8a7d0669 2337 $new_edit = <STDIN>;
eaace00e 2338 if ( ( $new_edit =~ /^y\n/i ) || ( ( $new_edit =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 2339 $edit_identity = 'true';
2340 $edit_name = 'true';
bb08da84 2341 $hide_auth_header = command311b();
8a7d0669 2342 } else {
35aaf666 2343 $edit_identity = 'false';
2eec12b5 2344 $edit_name = command311();
432db2fc 2345 $hide_auth_header = command311b();
8a7d0669 2346 }
2347 return $edit_identity;
2348}
2349
2350sub command311 {
85bacb8f 2351 print " Given that users are not allowed to modify their
bb08da84 2352 email address, can they edit their full name?
85bacb8f 2353
bb08da84 2354 ";
8a7d0669 2355
35aaf666 2356 if ( lc($edit_name) eq 'true' ) {
8a7d0669 2357 $default_value = "y";
2358 } else {
2359 $default_value = "n";
2360 }
bb08da84 2361 print "Allow the user to edit their full name? (y/n) [$WHT$default_value$NRM]: $WHT";
8a7d0669 2362 $new_edit = <STDIN>;
eaace00e 2363 if ( ( $new_edit =~ /^y\n/i ) || ( ( $new_edit =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 2364 $edit_name = 'true';
8a7d0669 2365 } else {
35aaf666 2366 $edit_name = 'false';
8a7d0669 2367 }
2368 return $edit_name;
2369}
8c21da0c 2370
432db2fc 2371sub command311b {
bb08da84 2372 print " SquirrelMail adds username information to every sent email
85bacb8f 2373 in order to prevent possible sender forging when users are allowed
bb08da84 2374 to change their email and/or full name.
2375
85bacb8f 2376 You can remove user information from this header (y), if you think that
2377 it violates privacy or security.
2378
2379 Note: If users are allowed to change their email addresses,
bb08da84 2380 this setting will make it difficult to determine who sent what where.
2381 Use at your own risk.
85bacb8f 2382
bb08da84 2383 ";
85bacb8f 2384
432db2fc 2385 if ( lc($hide_auth_header) eq "true" ) {
2386 $default_value = "y";
2387 } else {
2388 $default_value = "n";
2389 }
2390 print "Remove username from email headers? (y/n) [$WHT$default_value$NRM]: $WHT";
2391 $new_header = <STDIN>;
2392 if ( ( $new_header =~ /^y\n/i ) || ( ( $new_header =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2393 $hide_auth_header = "true";
2394 } else {
2395 $hide_auth_header = "false";
2396 }
bb08da84 2397 return $hide_auth_header;
432db2fc 2398}
2399
7c612fdd 2400sub command312 {
0e3ece54 2401 print "This option allows you to disable server side thread sorting if your server \n";
801da708 2402 print "declares THREAD support, but you don't want to provide threading options \n";
2403 print "to end users or THREAD extension is broken or extension does not work with \n";
2404 print "options used by SquirrelMail. Option is not used, if THREAD extension is \n";
2405 print "not declared in IMAP CAPABILITY.\n";
7c612fdd 2406 print "\n";
2407
801da708 2408 if ( lc($disable_thread_sort) eq 'true' ) {
7c612fdd 2409 $default_value = "y";
2410 } else {
2411 $default_value = "n";
2412 }
801da708 2413 print "Disable server side thread sorting? (y/n) [$WHT$default_value$NRM]: $WHT";
11e00010 2414 $disable_thread_sort = <STDIN>;
2415 if ( ( $disable_thread_sort =~ /^y\n/i ) || ( ( $disable_thread_sort =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2416 $disable_thread_sort = 'true';
7c612fdd 2417 } else {
11e00010 2418 $disable_thread_sort = 'false';
7c612fdd 2419 }
11e00010 2420 return $disable_thread_sort;
7c612fdd 2421}
2422
aa0da530 2423sub command313 {
0e3ece54 2424 print "This option allows you to disable server side sorting if your server declares \n";
801da708 2425 print "SORT support, but SORT extension is broken or does not work with options \n";
2426 print "used by SquirrelMail. Option is not used, if SORT extension is not declared \n";
2427 print "in IMAP CAPABILITY.\n";
2428 print "\n";
2429 print "It is strongly recommended to keep server side sorting enabled, if your ";
2430 print "IMAP server supports it.";
aa0da530 2431 print "\n";
2432
11e00010 2433 if ( lc($disable_server_sort) eq 'true' ) {
aa0da530 2434 $default_value = "y";
2435 } else {
2436 $default_value = "n";
2437 }
801da708 2438 print "Disable server-side sorting? (y/n) [$WHT$default_value$NRM]: $WHT";
11e00010 2439 $disable_server_sort = <STDIN>;
2440 if ( ( $disable_server_sort =~ /^y\n/i ) || ( ( $disable_server_sort =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
2441 $disable_server_sort = 'true';
aa0da530 2442 } else {
11e00010 2443 $disable_server_sort = 'false';
aa0da530 2444 }
11e00010 2445 return $disable_server_sort;
aa0da530 2446}
2447
65ffb3ce 2448sub command314 {
2449 print "This option allows you to choose if SM uses charset search\n";
2450 print "Your IMAP server must support the SEARCH CHARSET command for this to work\n";
2451 print "\n";
2452
35aaf666 2453 if ( lc($allow_charset_search) eq 'true' ) {
65ffb3ce 2454 $default_value = "y";
2455 } else {
2456 $default_value = "n";
2457 }
2458 print "Allow charset searching? (y/n) [$WHT$default_value$NRM]: $WHT";
2459 $allow_charset_search = <STDIN>;
2460 if ( ( $allow_charset_search =~ /^y\n/i ) || ( ( $allow_charset_search =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
35aaf666 2461 $allow_charset_search = 'true';
65ffb3ce 2462 } else {
35aaf666 2463 $allow_charset_search = 'false';
65ffb3ce 2464 }
2465 return $allow_charset_search;
2466}
2467
4ecd3a70 2468# command315 (UID support) obsoleted.
3c7ee482 2469
de74555e 2470# advanced search option
6c499577 2471sub command316 {
66bfb27b 2472 print "This option allows you to control the use of advanced search form.\n";
0f1b00b8 2473 print " 0 = enable basic search only\n";
2474 print " 1 = enable advanced search only\n";
2475 print " 2 = enable both\n";
2476 print "\n";
2477
2478 print "Allowed search (0,1,2)? [$WHT$allow_advanced_search$NRM]: $WHT";
2479 $new_allow_advanced_search = <STDIN>;
85645192 2480 if ( $new_allow_advanced_search =~ /^[012]\n/i ) {
0f1b00b8 2481 $allow_advanced_search = $new_allow_advanced_search;
de74555e 2482 }
85645192 2483 $allow_advanced_search =~ s/[\r\n]//g;
66bfb27b 2484 return $allow_advanced_search;
de74555e 2485}
2486
2487
2488sub command317 {
35aaf666 2489 print "This option allows you to change the name of the PHP session used\n";
2490 print "by SquirrelMail. Unless you know what you are doing, you probably\n";
2491 print "don't need or want to change this from the default of SQMSESSID.\n";
6c499577 2492 print "[$WHT$session_name$NRM]: $WHT";
2493 $new_session_name = <STDIN>;
35aaf666 2494 chomp($new_session_name);
6614128e 2495 if ( $new_session_name eq "" ) {
6c499577 2496 $new_session_name = $session_name;
2497 }
2498 return $new_session_name;
2499}
2500
ee20a285 2501# time zone config (since 1.5.1)
2502sub command318 {
2503 print "This option allows you to control the use of time zones.\n";
2504 print " 0 = (default) standard, GNU C time zone names\n";
2505 print " 1 = strict, generic time zone codes with offsets\n";
2506 print " 2 = custom, GNU C time zones loaded from config/timezones.php\n";
2507 print " 3 = custom strict, generic time zone codes with offsets loaded \n";
2508 print " from config/timezones.php\n";
2509 print "See SquirrelMail documentation about format of config/timezones.php file.\n";
2510 print "\n";
2511
2512 print "Used time zone configuration (0,1,2,3)? [$WHT$time_zone_type$NRM]: $WHT";
2513 $new_time_zone_type = <STDIN>;
2514 if ( $new_time_zone_type =~ /^[0123]\n/i ) {
2515 $time_zone_type = $new_time_zone_type;
2516 } else {
2517 print "\nInvalid configuration value.\n";
2518 print "\nPress enter to continue...";
2519 $tmp = <STDIN>;
2520 }
2521 $time_zone_type =~ s/[\r\n]//g;
2522 return $time_zone_type;
2523}
dcc1cc82 2524
74530cf4 2525# set the location base for redirects (since 1.5.2)
3dc5d88f 2526sub command_config_location_base {
74530cf4 2527 print "Here you can set the base part of the SquirrelMail URL.\n";
2528 print "It is normally autodetected but if that fails, use this\n";
2529 print "option to override.\n";
2530 print "It should contain only the protocol and hostname/port parts\n";
2531 print "of the URL; the full path will be appended automatically.\n\n";
2532 print "Examples:\nhttp://webmail.example.org\nhttp://webmail.example.com:8080\nhttps://webmail.example.com:6691\n\n";
2533 print "Do not add any path elements.\n";
2534
2535 print "URL base? [" .$WHT."autodetect$NRM]: $WHT";
2536 $new_config_location_base = <STDIN>;
2537 chomp($new_config_location_base);
2538 $config_location_base = $new_config_location_base;
2539
2540 return $config_location_base;
2541}
2542
2543
65ffb3ce 2544
ccfb2029 2545sub command41 {
2eec12b5 2546 print "\nDefine the themes that you wish to use. If you have added ";
2547 print "a theme of your own, just follow the instructions (?) about how to add ";
eaace00e 2548 print "them. You can also change the default theme.\n";
2549 print "[theme] command (?=help) > ";
2550 $input = <STDIN>;
85645192 2551 $input =~ s/[\r\n]//g;
eaace00e 2552 while ( $input ne "d" ) {
2553 if ( $input =~ /^\s*l\s*/i ) {
2554 $count = 0;
2555 while ( $count <= $#theme_name ) {
2556 if ( $count == $theme_default ) {
2557 print " *";
2558 } else {
2559 print " ";
2560 }
2eec12b5 2561 if ( $count < 10 ) {
2562 print " ";
2563 }
eaace00e 2564 $name = $theme_name[$count];
2eec12b5 2565 $num_spaces = 35 - length($name);
eaace00e 2566 for ( $i = 0 ; $i < $num_spaces ; $i++ ) {
2567 $name = $name . " ";
2568 }
2569
2570 print " $count. $name";
2571 print "($theme_path[$count])\n";
2572
2573 $count++;
ccfb2029 2574 }
eaace00e 2575 } elsif ( $input =~ /^\s*m\s*[0-9]+/i ) {
2576 $old_def = $theme_default;
2577 $theme_default = $input;
2578 $theme_default =~ s/^\s*m\s*//;
2579 if ( ( $theme_default > $#theme_name ) || ( $theme_default < 0 ) ) {
2580 print "Cannot set default theme to $theme_default. That theme does not exist.\n";
2581 $theme_default = $old_def;
ccfb2029 2582 }
eaace00e 2583 } elsif ( $input =~ /^\s*\+/ ) {
2584 print "What is the name of this theme: ";
2585 $name = <STDIN>;
85645192 2586 $name =~ s/[\r\n]//g;
eaace00e 2587 $theme_name[ $#theme_name + 1 ] = $name;
2588 print "Be sure to put ../themes/ before the filename.\n";
2589 print "What file is this stored in (ex: ../themes/default_theme.php): ";
2590 $name = <STDIN>;
85645192 2591 $name =~ s/[\r\n]//g;
eaace00e 2592 $theme_path[ $#theme_path + 1 ] = $name;
2593 } elsif ( $input =~ /^\s*-\s*[0-9]?/ ) {
2594 if ( $input =~ /[0-9]+\s*$/ ) {
2595 $rem_num = $input;
2596 $rem_num =~ s/^\s*-\s*//g;
2597 $rem_num =~ s/\s*$//;
2598 } else {
2599 $rem_num = $#theme_name;
ccfb2029 2600 }
eaace00e 2601 if ( $rem_num == $theme_default ) {
2602 print "You cannot remove the default theme!\n";
2603 } else {
2604 $count = 0;
2605 @new_theme_name = ();
2606 @new_theme_path = ();
2607 while ( $count <= $#theme_name ) {
2608 if ( $count != $rem_num ) {
2609 @new_theme_name = ( @new_theme_name, $theme_name[$count] );
2610 @new_theme_path = ( @new_theme_path, $theme_path[$count] );
2611 }
2612 $count++;
2613 }
2614 @theme_name = @new_theme_name;
2615 @theme_path = @new_theme_path;
2616 if ( $theme_default > $rem_num ) {
2617 $theme_default--;
2618 }
8442ac08 2619 }
eaace00e 2620 } elsif ( $input =~ /^\s*t\s*/i ) {
2621 print "\nStarting detection...\n\n";
2622
2623 opendir( DIR, "../themes" );
2624 @files = grep { /\.php$/i } readdir(DIR);
2625 $cnt = 0;
2626 while ( $cnt <= $#files ) {
2627 $filename = "../themes/" . $files[$cnt];
2628 if ( $filename ne "../themes/index.php" ) {
2629 $found = 0;
2630 for ( $x = 0 ; $x <= $#theme_path ; $x++ ) {
2631 if ( $theme_path[$x] eq $filename ) {
2632 $found = 1;
2633 }
2634 }
2635 if ( $found != 1 ) {
2636 print "** Found theme: $filename\n";
2637 print " What is its name? ";
2638 $nm = <STDIN>;
85645192 2639 $nm =~ s/[\n\r]//g;
eaace00e 2640 $theme_name[ $#theme_name + 1 ] = $nm;
2641 $theme_path[ $#theme_path + 1 ] = $filename;
2642 }
2643 }
2644 $cnt++;
8442ac08 2645 }
eaace00e 2646 print "\n";
2647 for ( $cnt = 0 ; $cnt <= $#theme_path ; $cnt++ ) {
2648 $filename = $theme_path[$cnt];
2649 if ( !( -e $filename ) ) {
2650 print " Removing $filename (file not found)\n";
2651 $offset = 0;
2652 @new_theme_name = ();
2653 @new_theme_path = ();
2654 for ( $x = 0 ; $x < $#theme_path ; $x++ ) {
2655 if ( $theme_path[$x] eq $filename ) {
2656 $offset = 1;
2657 }
2658 if ( $offset == 1 ) {
2659 $new_theme_name[$x] = $theme_name[ $x + 1 ];
2660 $new_theme_path[$x] = $theme_path[ $x + 1 ];
2661 } else {
2662 $new_theme_name[$x] = $theme_name[$x];
2663 $new_theme_path[$x] = $theme_path[$x];
2664 }
2665 }
2666 @theme_name = @new_theme_name;
2667 @theme_path = @new_theme_path;
2668 }
2669 }
2670 print "\nDetection complete!\n\n";
2671
2672 closedir DIR;
2673 } elsif ( $input =~ /^\s*\?\s*/ ) {
2674 print ".-------------------------.\n";
2675 print "| t (detect themes) |\n";
2676 print "| + (add theme) |\n";
2677 print "| - N (remove theme) |\n";
2678 print "| m N (mark default) |\n";
2679 print "| l (list themes) |\n";
2680 print "| d (done) |\n";
2681 print "`-------------------------'\n";
2682 }
2683 print "[theme] command (?=help) > ";
2684 $input = <STDIN>;
85645192 2685 $input =~ s/[\r\n]//g;
eaace00e 2686 }
2687}
ccfb2029 2688
85bacb8f 2689sub command_templates {
2690 print "\nDefine the template sets that you wish to use. If you have added ";
2691 print "a template set of your own, just follow the instructions (?) about how to add ";
2692 print "them. You can also change the default template.\n";
2693
2694 print "\n Available Templates:\n";
2695
2696 $count = 0;
2697 while ( $count <= $#templateset_name ) {
2698 if ( $count == $templateset_default ) {
2699 print " *";
2700 } else {
2701 print " ";
2702 }
2703 if ( $count < 10 ) {
2704 print " ";
2705 }
2706 $name = $templateset_name[$count];
2707 $num_spaces = 35 - length($name);
2708 for ( $i = 0 ; $i < $num_spaces ; $i++ ) {
2709 $name = $name . " ";
2710 }
2711
2712 print " $count. $name";
5e78e498 2713 print "($templateset_id[$count])\n";
85bacb8f 2714
2715 $count++;
2716 }
2717
5e78e498 2718# FIXME: what is this stuff? it is commented out, can we just blast it?
85bacb8f 2719# opendir( DIR, "../templates" );
2720# @files = readdir(DIR);
2721# $pos = 0;
2722#
2723# while ( $cnt <= $#files ) {
2724# if ( -d "../templates/" . $files[$i] && $files[$i] !~ /^\./ && $files[$i] ne "CVS" ) {
2725# $filename = "../templates/" . $files[$cnt];
2726# $found = 0;
5e78e498 2727# for ( $x = 0 ; $x <= $#templateset_id ; $x++ ) {
85bacb8f 2728# if ( $theme_path[$x] eq $filename ) {
2729# $found = 1;
2730# }
2731# }
2732# }
2733# $cnt++;
2734# }
2735# for ( $i = 0 ; $i <= $#files ; $i++ ) {
2736# if ( -d "../templates/" . $files[$i] && $files[$i] !~ /^\./ && $files[$i] ne "CVS" ) {
2737# $match = 0;
2738# for ( $k = 0 ; $k <= $#aTemplateSets ; $k++ ) {
2739# if ( $aTemplateSets[$chosen] eq $files[$i] ) {
2740# $match = 1;
2741# }
2742# }
2743# if ( $match == 0 ) {
2744# $unused_plugins[$pos] = $files[$i];
2745# $pos++;
2746# }
2747# }
2748# }
2749#
2750# for ( $i = 0 ; $i <= $#unused_plugins ; $i++ ) {
2751# $num = $num + 1;
2752# print " $num. $unused_plugins[$i]\n";
2753# }
2754# closedir DIR;
2755
5e78e498 2756 $menu_text = ".-------------------------------------.\n"
2757 . "| t (detect templates set) |\n"
2758 . "| + (add template set) |\n"
2759 . "| - N (remove template set) |\n"
2760 . "| m N (mark default template set) |\n"
2761 . "| l (list template sets) |\n"
2762 . "| d (done) |\n"
2763 . "|-------------------------------------|\n"
2764 . "| where N is a template set number |\n"
2765 . "`-------------------------------------'\n";
85bacb8f 2766 print "\n";
5e78e498 2767 print $menu_text;
85bacb8f 2768 print "\n[template set] command (?=help) > ";
2769
2770 $input = <STDIN>;
2771 $input =~ s/[\r\n]//g;
2772 while ( $input ne "d" ) {
5e78e498 2773
2774 # list template sets
2775 #
85bacb8f 2776 if ( $input =~ /^\s*l\s*/i ) {
5e78e498 2777# LEFT OFF HERE! default is lost after detection.... hmmmm
2778print "DEFAULT INDEX IS " . $templateset_default . "\n";
85bacb8f 2779 $count = 0;
2780 while ( $count <= $#templateset_name ) {
2781 if ( $count == $templateset_default ) {
2782 print " *";
2783 } else {
2784 print " ";
2785 }
2786 if ( $count < 10 ) {
2787 print " ";
2788 }
2789 $name = $templateset_name[$count];
2790 $num_spaces = 35 - length($name);
2791 for ( $i = 0 ; $i < $num_spaces ; $i++ ) {
2792 $name = $name . " ";
2793 }
2794
2795 print " $count. $name";
5e78e498 2796 print "($templateset_id[$count])\n";
85bacb8f 2797
2798 $count++;
2799 }
5e78e498 2800
2801 # mark default template set
2802 #
85bacb8f 2803 } elsif ( $input =~ /^\s*m\s*[0-9]+/i ) {
2804 $old_def = $templateset_default;
2805 $templateset_default = $input;
2806 $templateset_default =~ s/^\s*m\s*//;
2807 if ( ( $templateset_default > $#templateset_name ) || ( $templateset_default < 0 ) ) {
2808 print "Cannot set default template set to $templateset_default. That template set does not exist.\n";
2809 $templateset_default = $old_def;
2810 }
5e78e498 2811
2812 # add template set
2813 #
85bacb8f 2814 } elsif ( $input =~ /^\s*\+/ ) {
5e78e498 2815 print "\nWhat is the name of this template (as shown to your users): ";
85bacb8f 2816 $name = <STDIN>;
2817 $name =~ s/[\r\n]//g;
2818 $templateset_name[ $#templateset_name + 1 ] = $name;
5e78e498 2819 print "\n\nThe directory name should not contain any path information\n"
2820 . "or slashes, and should be the name of the directory that the\n"
2821 . "template set is found in within the SquirrelMail templates\n"
2822 . "directory.\n\n";
2823 print "What directory is this stored in (ex: default_advanced): ";
85bacb8f 2824 $name = <STDIN>;
2825 $name =~ s/[\r\n]//g;
5e78e498 2826 $templateset_id[ $#templateset_id + 1 ] = $name;
2827
2828 # detect template sets
2829 #
85bacb8f 2830 } elsif ( $input =~ /^\s*t\s*/i ) {
2831 print "\nStarting detection...\n\n";
2832 opendir( DIR, "../templates" );
2833 @files = readdir(DIR);
2834 $cnt = 0;
85bacb8f 2835 while ( $cnt <= $#files ) {
2836 if ( -d "../templates/" . $files[$cnt] && $files[$cnt] !~ /^\./ && $files[$cnt] ne "CVS" ) {
5e78e498 2837 $filename = $files[$cnt];
85bacb8f 2838 $found = 0;
5e78e498 2839 for ( $x = 0 ; $x <= $#templateset_id ; $x++ ) {
2840 if ( $templateset_id[$x] eq $filename ) {
85bacb8f 2841 $found = 1;
5e78e498 2842 last;
85bacb8f 2843 }
2844 }
5e78e498 2845 if ( $found != 1) {
85bacb8f 2846 print "** Found template set: $filename\n";
5e78e498 2847 print " What is it's name (as shown to your users)? ";
85bacb8f 2848 $nm = <STDIN>;
2849 $nm =~ s/[\n\r]//g;
5e78e498 2850 $templateset_id[ $#templateset_id + 1 ] = $filename;
85bacb8f 2851 $templateset_name[ $#templateset_name + 1 ] = $nm;
5e78e498 2852# FIXME: why are these two lines here?
2853# $aTemplateSet[ $#templateset_name + 1 ] = $nm;
2854# $aTemplateSet[ $#templateset_id + 1 ] = $filename;
85bacb8f 2855 }
85bacb8f 2856 }
2857 $cnt++;
2858 }
2859 print "\n";
5e78e498 2860 for ( $cnt= 0 ; $cnt <= $#templateset_id ; ) {
2861 $filename = $templateset_id[$cnt];
2862 if ( !(-d change_to_rel_path('SM_PATH . \'templates/' . $filename)) ) {
2863 print " Removing \"$filename\" (template set directory not found)\n";
2864 if ( $templateset_default gt $cnt ) { $templateset_default--; }
2865 elsif ( $templateset_default eq $cnt ) { $templateset_default = 0; }
85bacb8f 2866 $offset = 0;
2867 @new_templateset_name = ();
5e78e498 2868 @new_templateset_id = ();
2869 for ( $x = 0 ; $x < $#templateset_id ; $x++ ) {
2870 if ( $templateset_id[$x] eq $filename ) {
85bacb8f 2871 $offset = 1;
2872 }
2873 if ( $offset == 1 ) {
2874 $new_templateset_name[$x] = $templateset_name[ $x + 1 ];
5e78e498 2875 $new_templateset_id[$x] = $templateset_id[ $x + 1 ];
85bacb8f 2876 } else {
2877 $new_templateset_name[$x] = $templateset_name[$x];
5e78e498 2878 $new_templateset_id[$x] = $templateset_id[$x];
85bacb8f 2879 }
2880 }
2881 @templateset_name = @new_templateset_name;
5e78e498 2882 @templateset_id = @new_templateset_id;
2883 } else { $cnt++; }
85bacb8f 2884 }
2885 print "\nDetection complete!\n\n";
2886
2887 closedir DIR;
5e78e498 2888
2889 # remove template set
2890 #
2891 # undocumented functionality of removing last template set isn't that great
2892 #} elsif ( $input =~ /^\s*-\s*[0-9]?/ ) {
2893 } elsif ( $input =~ /^\s*-\s*[0-9]+/ ) {
85bacb8f 2894 if ( $input =~ /[0-9]+\s*$/ ) {
2895 $rem_num = $input;
2896 $rem_num =~ s/^\s*-\s*//g;
2897 $rem_num =~ s/\s*$//;
2898 } else {
2899 $rem_num = $#templateset_name;
2900 }
2901 if ( $rem_num == $templateset_default ) {
2902 print "You cannot remove the default template set!\n";
2903 } else {
2904 $count = 0;
2905 @new_templateset_name = ();
5e78e498 2906 @new_templateset_id = ();
85bacb8f 2907 while ( $count <= $#templateset_name ) {
2908 if ( $count != $rem_num ) {
2909 @new_templateset_name = ( @new_templateset_name, $templateset_name[$count] );
5e78e498 2910 @new_templateset_id = ( @new_templateset_id, $templateset_id[$count] );
85bacb8f 2911 }
2912 $count++;
2913 }
2914 @templateset_name = @new_templateset_name;
5e78e498 2915 @templateset_id = @new_templateset_id;
85bacb8f 2916 if ( $templateset_default > $rem_num ) {
2917 $templateset_default--;
2918 }
2919 }
5e78e498 2920
2921 # help
2922 #
85bacb8f 2923 } elsif ( $input =~ /^\s*\?\s*/ ) {
5e78e498 2924 print $menu_text;
85bacb8f 2925 }
2926 print "[template set] command (?=help) > ";
2927 $input = <STDIN>;
2928 $input =~ s/[\r\n]//g;
2929 }
2930 return $templateset_default;
2931}
2932
2933
6f3bfa54 2934# Theme - CSS file
2935sub command42 {
eaace00e 2936 print "You may specify a cascading style-sheet (CSS) file to be included\n";
2937 print "on each html page generated by SquirrelMail. The CSS file is useful\n";
2938 print "for specifying a site-wide font. If you're not familiar with CSS\n";
2939 print "files, leave this blank.\n";
2940 print "\n";
2941 print "To clear out an existing value, just type a space for the input.\n";
2942 print "\n";
25be56ab 2943 print "Please be aware of the following: \n";
2944 print " - Relative URLs are relative to the config dir\n";
2945 print " to use the themes directory, use ../themes/css/newdefault.css\n";
2946 print " - To specify a css file defined outside the SquirrelMail source tree\n";
2947 print " use the absolute URL the webserver would use to include the file\n";
2948 print " e.g. http://some.host.com/css/mystyle.css or /css/mystyle.css\n";
8bd9e0dd 2949 print "\n";
eaace00e 2950 print "[$WHT$theme_css$NRM]: $WHT";
2951 $new_theme_css = <STDIN>;
6f3bfa54 2952
eaace00e 2953 if ( $new_theme_css eq "\n" ) {
2954 $new_theme_css = $theme_css;
2955 } else {
85645192 2956 $new_theme_css =~ s/[\r\n]//g;
eaace00e 2957 }
2958 $new_theme_css =~ s/^\s*//;
2959 return $new_theme_css;
2960}
6f3bfa54 2961
81132de8 2962# sets default font size option
2963sub command_default_fontsize {
2964 print "Enter default font size [$WHT$$default_fontsize$NRM]: $WHT";
2965 $new_size = <STDIN>;
2966 if ( $new_size eq "\n" ) {
2967 $new_size = $size;
2968 } else {
2969 $new_size =~ s/[\r\n]//g;
2970 }
2971 return $new_size;
2972}
2973
2974# controls available fontsets
2975sub command_fontsets {
2976 # Greeting
2977 print "You can control fontsets available to end users here.\n";
2978 # set initial $input value
2979 $input = 'l';
2980 while ( $input ne "x" ) {
2981 if ( $input =~ /^\s*a\s*/i ) {
2982 # add new fontset
2983 print "\nFontset name: ";
2984 $name = <STDIN>;
2985 if (! $fontsets{trim($name)}) {
2986 print "Fontset string: ";
2987 $value = <STDIN>;
2988 $fontsets{trim($name)} = trim($value);
2989 } else {
2990 print "\nERROR: Such fontset already exists.\n";
2991 }
2992 } elsif ( $input =~ /^\s*e\s*/i ) {
2993 # edit existing fontset
2994 print "\nFontset name: ";
2995 $name = <STDIN>;
2996 if (! $fontsets{trim($name)}) {
2997 print "\nERROR: No such fontset.\n";
2998 } else {
2999 print "Fontset string [$fontsets{trim($name)}]: ";
3000 $value = <STDIN>;
3001 $fontsets{trim($name)} = trim($value);
3002 }
3003 } elsif ( $input =~ /^\s*d\s*/ ) {
3004 # delete existing fontset
3005 print "\nFontset name: ";
3006 $name = <STDIN>;
3007 if (! $fontsets{trim($name)}) {
3008 print "\nERROR: No such fontset.\n";
3009 } else {
3010 delete $fontsets{trim($name)};
3011 }
3012 } elsif ( $input =~ /^\s*l\s*/ ) {
3013 # list fontsets
3014 print "\nConfigured fontsets:\n";
3015 while (($fontset_name, $fontset_string) = each(%fontsets)) {
3016 print " $fontset_name = $fontset_string\n";
3017 }
3018 print "Default fontset: $default_fontset\n";
3019 } elsif ( $input =~ /^\s*m\s*/ ) {
3020 # set default fontset
3021 print "\nSet default fontset [$default_fontset]: ";
3022 $name = <STDIN>;
3023 if (trim($name) ne '' and ! $fontsets{trim($name)}) {
3024 print "\nERROR: No such fontset.\n";
3025 } else {
3026 $default_fontset = trim($name);
3027 }
3028 } else {
3029 # print available commands on any other input
3030 print "\nAvailable commands:\n";
3031 print " a - Adds new fontset.\n";
3032 print " d - Deletes existing fontset.\n";
3033 print " e - Edits existing fontset.\n";
3034 print " h or ? - Shows this help screen.\n";
3035 print " l - Lists available fontsets.\n";
3036 print " m - Sets default fontset.\n";
3037 print " x - Exits fontset editor mode.\n";
3038 }
3039 print "\nCommand [fontsets] (a,d,e,h,?=help,l,m,x)> ";
3040 $input = <STDIN>;
3041 $input =~ s/[\r\n]//g;
3042 }
3043}
3044
1e0628fb 3045sub command61 {
eaace00e 3046 print "You can now define different LDAP servers.\n";
223cc0f5 3047 print "Please ensure proper permissions for config.php when including\n";
3048 print "sensitive passwords.\n\n";
eaace00e 3049 print "[ldap] command (?=help) > ";
3050 $input = <STDIN>;
85645192 3051 $input =~ s/[\r\n]//g;
eaace00e 3052 while ( $input ne "d" ) {
3053 if ( $input =~ /^\s*l\s*/i ) {
3054 $count = 0;
3055 while ( $count <= $#ldap_host ) {
3056 print "$count. $ldap_host[$count]\n";
3057 print " base: $ldap_base[$count]\n";
3058 if ( $ldap_charset[$count] ) {
3059 print " charset: $ldap_charset[$count]\n";
3060 }
3061 if ( $ldap_port[$count] ) {
3062 print " port: $ldap_port[$count]\n";
3063 }
3064 if ( $ldap_name[$count] ) {
3065 print " name: $ldap_name[$count]\n";
3066 }
3067 if ( $ldap_maxrows[$count] ) {
3068 print " maxrows: $ldap_maxrows[$count]\n";
3069 }
43397658 3070 if ( $ldap_filter[$count] ) {
3071 print " filter: $ldap_filter[$count]\n";
3072 }
30e9932c 3073 if ( $ldap_binddn[$count] ) {
3074 print " binddn: $ldap_binddn[$count]\n";
3075 if ( $ldap_bindpw[$count] ) {
3076 print " bindpw: $ldap_bindpw[$count]\n";
3077 }
3078 }
43397658 3079 if ( $ldap_protocol[$count] ) {
30e9932c 3080 print " protocol: $ldap_protocol[$count]\n";
3081 }
43397658 3082 if ( $ldap_limit_scope[$count] ) {
3083 print " limit_scope: $ldap_limit_scope[$count]\n";
3084 }
327e2d96 3085 if ( $ldap_listing[$count] ) {
3086 print " listing: $ldap_listing[$count]\n";
3087 }
664fd7a0 3088 if ( $ldap_writeable[$count] ) {
3089 print " writeable: $ldap_writeable[$count]\n";
3090 }
593370a4 3091 if ( $ldap_search_tree[$count] ) {
3092 print " search_tree: $ldap_search_tree[$count]\n";
3093 }
3094 if ( $ldap_starttls[$count] ) {
3095 print " starttls: $ldap_starttls[$count]\n";
3096 }
30e9932c 3097
eaace00e 3098 print "\n";
3099 $count++;
a93b12ba 3100 }
eaace00e 3101 } elsif ( $input =~ /^\s*\+/ ) {
3102 $sub = $#ldap_host + 1;
3103
3104 print "First, we need to have the hostname or the IP address where\n";
51abca07 3105 print "this LDAP server resides. Example: ldap.bigfoot.com\n";
3106 print "\n";
3107 print "You can use any URI compatible with your LDAP library. Please\n";
3108 print "note that StartTLS option is not compatible with ldaps and\n";
3109 print "ldapi URIs.\n";
eaace00e 3110 print "hostname: ";
3111 $name = <STDIN>;
85645192 3112 $name =~ s/[\r\n]//g;
eaace00e 3113 $ldap_host[$sub] = $name;
3114
3115 print "\n";
3116
3117 print "Next, we need the server root (base dn). For this, an empty\n";
3118 print "string is allowed.\n";
3119 print "Example: ou=member_directory,o=netcenter.com\n";
3120 print "base: ";
3121 $name = <STDIN>;
85645192 3122 $name =~ s/[\r\n]//g;
eaace00e 3123 $ldap_base[$sub] = $name;
3124
3125 print "\n";
3126
3127 print "This is the TCP/IP port number for the LDAP server. Default\n";
3128 print "port is 389. This is optional. Press ENTER for default.\n";
3129 print "port: ";
3130 $name = <STDIN>;
85645192 3131 $name =~ s/[\r\n]//g;
eaace00e 3132 $ldap_port[$sub] = $name;
3133
3134 print "\n";
3135
3136 print "This is the charset for the server. Default is utf-8. This\n";
3137 print "is also optional. Press ENTER for default.\n";
3138 print "charset: ";
3139 $name = <STDIN>;
85645192 3140 $name =~ s/[\r\n]//g;
eaace00e 3141 $ldap_charset[$sub] = $name;
3142
3143 print "\n";
3144
3145 print "This is the name for the server, used to tag the results of\n";
3146 print "the search. Default it \"LDAP: hostname\". Press ENTER for default\n";
3147 print "name: ";
3148 $name = <STDIN>;
85645192 3149 $name =~ s/[\r\n]//g;
eaace00e 3150 $ldap_name[$sub] = $name;
3151
3152 print "\n";
3153
3154 print "You can specify the maximum number of rows in the search result.\n";
327e2d96 3155 print "Default value is equal to 250 rows. Press ENTER for default.\n";
eaace00e 3156 print "maxrows: ";
3157 $name = <STDIN>;
85645192 3158 $name =~ s/[\r\n]//g;
eaace00e 3159 $ldap_maxrows[$sub] = $name;
3160
43397658 3161
3162 print "\n";
3163
30e9932c 3164 print "If your LDAP server does not like anonymous logins, you can specify bind DN.\n";
3165 print "Default is none, anonymous bind. Press ENTER for default.\n";
3166 print "binddn: ";
3167 $name = <STDIN>;
85645192 3168 $name =~ s/[\r\n]//g;
30e9932c 3169 $ldap_binddn[$sub] = $name;
3170
3171 print "\n";
3172
3173 if ( $ldap_binddn[$sub] ne '' ) {
3174
3175 print "Now, please specify password for that DN.\n";
3176 print "bindpw: ";
3177 $name = <STDIN>;
85645192 3178 $name =~ s/[\r\n]//g;
30e9932c 3179 $ldap_bindpw[$sub] = $name;
3180
3181 print "\n";
3182 }
3183
43397658 3184 print "You can specify bind protocol version here.\n";
30e9932c 3185 print "Default protocol version depends on your php ldap settings.\n";
43397658 3186 print "Press ENTER for default.\n";
30e9932c 3187 print "protocol: ";
3188 $name = <STDIN>;
85645192 3189 $name =~ s/[\r\n]//g;
30e9932c 3190 $ldap_protocol[$sub] = $name;
3191
3192 print "\n";
3193
327e2d96 3194 print "This configuration section allows to set some rarely used\n";
3195 print "options and options specific to some LDAP implementations.\n";
43397658 3196 print "\n";
327e2d96 3197 print "Do you want to set advanced LDAP directory settings? (y/N):";
3198 $ldap_advanced_settings = <STDIN>;
3199 if ( $ldap_advanced_settings =~ /^y\n/i ) {
3200 $ldap_advanced_settings = 'true';
43397658 3201 } else {
327e2d96 3202 $ldap_advanced_settings = 'false';
43397658 3203 }
43397658 3204
327e2d96 3205 if ($ldap_advanced_settings eq 'true') {
3206 print "\n";
3207
3208 print "You can control LDAP directory listing here. This option can\n";
3209 print "be useful if you run small LDAP server and want to provide listing\n";
3210 print "of all addresses stored in LDAP to users of webmail interface.\n";
3211 print "Number of displayed entries is limited by maxrows setting.\n";
3212 print "\n";
3213 print "Don't enable this option for public LDAP directories.\n";
327e2d96 3214 print "\n";
3215 print "Allow listing of LDAP directory? (y/N):";
3216 $name = <STDIN>;
3217 if ( $name =~ /^y\n/i ) {
3218 $name = 'true';
3219 } else {
3220 $name = 'false';
3221 }
3222 $ldap_listing[$sub] = $name;
3223
3224 print "\n";
3225
664fd7a0 3226 print "You can control write access to LDAP address book here. This option can\n";
3227 print "be useful if you run small LDAP server and want to provide writable\n";
3228 print "shared address book stored in LDAP to users of webmail interface.\n";
3229 print "\n";
3230 print "Don't enable this option for public LDAP directories.\n";
3231 print "\n";
3232 print "Allow writing to LDAP directory? (y/N):";
3233 $name = <STDIN>;
3234 if ( $name =~ /^y\n/i ) {
3235 $name = 'true';
3236 } else {
3237 $name = 'false';
3238 }
3239 $ldap_writeable[$sub] = $name;
3240
3241 print "\n";
3242
327e2d96 3243 print "You can specify an additional search filter.\n";
3244 print "This could be something like \"(objectclass=posixAccount)\".\n";
3245 print "No filtering is performed by default. Press ENTER for default.\n";
3246 print "filter: ";
3247 $name = <STDIN>;
3248 $name =~ s/[\r|\n]//g;
3249 $ldap_filter[$sub] = $name;
3250
3251 print "\n";
3252
3253 print "You can control search scope here.\n";
3254 print "This option is specific to Microsoft ADS implementation.\n";
3255 print "It requires use of v3 or newer LDAP protocol.\n";
3256 print "Don't enable it, if you use other LDAP server.\n";
3257 print "\n";
3258 print "Limit ldap scope? (y/N):";
3259 $name = <STDIN>;
3260 if ( $name =~ /^y\n/i ) {
3261 $name = 'true';
3262 } else {
3263 $name = 'false';
3264 }
3265 $ldap_limit_scope[$sub] = $name;
593370a4 3266
3267 print "\n";
3268
3269 print "You can control ldap search type here.\n";
3270 print "Addresses can be searched in entire LDAP subtree (default)\n";
3271 print "or only first level entries are returned.\n";
3272 print "\n";
3273 print "Search entire LDAP subtree? (Y/n):";
3274 $name = <STDIN>;
3275 if ( $name =~ /^n\n/i ) {
3276 $name = 'false';
3277 } else {
3278 $name = 'true';
3279 }
3280 $ldap_search_tree[$sub] = $name;
3281
3282 print "\n";
3283
3284 print "You can control use of StartTLS on LDAP connection here.\n";
3285 print "This option requires use of v3 or newer LDAP protocol and php 4.2+.\n";
3286 print "\n";
3287 print "Use StartTLS? (y/N):";
3288 $name = <STDIN>;
3289 if ( $name =~ /^y\n/i ) {
3290 $name = 'true';
3291 } else {
3292 $name = 'false';
3293 }
3294 $ldap_starttls[$sub] = $name;
327e2d96 3295 }
43397658 3296 print "\n";
3297
eaace00e 3298 } elsif ( $input =~ /^\s*-\s*[0-9]?/ ) {
3299 if ( $input =~ /[0-9]+\s*$/ ) {
3300 $rem_num = $input;
3301 $rem_num =~ s/^\s*-\s*//g;
3302 $rem_num =~ s/\s*$//;
3303 } else {
3304 $rem_num = $#ldap_host;
3305 }
3306 $count = 0;
3307 @new_ldap_host = ();
3308 @new_ldap_base = ();
3309 @new_ldap_port = ();
3310 @new_ldap_name = ();
3311 @new_ldap_charset = ();
3312 @new_ldap_maxrows = ();
43397658 3313 @new_ldap_filter = ();
30e9932c 3314 @new_ldap_bindpw = ();
3315 @new_ldap_binddn = ();
3316 @new_ldap_protocol = ();
43397658 3317 @new_ldap_limit_scope = ();
327e2d96 3318 @new_ldap_listing = ();
664fd7a0 3319 @new_ldap_writeable = ();