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