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