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