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