"Fix" so old prefs do not totally kill conf.pl. Should be reverted when everyone...
[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 here so old prefs files don't blow up when running conf.pl
200 ##### Remove after a month or two
201 } elsif ( $options[0] =~ /^aTemplateSet\[[0-9]+\]\[['"]PATH['"]\]/ ) {
202 $sub = $options[0];
203 $sub =~ s/\]\[['"]PATH['"]\]//;
204 $sub =~ s/.*\[//;
205 if ( -e "../templates" ) {
206 $options[1] =~ s/^\.\.\/config/\.\.\/templates/;
207 }
208 $templateset_id[$sub] = $options[1];
209 ##### FIXME: This section here so old prefs files don't blow up when running conf.pl
210 ##### Remove after a month or two
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 # LEFT OFF HERE! default is lost after detection.... hmmmm
2778 print "DEFAULT INDEX IS " . $templateset_default . "\n";
2779 $count = 0;
2780 while ( $count <= $#templateset_name ) {
2781 if ( $count == $templateset_default ) {
2782 print " *";
2783 } else {
2784 print " ";
2785 }
2786 if ( $count < 10 ) {
2787 print " ";
2788 }
2789 $name = $templateset_name[$count];
2790 $num_spaces = 35 - length($name);
2791 for ( $i = 0 ; $i < $num_spaces ; $i++ ) {
2792 $name = $name . " ";
2793 }
2794
2795 print " $count. $name";
2796 print "($templateset_id[$count])\n";
2797
2798 $count++;
2799 }
2800
2801 # mark default template set
2802 #
2803 } elsif ( $input =~ /^\s*m\s*[0-9]+/i ) {
2804 $old_def = $templateset_default;
2805 $templateset_default = $input;
2806 $templateset_default =~ s/^\s*m\s*//;
2807 if ( ( $templateset_default > $#templateset_name ) || ( $templateset_default < 0 ) ) {
2808 print "Cannot set default template set to $templateset_default. That template set does not exist.\n";
2809 $templateset_default = $old_def;
2810 }
2811
2812 # add template set
2813 #
2814 } elsif ( $input =~ /^\s*\+/ ) {
2815 print "\nWhat is the name of this template (as shown to your users): ";
2816 $name = <STDIN>;
2817 $name =~ s/[\r\n]//g;
2818 $templateset_name[ $#templateset_name + 1 ] = $name;
2819 print "\n\nThe directory name should not contain any path information\n"
2820 . "or slashes, and should be the name of the directory that the\n"
2821 . "template set is found in within the SquirrelMail templates\n"
2822 . "directory.\n\n";
2823 print "What directory is this stored in (ex: default_advanced): ";
2824 $name = <STDIN>;
2825 $name =~ s/[\r\n]//g;
2826 $templateset_id[ $#templateset_id + 1 ] = $name;
2827
2828 # detect template sets
2829 #
2830 } elsif ( $input =~ /^\s*t\s*/i ) {
2831 print "\nStarting detection...\n\n";
2832 opendir( DIR, "../templates" );
2833 @files = readdir(DIR);
2834 $cnt = 0;
2835 while ( $cnt <= $#files ) {
2836 if ( -d "../templates/" . $files[$cnt] && $files[$cnt] !~ /^\./ && $files[$cnt] ne "CVS" ) {
2837 $filename = $files[$cnt];
2838 $found = 0;
2839 for ( $x = 0 ; $x <= $#templateset_id ; $x++ ) {
2840 if ( $templateset_id[$x] eq $filename ) {
2841 $found = 1;
2842 last;
2843 }
2844 }
2845 if ( $found != 1) {
2846 print "** Found template set: $filename\n";
2847 print " What is it's name (as shown to your users)? ";
2848 $nm = <STDIN>;
2849 $nm =~ s/[\n\r]//g;
2850 $templateset_id[ $#templateset_id + 1 ] = $filename;
2851 $templateset_name[ $#templateset_name + 1 ] = $nm;
2852 # FIXME: why are these two lines here?
2853 # $aTemplateSet[ $#templateset_name + 1 ] = $nm;
2854 # $aTemplateSet[ $#templateset_id + 1 ] = $filename;
2855 }
2856 }
2857 $cnt++;
2858 }
2859 print "\n";
2860 for ( $cnt= 0 ; $cnt <= $#templateset_id ; ) {
2861 $filename = $templateset_id[$cnt];
2862 if ( !(-d change_to_rel_path('SM_PATH . \'templates/' . $filename)) ) {
2863 print " Removing \"$filename\" (template set directory not found)\n";
2864 if ( $templateset_default gt $cnt ) { $templateset_default--; }
2865 elsif ( $templateset_default eq $cnt ) { $templateset_default = 0; }
2866 $offset = 0;
2867 @new_templateset_name = ();
2868 @new_templateset_id = ();
2869 for ( $x = 0 ; $x < $#templateset_id ; $x++ ) {
2870 if ( $templateset_id[$x] eq $filename ) {
2871 $offset = 1;
2872 }
2873 if ( $offset == 1 ) {
2874 $new_templateset_name[$x] = $templateset_name[ $x + 1 ];
2875 $new_templateset_id[$x] = $templateset_id[ $x + 1 ];
2876 } else {
2877 $new_templateset_name[$x] = $templateset_name[$x];
2878 $new_templateset_id[$x] = $templateset_id[$x];
2879 }
2880 }
2881 @templateset_name = @new_templateset_name;
2882 @templateset_id = @new_templateset_id;
2883 } else { $cnt++; }
2884 }
2885 print "\nDetection complete!\n\n";
2886
2887 closedir DIR;
2888
2889 # remove template set
2890 #
2891 # undocumented functionality of removing last template set isn't that great
2892 #} elsif ( $input =~ /^\s*-\s*[0-9]?/ ) {
2893 } elsif ( $input =~ /^\s*-\s*[0-9]+/ ) {
2894 if ( $input =~ /[0-9]+\s*$/ ) {
2895 $rem_num = $input;
2896 $rem_num =~ s/^\s*-\s*//g;
2897 $rem_num =~ s/\s*$//;
2898 } else {
2899 $rem_num = $#templateset_name;
2900 }
2901 if ( $rem_num == $templateset_default ) {
2902 print "You cannot remove the default template set!\n";
2903 } else {
2904 $count = 0;
2905 @new_templateset_name = ();
2906 @new_templateset_id = ();
2907 while ( $count <= $#templateset_name ) {
2908 if ( $count != $rem_num ) {
2909 @new_templateset_name = ( @new_templateset_name, $templateset_name[$count] );
2910 @new_templateset_id = ( @new_templateset_id, $templateset_id[$count] );
2911 }
2912 $count++;
2913 }
2914 @templateset_name = @new_templateset_name;
2915 @templateset_id = @new_templateset_id;
2916 if ( $templateset_default > $rem_num ) {
2917 $templateset_default--;
2918 }
2919 }
2920
2921 # help
2922 #
2923 } elsif ( $input =~ /^\s*\?\s*/ ) {
2924 print $menu_text;
2925 }
2926 print "[template set] command (?=help) > ";
2927 $input = <STDIN>;
2928 $input =~ s/[\r\n]//g;
2929 }
2930 return $templateset_default;
2931 }
2932
2933
2934 # Theme - CSS file
2935 sub command42 {
2936 print "You may specify a cascading style-sheet (CSS) file to be included\n";
2937 print "on each html page generated by SquirrelMail. The CSS file is useful\n";
2938 print "for specifying a site-wide font. If you're not familiar with CSS\n";
2939 print "files, leave this blank.\n";
2940 print "\n";
2941 print "To clear out an existing value, just type a space for the input.\n";
2942 print "\n";
2943 print "Please be aware of the following: \n";
2944 print " - Relative URLs are relative to the config dir\n";
2945 print " to use the themes directory, use ../themes/css/newdefault.css\n";
2946 print " - To specify a css file defined outside the SquirrelMail source tree\n";
2947 print " use the absolute URL the webserver would use to include the file\n";
2948 print " e.g. http://some.host.com/css/mystyle.css or /css/mystyle.css\n";
2949 print "\n";
2950 print "[$WHT$theme_css$NRM]: $WHT";
2951 $new_theme_css = <STDIN>;
2952
2953 if ( $new_theme_css eq "\n" ) {
2954 $new_theme_css = $theme_css;
2955 } else {
2956 $new_theme_css =~ s/[\r\n]//g;
2957 }
2958 $new_theme_css =~ s/^\s*//;
2959 return $new_theme_css;
2960 }
2961
2962 # sets default font size option
2963 sub command_default_fontsize {
2964 print "Enter default font size [$WHT$$default_fontsize$NRM]: $WHT";
2965 $new_size = <STDIN>;
2966 if ( $new_size eq "\n" ) {
2967 $new_size = $size;
2968 } else {
2969 $new_size =~ s/[\r\n]//g;
2970 }
2971 return $new_size;
2972 }
2973
2974 # controls available fontsets
2975 sub command_fontsets {
2976 # Greeting
2977 print "You can control fontsets available to end users here.\n";
2978 # set initial $input value
2979 $input = 'l';
2980 while ( $input ne "x" ) {
2981 if ( $input =~ /^\s*a\s*/i ) {
2982 # add new fontset
2983 print "\nFontset name: ";
2984 $name = <STDIN>;
2985 if (! $fontsets{trim($name)}) {
2986 print "Fontset string: ";
2987 $value = <STDIN>;
2988 $fontsets{trim($name)} = trim($value);
2989 } else {
2990 print "\nERROR: Such fontset already exists.\n";
2991 }
2992 } elsif ( $input =~ /^\s*e\s*/i ) {
2993 # edit existing fontset
2994 print "\nFontset name: ";
2995 $name = <STDIN>;
2996 if (! $fontsets{trim($name)}) {
2997 print "\nERROR: No such fontset.\n";
2998 } else {
2999 print "Fontset string [$fontsets{trim($name)}]: ";
3000 $value = <STDIN>;
3001 $fontsets{trim($name)} = trim($value);
3002 }
3003 } elsif ( $input =~ /^\s*d\s*/ ) {
3004 # delete existing fontset
3005 print "\nFontset name: ";
3006 $name = <STDIN>;
3007 if (! $fontsets{trim($name)}) {
3008 print "\nERROR: No such fontset.\n";
3009 } else {
3010 delete $fontsets{trim($name)};
3011 }
3012 } elsif ( $input =~ /^\s*l\s*/ ) {
3013 # list fontsets
3014 print "\nConfigured fontsets:\n";
3015 while (($fontset_name, $fontset_string) = each(%fontsets)) {
3016 print " $fontset_name = $fontset_string\n";
3017 }
3018 print "Default fontset: $default_fontset\n";
3019 } elsif ( $input =~ /^\s*m\s*/ ) {
3020 # set default fontset
3021 print "\nSet default fontset [$default_fontset]: ";
3022 $name = <STDIN>;
3023 if (trim($name) ne '' and ! $fontsets{trim($name)}) {
3024 print "\nERROR: No such fontset.\n";
3025 } else {
3026 $default_fontset = trim($name);
3027 }
3028 } else {
3029 # print available commands on any other input
3030 print "\nAvailable commands:\n";
3031 print " a - Adds new fontset.\n";
3032 print " d - Deletes existing fontset.\n";
3033 print " e - Edits existing fontset.\n";
3034 print " h or ? - Shows this help screen.\n";
3035 print " l - Lists available fontsets.\n";
3036 print " m - Sets default fontset.\n";
3037 print " x - Exits fontset editor mode.\n";
3038 }
3039 print "\nCommand [fontsets] (a,d,e,h,?=help,l,m,x)> ";
3040 $input = <STDIN>;
3041 $input =~ s/[\r\n]//g;
3042 }
3043 }
3044
3045 sub command61 {
3046 print "You can now define different LDAP servers.\n";
3047 print "Please ensure proper permissions for config.php when including\n";
3048 print "sensitive passwords.\n\n";
3049 print "[ldap] command (?=help) > ";
3050 $input = <STDIN>;
3051 $input =~ s/[\r\n]//g;
3052 while ( $input ne "d" ) {
3053 if ( $input =~ /^\s*l\s*/i ) {
3054 $count = 0;
3055 while ( $count <= $#ldap_host ) {
3056 print "$count. $ldap_host[$count]\n";
3057 print " base: $ldap_base[$count]\n";
3058 if ( $ldap_charset[$count] ) {
3059 print " charset: $ldap_charset[$count]\n";
3060 }
3061 if ( $ldap_port[$count] ) {
3062 print " port: $ldap_port[$count]\n";
3063 }
3064 if ( $ldap_name[$count] ) {
3065 print " name: $ldap_name[$count]\n";
3066 }
3067 if ( $ldap_maxrows[$count] ) {
3068 print " maxrows: $ldap_maxrows[$count]\n";
3069 }
3070 if ( $ldap_filter[$count] ) {
3071 print " filter: $ldap_filter[$count]\n";
3072 }
3073 if ( $ldap_binddn[$count] ) {
3074 print " binddn: $ldap_binddn[$count]\n";
3075 if ( $ldap_bindpw[$count] ) {
3076 print " bindpw: $ldap_bindpw[$count]\n";
3077 }
3078 }
3079 if ( $ldap_protocol[$count] ) {
3080 print " protocol: $ldap_protocol[$count]\n";
3081 }
3082 if ( $ldap_limit_scope[$count] ) {
3083 print " limit_scope: $ldap_limit_scope[$count]\n";
3084 }
3085 if ( $ldap_listing[$count] ) {
3086 print " listing: $ldap_listing[$count]\n";
3087 }
3088 if ( $ldap_writeable[$count] ) {
3089 print " writeable: $ldap_writeable[$count]\n";
3090 }
3091 if ( $ldap_search_tree[$count] ) {
3092 print " search_tree: $ldap_search_tree[$count]\n";
3093 }
3094 if ( $ldap_starttls[$count] ) {
3095 print " starttls: $ldap_starttls[$count]\n";
3096 }
3097
3098 print "\n";
3099 $count++;
3100 }
3101 } elsif ( $input =~ /^\s*\+/ ) {
3102 $sub = $#ldap_host + 1;
3103
3104 print "First, we need to have the hostname or the IP address where\n";
3105 print "this LDAP server resides. Example: ldap.bigfoot.com\n";
3106 print "\n";
3107 print "You can use any URI compatible with your LDAP library. Please\n";
3108 print "note that StartTLS option is not compatible with ldaps and\n";
3109 print "ldapi URIs.\n";
3110 print "hostname: ";
3111 $name = <STDIN>;
3112 $name =~ s/[\r\n]//g;
3113 $ldap_host[$sub] = $name;
3114
3115 print "\n";
3116
3117 print "Next, we need the server root (base dn). For this, an empty\n";
3118 print "string is allowed.\n";
3119 print "Example: ou=member_directory,o=netcenter.com\n";
3120 print "base: ";
3121 $name = <STDIN>;
3122 $name =~ s/[\r\n]//g;
3123 $ldap_base[$sub] = $name;
3124
3125 print "\n";
3126
3127 print "This is the TCP/IP port number for the LDAP server. Default\n";
3128 print "port is 389. This is optional. Press ENTER for default.\n";
3129 print "port: ";
3130 $name = <STDIN>;
3131 $name =~ s/[\r\n]//g;
3132 $ldap_port[$sub] = $name;
3133
3134 print "\n";
3135
3136 print "This is the charset for the server. Default is utf-8. This\n";
3137 print "is also optional. Press ENTER for default.\n";
3138 print "charset: ";
3139 $name = <STDIN>;
3140 $name =~ s/[\r\n]//g;
3141 $ldap_charset[$sub] = $name;
3142
3143 print "\n";
3144
3145 print "This is the name for the server, used to tag the results of\n";
3146 print "the search. Default it \"LDAP: hostname\". Press ENTER for default\n";
3147 print "name: ";
3148 $name = <STDIN>;
3149 $name =~ s/[\r\n]//g;
3150 $ldap_name[$sub] = $name;
3151
3152 print "\n";
3153
3154 print "You can specify the maximum number of rows in the search result.\n";
3155 print "Default value is equal to 250 rows. Press ENTER for default.\n";
3156 print "maxrows: ";
3157 $name = <STDIN>;
3158 $name =~ s/[\r\n]//g;
3159 $ldap_maxrows[$sub] = $name;
3160
3161
3162 print "\n";
3163
3164 print "If your LDAP server does not like anonymous logins, you can specify bind DN.\n";
3165 print "Default is none, anonymous bind. Press ENTER for default.\n";
3166 print "binddn: ";
3167 $name = <STDIN>;
3168 $name =~ s/[\r\n]//g;
3169 $ldap_binddn[$sub] = $name;
3170
3171 print "\n";
3172
3173 if ( $ldap_binddn[$sub] ne '' ) {
3174
3175 print "Now, please specify password for that DN.\n";
3176 print "bindpw: ";
3177 $name = <STDIN>;
3178 $name =~ s/[\r\n]//g;
3179 $ldap_bindpw[$sub] = $name;
3180
3181 print "\n";
3182 }
3183
3184 print "You can specify bind protocol version here.\n";
3185 print "Default protocol version depends on your php ldap settings.\n";
3186 print "Press ENTER for default.\n";
3187 print "protocol: ";
3188 $name = <STDIN>;
3189 $name =~ s/[\r\n]//g;
3190 $ldap_protocol[$sub] = $name;
3191
3192 print "\n";
3193
3194 print "This configuration section allows to set some rarely used\n";
3195 print "options and options specific to some LDAP implementations.\n";
3196 print "\n";
3197 print "Do you want to set advanced LDAP directory settings? (y/N):";
3198 $ldap_advanced_settings = <STDIN>;
3199 if ( $ldap_advanced_settings =~ /^y\n/i ) {
3200 $ldap_advanced_settings = 'true';
3201 } else {
3202 $ldap_advanced_settings = 'false';
3203 }
3204
3205 if ($ldap_advanced_settings eq 'true') {
3206 print "\n";
3207
3208 print "You can control LDAP directory listing here. This option can\n";
3209 print "be useful if you run small LDAP server and want to provide listing\n";
3210 print "of all addresses stored in LDAP to users of webmail interface.\n";
3211 print "Number of displayed entries is limited by maxrows setting.\n";
3212 print "\n";
3213 print "Don't enable this option for public LDAP directories.\n";
3214 print "\n";
3215 print "Allow listing of LDAP directory? (y/N):";
3216 $name = <STDIN>;
3217 if ( $name =~ /^y\n/i ) {
3218 $name = 'true';
3219 } else {
3220 $name = 'false';
3221 }
3222 $ldap_listing[$sub] = $name;
3223
3224 print "\n";
3225
3226 print "You can control write access to LDAP address book here. This option can\n";
3227 print "be useful if you run small LDAP server and want to provide writable\n";
3228 print "shared address book stored in LDAP to users of webmail interface.\n";
3229 print "\n";
3230 print "Don't enable this option for public LDAP directories.\n";
3231 print "\n";
3232 print "Allow writing to LDAP directory? (y/N):";
3233 $name = <STDIN>;
3234 if ( $name =~ /^y\n/i ) {
3235 $name = 'true';
3236 } else {
3237 $name = 'false';
3238 }
3239 $ldap_writeable[$sub] = $name;
3240
3241 print "\n";
3242
3243 print "You can specify an additional search filter.\n";
3244 print "This could be something like \"(objectclass=posixAccount)\".\n";
3245 print "No filtering is performed by default. Press ENTER for default.\n";
3246 print "filter: ";
3247 $name = <STDIN>;
3248 $name =~ s/[\r|\n]//g;
3249 $ldap_filter[$sub] = $name;
3250
3251 print "\n";
3252
3253 print "You can control search scope here.\n";
3254 print "This option is specific to Microsoft ADS implementation.\n";
3255 print "It requires use of v3 or newer LDAP protocol.\n";
3256 print "Don't enable it, if you use other LDAP server.\n";
3257 print "\n";
3258 print "Limit ldap scope? (y/N):";
3259 $name = <STDIN>;
3260 if ( $name =~ /^y\n/i ) {
3261 $name = 'true';
3262 } else {
3263 $name = 'false';
3264 }
3265 $ldap_limit_scope[$sub] = $name;
3266
3267 print "\n";
3268
3269 print "You can control ldap search type here.\n";
3270 print "Addresses can be searched in entire LDAP subtree (default)\n";
3271 print "or only first level entries are returned.\n";
3272 print "\n";
3273 print "Search entire LDAP subtree? (Y/n):";
3274 $name = <STDIN>;
3275 if ( $name =~ /^n\n/i ) {
3276 $name = 'false';
3277 } else {
3278 $name = 'true';
3279 }
3280 $ldap_search_tree[$sub] = $name;
3281
3282 print "\n";
3283
3284 print "You can control use of StartTLS on LDAP connection here.\n";
3285 print "This option requires use of v3 or newer LDAP protocol and php 4.2+.\n";
3286 print "\n";
3287 print "Use StartTLS? (y/N):";
3288 $name = <STDIN>;
3289 if ( $name =~ /^y\n/i ) {
3290 $name = 'true';
3291 } else {
3292 $name = 'false';
3293 }
3294 $ldap_starttls[$sub] = $name;
3295 }
3296 print "\n";
3297
3298 } elsif ( $input =~ /^\s*-\s*[0-9]?/ ) {
3299 if ( $input =~ /[0-9]+\s*$/ ) {
3300 $rem_num = $input;
3301 $rem_num =~ s/^\s*-\s*//g;
3302 $rem_num =~ s/\s*$//;
3303 } else {
3304 $rem_num = $#ldap_host;
3305 }
3306 $count = 0;
3307 @new_ldap_host = ();
3308 @new_ldap_base = ();
3309 @new_ldap_port = ();
3310 @new_ldap_name = ();
3311 @new_ldap_charset = ();
3312 @new_ldap_maxrows = ();
3313 @new_ldap_filter = ();
3314 @new_ldap_bindpw = ();
3315 @new_ldap_binddn = ();
3316 @new_ldap_protocol = ();
3317 @new_ldap_limit_scope = ();
3318 @new_ldap_listing = ();
3319 @new_ldap_writeable = ();
3320 @new_ldap_search_tree = ();
3321 @new_ldap_starttls = ();
3322
3323 while ( $count <= $#ldap_host ) {
3324 if ( $count != $rem_num ) {
3325 @new_ldap_host = ( @new_ldap_host, $ldap_host[$count] );
3326 @new_ldap_base = ( @new_ldap_base, $ldap_base[$count] );
3327 @new_ldap_port = ( @new_ldap_port, $ldap_port[$count] );
3328 @new_ldap_name = ( @new_ldap_name, $ldap_name[$count] );
3329 @new_ldap_charset = ( @new_ldap_charset, $ldap_charset[$count] );
3330 @new_ldap_maxrows = ( @new_ldap_maxrows, $ldap_maxrows[$count] );
3331 @new_ldap_filter = ( @new_ldap_filter, $ldap_filter[$count] );
3332 @new_ldap_binddn = ( @new_ldap_binddn, $ldap_binddn[$count] );
3333 @new_ldap_bindpw = ( @new_ldap_bindpw, $ldap_bindpw[$count] );
3334 @new_ldap_protocol = ( @new_ldap_protocol, $ldap_protocol[$count] );
3335 @new_ldap_limit_scope = ( @new_ldap_limit_scope, $ldap_limit_scope[$count] );
3336 @new_ldap_listing = ( @new_ldap_listing, $ldap_listing[$count] );
3337 @new_ldap_writeable = ( @new_ldap_writeable, $ldap_writeable[$count] );
3338 @new_ldap_search_tree = ( @new_ldap_search_tree, $ldap_search_tree[$count] );
3339 @new_ldap_starttls = ( @new_ldap_starttls, $ldap_starttls[$count] );
3340 }
3341 $count++;
3342 }
3343 @ldap_host = @new_ldap_host;
3344 @ldap_base = @new_ldap_base;
3345 @ldap_port = @new_ldap_port;
3346 @ldap_name = @new_ldap_name;
3347 @ldap_charset = @new_ldap_charset;
3348 @ldap_maxrows = @new_ldap_maxrows;
3349 @ldap_filter = @new_ldap_filter;
3350 @ldap_binddn = @new_ldap_binddn;
3351 @ldap_bindpw = @new_ldap_bindpw;
3352 @ldap_protocol = @new_ldap_protocol;
3353 @ldap_limit_scope = @new_ldap_limit_scope;
3354 @ldap_listing = @new_ldap_listing;
3355 @ldap_writeable = @new_ldap_writeable;
3356 @ldap_search_tree = @new_ldap_search_tree;
3357 @ldap_starttls = @new_ldap_starttls;
3358
3359 } elsif ( $input =~ /^\s*\?\s*/ ) {
3360 print ".-------------------------.\n";
3361 print "| + (add host) |\n";
3362 print "| - N (remove host) |\n";
3363 print "| l (list hosts) |\n";
3364 print "| d (done) |\n";
3365 print "`-------------------------'\n";
3366 }
3367 print "[ldap] command (?=help) > ";
3368 $input = <STDIN>;
3369 $input =~ s/[\r\n]//g;
3370 }
3371 }
3372
3373 sub command62 {
3374 print "Some of our developers have come up with very good javascript interface\n";
3375 print "for searching through address books, however, our original goals said\n";
3376 print "that we would be 100% HTML. In order to make it possible to use their\n";
3377 print "interface, and yet stick with our goals, we have also written a plain\n";
3378 print "HTML version of the search. Here, you can choose which version to use.\n";
3379 print "\n";
3380 print "This is just the default value. It is also a user option that each\n";
3381 print "user can configure individually\n";
3382 print "\n";
3383
3384 if ( lc($default_use_javascript_addr_book) eq 'true' ) {
3385 $default_value = "y";
3386 } else {
3387 $default_use_javascript_addr_book = 'false';
3388 $default_value = "n";
3389 }
3390 print "Use javascript version by default (y/n) [$WHT$default_value$NRM]: $WHT";
3391 $new_show = <STDIN>;
3392 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
3393 $default_use_javascript_addr_book = 'true';
3394 } else {
3395 $default_use_javascript_addr_book = 'false';
3396 }
3397 return $default_use_javascript_addr_book;
3398 }
3399
3400 # global filebased address book
3401 sub command63 {
3402 print "If you want to use global file address book, then you\n";
3403 print "must set this option to a valid value. If option does\n";
3404 print "not have path elements, system assumes that file is\n";
3405 print "stored in data directory. If relative path is set, it is\n";
3406 print "relative to main SquirrelMail directory. If value is empty,\n";
3407 print "address book is not enabled.\n";
3408 print "\n";
3409
3410 print "[$WHT$abook_global_file$NRM]: $WHT";
3411 $new_abook_global_file = <STDIN>;
3412 if ( $new_abook_global_file eq "\n" ) {
3413 $new_abook_global_file = $abook_global_file;
3414 } else {
3415 $new_abook_global_file =~ s/[\r\n]//g;
3416 }
3417 return $new_abook_global_file;
3418 }
3419
3420 # writing into global filebased abook control
3421 sub command64 {
3422 print "This setting controls writing into global file address\n";
3423 print "book options. Address book file must be writeable by\n";
3424 print "webserver's user, if you want to enable this option.\n";
3425 print "\n";
3426
3427 if ( lc($abook_global_file_writeable) eq 'true' ) {
3428 $default_value = "y";
3429 } else {
3430 $abook_global_file_writeable = 'false';
3431 $default_value = "n";
3432 }
3433 print "Allow writing into global file address book (y/n) [$WHT$default_value$NRM]: $WHT";
3434 $new_show = <STDIN>;
3435 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
3436 $abook_global_file_writeable = 'true';
3437 } else {
3438 $abook_global_file_writeable = 'false';
3439 }
3440 return $abook_global_file_writeable;
3441 }
3442
3443 # listing of global filebased abook control
3444 sub command65 {
3445 print "This setting controls listing of global file address\n";
3446 print "book in addresses page.\n";
3447 print "\n";
3448
3449 if ( lc($abook_global_file_listing) eq 'true' ) {
3450 $default_value = "y";
3451 } else {
3452 $abook_global_file_listing = 'false';
3453 $default_value = "n";
3454 }
3455 print "Allow listing of global file address book (y/n) [$WHT$default_value$NRM]: $WHT";
3456 $new_show = <STDIN>;
3457 if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
3458 $abook_global_file_listing = 'true';
3459 } else {
3460 $abook_global_file_listing = 'false';
3461 }
3462 return $abook_global_file_listing;
3463 }
3464
3465 # controls $abook_file_line_length setting
3466 sub command_abook_file_line_length {
3467 print "This setting controls space allocated to file based address book records.\n";
3468 print "End users will be unable to save address book entry, if total entry size \n";
3469 print "(quoted address book fields + 4 delimiters + linefeed) exceeds allowed \n";
3470 print "address book length size.\n";
3471 print "\n";
3472 print "Same setting is applied to personal and global file based address books.\n";
3473 print "\n";
3474 print "It is strongly recommended to keep default setting value. Change it only\n";
3475 print "if you really want to store address book entries that are bigger than two\n";
3476 print "kilobytes (2048).\n";
3477 print "\n";
3478
3479 print "Enter allowed address book line length [$abook_file_line_length]: ";
3480 my $tmp = <STDIN>;
3481 $tmp = trim($tmp);
3482 # value is not modified, if user hits Enter or enters space
3483 if ($tmp ne '') {
3484 # make sure that input is numeric
3485 if ($tmp =~ /^\d+$/) {
3486 $abook_file_line_length = $tmp;
3487 } else {
3488 print "If you want to change this setting, you must enter number.\n";
3489 print "If you want to keep original setting - enter space.\n\n";
3490 print "Press Enter to continue...";
3491 $tmp = <STDIN>;
3492 }
3493 }
3494 }
3495
3496 sub command91 {
3497 print "If you want to store your users address book details in a database then\n";
3498 print "you need to set this DSN to a valid value. The format for this is:\n";
3499 print "mysql://user:pass\@hostname/dbname\n";
3500 print "Where mysql can be one of the databases PHP supports, the most common\n";
3501 print "of these are mysql, msql and pgsql.\n";
3502 print "Please ensure proper permissions for config.php when including\n";
3503 print "sensitive passwords.\n\n";
3504 print "If the DSN is left empty (hit space and then return) the database\n";
3505 print "related code for address books will not be used.\n";
3506 print "\n";
3507
3508 if ( $addrbook_dsn eq "" ) {
3509 $default_value = "Disabled";
3510 } else {
3511 $default_value = $addrbook_dsn;
3512 }
3513 print "[$WHT$addrbook_dsn$NRM]: $WHT";
3514 $new_dsn = <STDIN>;
3515 if ( $new_dsn eq "\n" ) {
3516 $new_dsn = "";
3517 } else {
3518 $new_dsn =~ s/[\r\n]//g;
3519 $new_dsn =~ s/^\s+$//g;
3520 }
3521 return $new_dsn;
3522 }
3523
3524 sub command92 {
3525 print "This is the name of the table you want to store the address book\n";
3526 print "data in, it defaults to 'address'\n";
3527 print "\n";
3528 print "[$WHT$addrbook_table$NRM]: $WHT";
3529 $new_table = <STDIN>;
3530 if ( $new_table eq "\n" ) {
3531 $new_table = $addrbook_table;
3532 } else {
3533 $new_table =~ s/[\r\n]//g;
3534 }
3535 return $new_table;
3536 }
3537
3538 sub command93 {
3539 print "If you want to store your users preferences in a database then\n";
3540 print "you need to set this DSN to a valid value. The format for this is:\n";
3541 print "mysql://user:pass\@hostname/dbname\n";
3542 print "Where mysql can be one of the databases PHP supports, the most common\n";
3543 print "of these are mysql, msql and pgsql.\n";
3544 print "Please ensure proper permissions for config.php when including\n";
3545 print "sensitive passwords.\n\n";
3546 print "If the DSN is left empty (hit space and then return) the database\n";
3547 print "related code for address books will not be used.\n";
3548 print "\n";
3549
3550 if ( $prefs_dsn eq "" ) {
3551 $default_value = "Disabled";
3552 } else {
3553 $default_value = $prefs_dsn;
3554 }
3555 print "[$WHT$prefs_dsn$NRM]: $WHT";
3556 $new_dsn = <STDIN>;
3557 if ( $new_dsn eq "\n" ) {
3558 $new_dsn = "";
3559 } else {
3560 $new_dsn =~ s/[\r\n]//g;
3561 $new_dsn =~ s/^\s+$//g;
3562 }
3563 return $new_dsn;
3564 }
3565
3566 sub command94 {
3567 print "This is the name of the table you want to store the preferences\n";
3568 print "data in, it defaults to 'userprefs'\n";
3569 print "\n";
3570 print "[$WHT$prefs_table$NRM]: $WHT";
3571 $new_table = <STDIN>;
3572 if ( $new_table eq "\n" ) {
3573 $new_table = $prefs_table;
3574 } else {
3575 $new_table =~ s/[\r\n]//g;
3576 }
3577 return $new_table;
3578 }
3579
3580 sub command95 {
3581 print "This is the name of the field in which you want to store the\n";
3582 print "username of the person the prefs are for. It default to 'user'\n";
3583 print "which clashes with a reserved keyword in PostgreSQL so this\n";
3584 print "will need to be changed for that database at least\n";
3585 print "\n";
3586 print "[$WHT$prefs_user_field$NRM]: $WHT";
3587 $new_field = <STDIN>;
3588 if ( $new_field eq "\n" ) {
3589 $new_field = $prefs_user_field;
3590 } else {
3591 $new_field =~ s/[\r\n]//g;
3592 }
3593 $prefs_user_size = db_pref_size($prefs_user_size);
3594 return $new_field;
3595 }
3596
3597 sub command96 {
3598 print "This is the name of the field in which you want to store the\n";
3599 print "preferences keyword. It defaults to 'prefkey'\n";
3600 print "\n";
3601 print "[$WHT$prefs_key_field$NRM]: $WHT";
3602 $new_field = <STDIN>;
3603 if ( $new_field eq "\n" ) {
3604 $new_field = $prefs_key_field;
3605 } else {
3606 $new_field =~ s/[\r\n]//g;
3607 }
3608 $prefs_key_size = db_pref_size($prefs_key_size);
3609 return $new_field;
3610 }
3611
3612 sub command97 {
3613 print "This is the name of the field in which you want to store the\n";
3614 print "preferences value. It defaults to 'prefval'\n";
3615 print "\n";
3616 print "[$WHT$prefs_val_field$NRM]: $WHT";
3617 $new_field = <STDIN>;
3618 if ( $new_field eq "\n" ) {
3619 $new_field = $prefs_val_field;
3620 } else {
3621 $new_field =~ s/[\r\n]//g;
3622 }
3623 $prefs_val_size = db_pref_size($prefs_val_size);
3624 return $new_field;
3625 }
3626
3627 # routine is used to set database field limits
3628 # it needs one argument
3629 sub db_pref_size() {
3630 my ($size) = $_[0];
3631 print "\nDatabase fields have size limits.\n";
3632 print "\n";
3633 print "What limit is set for this field? [$WHT$size$NRM]: $WHT";
3634 $new_size = <STDIN>;
3635 if ( $new_size eq "\n" ) {
3636 $new_size = $size;
3637 } else {
3638 $new_size =~ s/[\r\n]//g;
3639 }
3640 return $new_size;
3641 }
3642
3643 sub command98 {
3644 print "If you want to store your global address book in a database then\n";
3645 print "you need to set this DSN to a valid value. The format for this is:\n";
3646 print "mysql://user:pass\@hostname/dbname\n";
3647 print "Where mysql can be one of the databases PHP supports, the most common\n";
3648 print "of these are mysql, msql and pgsql.\n";
3649 print "Please ensure proper permissions for config.php when including\n";
3650 print "sensitive passwords.\n\n";
3651 print "If the DSN is left empty (hit space and then return) the database\n";
3652 print "related code for global SQL address book will not be used.\n";
3653 print "\n";
3654
3655 if ( $addrbook_global_dsn eq "" ) {
3656 $default_value = "Disabled";
3657 } else {
3658 $default_value = $addrbook_global_dsn;
3659 }
3660 print "[$WHT$addrbook_global_dsn$NRM]: $WHT";
3661 $new_dsn = <STDIN>;
3662 if ( $new_dsn eq "\n" ) {
3663 $new_dsn = "";
3664 } else {
3665 $new_dsn =~ s/[\r\n]//g;
3666 $new_dsn =~ s/^\s+$//g;
3667 }
3668 return $new_dsn;
3669 }
3670
3671 sub command99 {
3672 print "This is the name of the table you want to store the global address book\n";
3673 print "data in. Default table name is 'global_abook'. Address book uses same\n";
3674 print "database format as personal address book.\n";
3675 print "\n";
3676 print "[$WHT$addrbook_global_table$NRM]: $WHT";
3677 $new_table = <STDIN>;
3678 if ( $new_table eq "\n" ) {
3679 $new_table = $addrbook_global_table;
3680 } else {
3681 $new_table =~ s/[\r\n]//g;
3682 }
3683 return $new_table;
3684 }
3685
3686 sub command910 {
3687 print "This option controls users\' ability to add or modify records stored \n";
3688 print "in global address book\n";
3689
3690 if ( lc($addrbook_global_writeable) eq 'true' ) {
3691 $default_value = "y";
3692 } else {
3693 $default_value = "n";
3694 }
3695 print "Allow writing into global address book? (y/n) [$WHT$default_value$NRM]: $WHT";
3696 $addrbook_global_writeable = <STDIN>;
3697 if ( ( $addrbook_global_writeable =~ /^y\n/i ) || ( ( $addrbook_global_writeable =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
3698 $addrbook_global_writeable = 'true';
3699 } else {
3700 $addrbook_global_writeable = 'false';
3701 }
3702 return $addrbook_global_writeable;
3703 }
3704
3705 sub command911 {
3706 print "Enable this option if you want to see listing of addresses stored \n";
3707 print "in global address book\n";
3708
3709 if ( lc($addrbook_global_listing) eq 'true' ) {
3710 $default_value = "y";
3711 } else {
3712 $default_value = "n";
3713 }
3714 print "Allow listing of global address book? (y/n) [$WHT$default_value$NRM]: $WHT";
3715 $addrbook_global_listing = <STDIN>;
3716 if ( ( $addrbook_global_listing =~ /^y\n/i ) || ( ( $addrbook_global_listing =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
3717 $addrbook_global_listing = 'true';
3718 } else {
3719 $addrbook_global_listing = 'false';
3720 }
3721 return $addrbook_global_listing;
3722 }
3723
3724
3725 # Default language
3726 sub commandA1 {
3727 print "SquirrelMail attempts to set the language in many ways. If it\n";
3728 print "can not figure it out in another way, it will default to this\n";
3729 print "language. Please use the code for the desired language.\n";
3730 print "\n";
3731 print "[$WHT$squirrelmail_default_language$NRM]: $WHT";
3732 $new_squirrelmail_default_language = <STDIN>;
3733 if ( $new_squirrelmail_default_language eq "\n" ) {
3734 $new_squirrelmail_default_language = $squirrelmail_default_language;
3735 } else {
3736 $new_squirrelmail_default_language =~ s/[\r\n]//g;
3737 $new_squirrelmail_default_language =~ s/^\s+$//g;
3738 }
3739 return $new_squirrelmail_default_language;
3740 }
3741 # Default Charset
3742 sub commandA2 {
3743 print "This option controls what character set is used when sending\n";
3744 print "mail and when sending HTML to the browser. Option works only\n";
3745 print "with US English (en_US) translation. Other translations use\n";
3746 print "charsets that are set in translation settings.\n";
3747 print "\n";
3748
3749 print "[$WHT$default_charset$NRM]: $WHT";
3750 $new_default_charset = <STDIN>;
3751 if ( $new_default_charset eq "\n" ) {
3752 $new_default_charset = $default_charset;
3753 } else {
3754 $new_default_charset =~ s/[\r\n]//g;
3755 }
3756 return $new_default_charset;
3757 }
3758 # Alternative language names
3759 sub commandA3 {
3760 print "Enable this option if you want to see localized language names in\n";
3761 print "language selection box. Note, that this option can trigger\n";
3762 print "installation of foreign language support modules in some browsers.\n";
3763 print "\n";
3764
3765 if ( lc($show_alternative_names) eq 'true' ) {
3766 $default_value = "y";
3767 } else {
3768 $default_value = "n";
3769 }
3770 print "Show alternative language names? (y/n) [$WHT$default_value$NRM]: $WHT";
3771 $show_alternative_names = <STDIN>;
3772 if ( ( $show_alternative_names =~ /^y\n/i ) || ( ( $show_alternative_names =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
3773 $show_alternative_names = 'true';
3774 } else {
3775 $show_alternative_names = 'false';
3776 }
3777 return $show_alternative_names;
3778 }
3779
3780 # Aggressive decoding
3781 sub commandA4 {
3782 print "Enable this option if you want to use CPU and memory intensive decoding\n";
3783 print "functions. This option allows reading multibyte charset, that are used\n";
3784 print "in Eastern Asia. SquirrelMail will try to use recode functions here,\n";
3785 print "even when you have disabled use of recode in Tweaks section.\n";
3786 print "\n";
3787
3788 if ( lc($aggressive_decoding) eq 'true' ) {
3789 $default_value = "y";
3790 } else {
3791 $default_value = "n";
3792 }
3793 print "Enable aggressive decoding? (y/n) [$WHT$default_value$NRM]: $WHT";
3794 $aggressive_decoding = <STDIN>;
3795 if ( ( $aggressive_decoding =~ /^y\n/i ) || ( ( $aggressive_decoding =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
3796 $aggressive_decoding = 'true';
3797 } else {
3798 $aggressive_decoding = 'false';
3799 }
3800 return $aggressive_decoding;
3801 }
3802
3803 # Lossy encoding
3804 sub commandA5 {
3805 print "Enable this option if you want to allow lossy charset encoding in message\n";
3806 print "composition pages. This option allows charset conversions when output\n";
3807 print "charset does not support all symbols used in original charset. Symbols\n";
3808 print "unsupported by output charset will be replaced with question marks.\n";
3809 print "\n";
3810
3811 if ( lc($lossy_encoding) eq 'true' ) {
3812 $default_value = "y";
3813 } else {
3814 $default_value = "n";
3815 }
3816 print "Enable lossy encoding? (y/n) [$WHT$default_value$NRM]: $WHT";
3817 $lossy_encoding = <STDIN>;
3818 if ( ( $lossy_encoding =~ /^y\n/i ) || ( ( $lossy_encoding =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
3819 $lossy_encoding = 'true';
3820 } else {
3821 $lossy_encoding = 'false';
3822 }
3823 return $lossy_encoding;
3824 }
3825
3826 # display html emails in iframe
3827 sub commandB2 {
3828 print "This option can enable html email rendering inside iframe.\n";
3829 print "Inline frames are used in order to provide sandbox environment";
3830 print "for html code included in html formated emails.";
3831 print "Option is experimental and might have glitches in some parts of code.";
3832 print "\n";
3833
3834 if ( lc($use_iframe) eq 'true' ) {
3835 $default_value = "y";
3836 } else {
3837 $default_value = "n";
3838 }
3839 print "Display html emails in iframe? (y/n) [$WHT$default_value$NRM]: $WHT";
3840 $use_iframe = <STDIN>;
3841 if ( ( $use_iframe =~ /^y\n/i ) || ( ( $use_iframe =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
3842 $use_iframe = 'true';
3843 } else {
3844 $use_iframe = 'false';
3845 }
3846 return $use_iframe;
3847 }
3848 # use icons
3849 sub commandB3 {
3850 print "Enabling this option will cause icons to be used instead of text\n";
3851 print "markers next to each message in mailbox lists that represent\n";
3852 print "new, read, flagged, and deleted messages, as well as those that\n";
3853 print "have been replied to and forwarded. Icons are also used next to\n";
3854 print "(un)expanded folders in the folder list (Oldway = false). These\n";
3855 print "icons are quite small, but will obviously be more of a resource\n";
3856 print "drain than text markers.\n";
3857 print "\n";
3858
3859 if ( lc($use_icons) eq 'true' ) {
3860 $default_value = "y";
3861 } else {
3862 $default_value = "n";
3863 }
3864 print "Use icons? (y/n) [$WHT$default_value$NRM]: $WHT";
3865 $use_icons = <STDIN>;
3866 if ( ( $use_icons =~ /^y\n/i ) || ( ( $use_icons =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
3867 $use_icons = 'true';
3868 } else {
3869 $use_icons = 'false';
3870 }
3871 return $use_icons;
3872 }
3873 # php recode
3874 sub commandB4 {
3875 print "Enable this option if you want to use php recode functions to read\n";
3876 print "emails written in charset that differs from the one that is set in\n";
3877 print "translation selected by user. Code is experimental, it might cause\n";
3878 print "errors, if email contains charset unsupported by recode or if your\n";
3879 print "php does not have recode support.\n";
3880 print "\n";
3881
3882 if ( lc($use_php_recode) eq 'true' ) {
3883 $default_value = "y";
3884 } else {
3885 $default_value = "n";
3886 }
3887 print "Use php recode functions? (y/n) [$WHT$default_value$NRM]: $WHT";
3888 $use_php_recode = <STDIN>;
3889 if ( ( $use_php_recode =~ /^y\n/i ) || ( ( $use_php_recode =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
3890 $use_php_recode = 'true';
3891 } else {
3892 $use_php_recode = 'false';
3893 }
3894 return $use_php_recode;
3895 }
3896 # php iconv
3897 sub commandB5 {
3898 print "Enable this option if you want to use php iconv functions to read\n";
3899 print "emails written in charset that differs from the one that is set in\n";
3900 print "translation selected by user. Code is experimental, it works only\n";
3901 print "with translations that use utf-8 charset. Code might cause errors,\n";
3902 print "if email contains charset unsupported by iconv or if your php does\n";
3903 print "not have iconv support.\n";
3904 print "\n";
3905
3906 if ( lc($use_php_iconv) eq 'true' ) {
3907 $default_value = "y";
3908 } else {
3909 $default_value = "n";
3910 }
3911 print "Use php iconv functions? (y/n) [$WHT$default_value$NRM]: $WHT";
3912 $use_php_iconv = <STDIN>;
3913 if ( ( $use_php_iconv =~ /^y\n/i ) || ( ( $use_php_iconv =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
3914 $use_php_iconv = 'true';
3915 } else {
3916 $use_php_iconv = 'false';
3917 }
3918 return $use_php_iconv;
3919 }
3920
3921 # configtest block
3922 sub commandB6 {
3923 print "Enable this option if you want to check SquirrelMail configuration\n";
3924 print "remotely with configtest.php script.\n";
3925 print "\n";
3926
3927 if ( lc($allow_remote_configtest) eq 'true' ) {
3928 $default_value = "y";
3929 } else {
3930 $default_value = "n";
3931 }
3932 print "Allow remote configuration tests? (y/n) [$WHT$default_value$NRM]: $WHT";
3933 $allow_remote_configtest = <STDIN>;
3934 if ( ( $allow_remote_configtest =~ /^y\n/i ) || ( ( $allow_remote_configtest =~ /^\n/ ) && ( $default_value eq "y" ) ) ) {
3935 $allow_remote_configtest = 'true';
3936 } else {
3937 $allow_remote_configtest = 'false';
3938 }
3939 return $allow_remote_configtest;
3940 }
3941
3942 # Default Icon theme
3943 sub commandB7 {
3944 print "You may change the path to the default icon theme to be used, if icons\n";
3945 print "have been enabled. This theme will be used when an icon cannot be\n";
3946 print "found in the current theme, or when no icon theme is specified. If\n";
3947 print "left blank, and icons are enabled, the default theme will be used\n";
3948 print "from images/themes/default/.\n";
3949 print "\n";
3950 print "To clear out an existing value, just type a space for the input.\n";
3951 print "\n";
3952 print "Please be aware of the following: \n";
3953 print " - Relative URLs are relative to the config dir\n";
3954 print " to use the icon themes directory, use ../images/themes/newtheme/\n";
3955 print " - The icon theme may be outside the SquirrelMail directory, but\n";
3956 print " it must be web accessible.\n";
3957 print "[$WHT$icon_theme_def$NRM]: $WHT";
3958 $new_icon_theme_def = <STDIN>;
3959
3960 if ( $new_icon_theme_def eq "\n" ) {
3961 $new_icon_theme_def = $icon_theme_def;
3962 } else {
3963 $new_icon_theme_def =~ s/[\r\n]//g;
3964 }
3965 $new_icon_theme_def =~ s/^\s*//;
3966 return $new_icon_theme_def;
3967 }
3968
3969 sub save_data {
3970 $tab = " ";
3971 if ( open( CF, ">config.php" ) ) {
3972 print CF "<?php\n";
3973 print CF "\n";
3974
3975 print CF "/**\n";
3976 print CF " * SquirrelMail Configuration File\n";
3977 print CF " * Created using the configure script, conf.pl\n";
3978 print CF " */\n";
3979 print CF "\n";
3980 print CF "global \$version;\n";
3981
3982 if ($print_config_version) {
3983 print CF "\$config_version = '$print_config_version';\n";
3984 }
3985 # integer
3986 print CF "\$config_use_color = $config_use_color;\n";
3987 print CF "\n";
3988
3989 # string
3990 print CF "\$org_name = \"$org_name\";\n";
3991 # string
3992 print CF "\$org_logo = " . &change_to_SM_path($org_logo) . ";\n";
3993 $org_logo_width |= 0;
3994 $org_logo_height |= 0;
3995 # string
3996 print CF "\$org_logo_width = '$org_logo_width';\n";
3997 # string
3998 print CF "\$org_logo_height = '$org_logo_height';\n";
3999 # string that can contain variables.
4000 print CF "\$org_title = \"$org_title\";\n";
4001 # string
4002 print CF "\$signout_page = " . &change_to_SM_path($signout_page) . ";\n";
4003 # string
4004 print CF "\$frame_top = '$frame_top';\n";
4005 print CF "\n";
4006
4007 print CF "\$provider_uri = '$provider_uri';\n";
4008 print CF "\n";
4009
4010 print CF "\$provider_name = '$provider_name';\n";
4011 print CF "\n";
4012
4013 # string that can contain variables
4014 print CF "\$motd = \"$motd\";\n";
4015 print CF "\n";
4016
4017 # string
4018 print CF "\$squirrelmail_default_language = '$squirrelmail_default_language';\n";
4019 # string
4020 print CF "\$default_charset = '$default_charset';\n";
4021 # boolean
4022 print CF "\$show_alternative_names = $show_alternative_names;\n";
4023 # boolean
4024 print CF "\$aggressive_decoding = $aggressive_decoding;\n";
4025 # boolean
4026 print CF "\$lossy_encoding = $lossy_encoding;\n";
4027 print CF "\n";
4028
4029 # string
4030 print CF "\$domain = '$domain';\n";
4031 # string
4032 print CF "\$imapServerAddress = '$imapServerAddress';\n";
4033 # integer
4034 print CF "\$imapPort = $imapPort;\n";
4035 # boolean
4036 print CF "\$useSendmail = $useSendmail;\n";
4037 # string
4038 print CF "\$smtpServerAddress = '$smtpServerAddress';\n";
4039 # integer
4040 print CF "\$smtpPort = $smtpPort;\n";
4041 # string
4042 print CF "\$sendmail_path = '$sendmail_path';\n";
4043 # string
4044 print CF "\$sendmail_args = '$sendmail_args';\n";
4045 # boolean
4046 # print CF "\$use_authenticated_smtp = $use_authenticated_smtp;\n";
4047 # boolean
4048 print CF "\$pop_before_smtp = $pop_before_smtp;\n";
4049 # string
4050 print CF "\$imap_server_type = '$imap_server_type';\n";
4051 # boolean
4052 print CF "\$invert_time = $invert_time;\n";
4053 # string
4054 print CF "\$optional_delimiter = '$optional_delimiter';\n";
4055 # string
4056 print CF "\$encode_header_key = '$encode_header_key';\n";
4057 print CF "\n";
4058
4059 # string
4060 print CF "\$default_folder_prefix = '$default_folder_prefix';\n";
4061 # string
4062 print CF "\$trash_folder = '$trash_folder';\n";
4063 # string
4064 print CF "\$sent_folder = '$sent_folder';\n";
4065 # string
4066 print CF "\$draft_folder = '$draft_folder';\n";
4067 # boolean
4068 print CF "\$default_move_to_trash = $default_move_to_trash;\n";
4069 # boolean
4070 print CF "\$default_move_to_sent = $default_move_to_sent;\n";
4071 # boolean
4072 print CF "\$default_save_as_draft = $default_save_as_draft;\n";
4073 # boolean
4074 print CF "\$show_prefix_option = $show_prefix_option;\n";
4075 # boolean
4076 print CF "\$list_special_folders_first = $list_special_folders_first;\n";
4077 # boolean
4078 print CF "\$use_special_folder_color = $use_special_folder_color;\n";
4079 # boolean
4080 print CF "\$auto_expunge = $auto_expunge;\n";
4081 # boolean
4082 print CF "\$default_sub_of_inbox = $default_sub_of_inbox;\n";
4083 # boolean
4084 print CF "\$show_contain_subfolders_option = $show_contain_subfolders_option;\n";
4085 # integer
4086 print CF "\$default_unseen_notify = $default_unseen_notify;\n";
4087 # integer
4088 print CF "\$default_unseen_type = $default_unseen_type;\n";
4089 # boolean
4090 print CF "\$auto_create_special = $auto_create_special;\n";
4091 # boolean
4092 print CF "\$delete_folder = $delete_folder;\n";
4093 # boolean
4094 print CF "\$noselect_fix_enable = $noselect_fix_enable;\n";
4095
4096 print CF "\n";
4097
4098 # string
4099 print CF "\$data_dir = " . &change_to_SM_path($data_dir) . ";\n";
4100 # string that can contain a variable
4101 print CF "\$attachment_dir = " . &change_to_SM_path($attachment_dir) . ";\n";
4102 # integer
4103 print CF "\$dir_hash_level = $dir_hash_level;\n";
4104 # string
4105 print CF "\$default_left_size = '$default_left_size';\n";
4106 # boolean
4107 print CF "\$force_username_lowercase = $force_username_lowercase;\n";
4108 # boolean
4109 print CF "\$default_use_priority = $default_use_priority;\n";
4110 # boolean
4111 print CF "\$hide_sm_attributions = $hide_sm_attributions;\n";
4112 # boolean
4113 print CF "\$default_use_mdn = $default_use_mdn;\n";
4114 # boolean
4115 print CF "\$edit_identity = $edit_identity;\n";
4116 # boolean
4117 print CF "\$edit_name = $edit_name;\n";
4118 # boolean
4119 print CF "\$hide_auth_header = $hide_auth_header;\n";
4120 # boolean
4121 print CF "\$disable_thread_sort = $disable_thread_sort;\n";
4122 # boolean
4123 print CF "\$disable_server_sort = $disable_server_sort;\n";
4124 # boolean
4125 print CF "\$allow_charset_search = $allow_charset_search;\n";
4126 # integer
4127 print CF "\$allow_advanced_search = $allow_advanced_search;\n";
4128 print CF "\n";
4129 # integer
4130 print CF "\$time_zone_type = $time_zone_type;\n";
4131 print CF "\n";
4132 # string
4133 print CF "\$config_location_base = '$config_location_base';\n";
4134 print CF "\n";
4135
4136 # all plugins are strings
4137 for ( $ct = 0 ; $ct <= $#plugins ; $ct++ ) {
4138 print CF "\$plugins[] = '$plugins[$ct]';\n";
4139 }
4140 print CF "\n";
4141
4142 # strings
4143 print CF "\$theme_css = " . &change_to_SM_path($theme_css) . ";\n";
4144 if ( $theme_default eq '' ) { $theme_default = '0'; }
4145 print CF "\$theme_default = $theme_default;\n";
4146
4147 for ( $count = 0 ; $count <= $#theme_name ; $count++ ) {
4148 print CF "\$theme[$count]['PATH'] = " . &change_to_SM_path($theme_path[$count]) . ";\n";
4149 # escape theme name so it can contain single quotes.
4150 $esc_name = $theme_name[$count];
4151 $esc_name =~ s/\\/\\\\/g;
4152 $esc_name =~ s/'/\\'/g;
4153 print CF "\$theme[$count]['NAME'] = '$esc_name';\n";
4154 }
4155 print CF "\n";
4156
4157 if ( $templateset_default eq '' ) { $templateset_default = '0'; }
4158 print CF "\$templateset_default = $templateset_default;\n";
4159
4160 for ( $count = 0 ; $count <= $#templateset_name ; $count++ ) {
4161 print CF "\$aTemplateSet[$count]['ID'] = '" . $templateset_id[$count] . "';\n";
4162 # escape theme name so it can contain single quotes.
4163 $esc_name = $templateset_name[$count];
4164 $esc_name =~ s/\\/\\\\/g;
4165 $esc_name =~ s/'/\\'/g;
4166 print CF "\$aTemplateSet[$count]['NAME'] = '$esc_name';\n";
4167 }
4168 print CF "\n";
4169
4170
4171 # integer
4172 print CF "\$default_fontsize = '$default_fontsize';\n";
4173 # string
4174 print CF "\$default_fontset = '$default_fontset';\n";
4175 print CF "\n";
4176 # assoc. array (maybe initial value should be set somewhere else)
4177 print CF '$fontsets = array();'."\n";
4178 while (($fontset_name, $fontset_value) = each(%fontsets)) {
4179 print CF "\$fontsets\['$fontset_name'\] = '$fontset_value';\n";
4180 }
4181 print CF "\n";
4182
4183 ## Address books
4184 # boolean
4185 print CF "\$default_use_javascript_addr_book = $default_use_javascript_addr_book;\n";
4186 for ( $count = 0 ; $count <= $#ldap_host ; $count++ ) {
4187 print CF "\$ldap_server[$count] = array(\n";
4188 # string
4189 print CF " 'host' => '$ldap_host[$count]',\n";
4190 # string
4191 print CF " 'base' => '$ldap_base[$count]'";
4192 if ( $ldap_name[$count] ) {
4193 print CF ",\n";
4194 # string
4195 print CF " 'name' => '$ldap_name[$count]'";
4196 }
4197 if ( $ldap_port[$count] ) {
4198 print CF ",\n";
4199 # integer
4200 print CF " 'port' => $ldap_port[$count]";
4201 }
4202 if ( $ldap_charset[$count] ) {
4203 print CF ",\n";
4204 # string
4205 print CF " 'charset' => '$ldap_charset[$count]'";
4206 }
4207 if ( $ldap_maxrows[$count] ) {
4208 print CF ",\n";
4209 # integer
4210 print CF " 'maxrows' => $ldap_maxrows[$count]";
4211 }
4212 # string
4213 if ( $ldap_filter[$count] ) {
4214 print CF ",\n";
4215 print CF " 'filter' => '$ldap_filter[$count]'";
4216 }
4217 if ( $ldap_binddn[$count] ) {
4218 print CF ",\n";
4219 # string
4220 print CF " 'binddn' => '$ldap_binddn[$count]'";
4221 if ( $ldap_bindpw[$count] ) {
4222 print CF ",\n";
4223 # string
4224 print CF " 'bindpw' => '$ldap_bindpw[$count]'";
4225 }
4226 }
4227 if ( $ldap_protocol[$count] ) {
4228 print CF ",\n";
4229 # integer
4230 print CF " 'protocol' => $ldap_protocol[$count]";
4231 }
4232 if ( $ldap_limit_scope[$count] ) {
4233 print CF ",\n";
4234 # boolean
4235 print CF " 'limit_scope' => $ldap_limit_scope[$count]";
4236 }
4237 if ( $ldap_listing[$count] ) {
4238 print CF ",\n";
4239 # boolean
4240 print CF " 'listing' => $ldap_listing[$count]";
4241 }
4242 if ( $ldap_writeable[$count] ) {
4243 print CF ",\n";
4244 # boolean
4245 print CF " 'writeable' => $ldap_writeable[$count]";
4246 }
4247 if ( $ldap_search_tree[$count] ) {
4248 print CF ",\n";
4249 # integer
4250 print CF " 'search_tree' => $ldap_search_tree[$count]";
4251 }
4252 if ( $ldap_listing[$count] ) {
4253 print CF ",\n";
4254 # boolean
4255 print CF " 'starttls' => $ldap_starttls[$count]";
4256 }
4257 print CF "\n";
4258 print CF ");\n";
4259 print CF "\n";
4260 }
4261
4262 # string
4263 print CF "\$addrbook_dsn = '$addrbook_dsn';\n";
4264 # string
4265 print CF "\$addrbook_table = '$addrbook_table';\n\n";
4266 # string
4267 print CF "\$prefs_dsn = '$prefs_dsn';\n";
4268 # string
4269 print CF "\$prefs_table = '$prefs_table';\n";
4270 # string
4271 print CF "\$prefs_user_field = '$prefs_user_field';\n";
4272 # integer
4273 print CF "\$prefs_user_size = $prefs_user_size;\n";
4274 # string
4275 print CF "\$prefs_key_field = '$prefs_key_field';\n";
4276 # integer
4277 print CF "\$prefs_key_size = $prefs_key_size;\n";
4278 # string
4279 print CF "\$prefs_val_field = '$prefs_val_field';\n";
4280 # integer
4281 print CF "\$prefs_val_size = $prefs_val_size;\n\n";
4282 # string
4283 print CF "\$addrbook_global_dsn = '$addrbook_global_dsn';\n";
4284 # string
4285 print CF "\$addrbook_global_table = '$addrbook_global_table';\n";
4286 # boolean
4287 print CF "\$addrbook_global_writeable = $addrbook_global_writeable;\n";
4288 # boolean
4289 print CF "\$addrbook_global_listing = $addrbook_global_listing;\n\n";
4290 # string
4291 print CF "\$abook_global_file = '$abook_global_file';\n";
4292 # boolean
4293 print CF "\$abook_global_file_writeable = $abook_global_file_writeable;\n\n";
4294 # boolean
4295 print CF "\$abook_global_file_listing = $abook_global_file_listing;\n\n";
4296 # integer
4297 print CF "\$abook_file_line_length = $abook_file_line_length;\n\n";
4298 # boolean
4299 print CF "\$no_list_for_subscribe = $no_list_for_subscribe;\n";
4300
4301 # string
4302 print CF "\$smtp_auth_mech = '$smtp_auth_mech';\n";
4303 print CF "\$smtp_sitewide_user = '". quote_single($smtp_sitewide_user) ."';\n";
4304 print CF "\$smtp_sitewide_pass = '". quote_single($smtp_sitewide_pass) ."';\n";
4305 # string
4306 print CF "\$imap_auth_mech = '$imap_auth_mech';\n";
4307 # boolean
4308 print CF "\$use_imap_tls = $use_imap_tls;\n";
4309 # boolean
4310 print CF "\$use_smtp_tls = $use_smtp_tls;\n";
4311 # string
4312 print CF "\$session_name = '$session_name';\n";
4313
4314 print CF "\n";
4315
4316 # boolean
4317 print CF "\$use_iframe = $use_iframe;\n";
4318 print CF "\n";
4319 # boolean
4320 print CF "\$use_icons = $use_icons;\n";
4321 print CF "\n";
4322 # string
4323 print CF "\$icon_theme_def = " . &change_to_SM_path($icon_theme_def) . ";\n";
4324 # boolean
4325 print CF "\$use_php_recode = $use_php_recode;\n";
4326 print CF "\n";
4327 # boolean
4328 print CF "\$use_php_iconv = $use_php_iconv;\n";
4329 print CF "\n";
4330 # boolean
4331 print CF "\$allow_remote_configtest = $allow_remote_configtest;\n";
4332 print CF "\n";
4333
4334 close CF;
4335
4336 print "Data saved in config.php\n";
4337 } else {
4338 print "Error saving config.php: $!\n";
4339 }
4340 }
4341
4342 sub set_defaults {
4343 clear_screen();
4344 print $WHT. "SquirrelMail Configuration : " . $NRM;
4345 if ( $config == 1 ) { print "Read: config.php"; }
4346 elsif ( $config == 2 ) { print "Read: config_default.php"; }
4347 print "\n";
4348 print "---------------------------------------------------------\n";
4349
4350 print "While we have been building SquirrelMail, we have discovered some\n";
4351 print "preferences that work better with some servers that don't work so\n";
4352 print "well with others. If you select your IMAP server, this option will\n";
4353 print "set some pre-defined settings for that server.\n";
4354 print "\n";
4355 print "Please note that you will still need to go through and make sure\n";
4356 print "everything is correct. This does not change everything. There are\n";
4357 print "only a few settings that this will change.\n";
4358 print "\n";
4359
4360 $continue = 0;
4361 while ( $continue != 1 ) {
4362 print "Please select your IMAP server:\n";
4363 print " bincimap = Binc IMAP server\n";
4364 print " courier = Courier IMAP server\n";
4365 print " cyrus = Cyrus IMAP server\n";
4366 print " dovecot = Dovecot Secure IMAP server\n";
4367 print " exchange = Microsoft Exchange IMAP server\n";
4368 print " hmailserver = hMailServer\n";
4369 print " macosx = Mac OS X Mailserver\n";
4370 print " mercury32 = Mercury/32\n";
4371 print " uw = University of Washington's IMAP server\n";
4372 print "\n";
4373 print " quit = Do not change anything\n";
4374 print "\n";
4375 print "Command >> ";
4376 $server = <STDIN>;
4377 $server =~ s/[\r\n]//g;
4378
4379 # variable is used to display additional messages.
4380 $message = "";
4381
4382 print "\n";
4383 if ( $server eq "cyrus" ) {
4384 $imap_server_type = "cyrus";
4385 $default_folder_prefix = "";
4386 $trash_folder = "INBOX.Trash";
4387 $sent_folder = "INBOX.Sent";
4388 $draft_folder = "INBOX.Drafts";
4389 $show_prefix_option = false;
4390 $default_sub_of_inbox = true;
4391 $show_contain_subfolders_option = false;
4392 $optional_delimiter = ".";
4393 $disp_default_folder_prefix = "<none>";
4394 $force_username_lowercase = false;
4395
4396 # Delimiter might differ if unixhierarchysep is set to yes.
4397 $message = "\nIf you have enabled unixhierarchysep, you must change delimiter and special folder names.\n";
4398
4399 $continue = 1;
4400 } elsif ( $server eq "uw" ) {
4401 $imap_server_type = "uw";
4402 $default_folder_prefix = "mail/";
4403 $trash_folder = "Trash";
4404 $sent_folder = "Sent";
4405 $draft_folder = "Drafts";
4406 $show_prefix_option = true;
4407 $default_sub_of_inbox = false;
4408 $show_contain_subfolders_option = true;
4409 $optional_delimiter = "/";
4410 $disp_default_folder_prefix = $default_folder_prefix;
4411 $delete_folder = true;
4412 $force_username_lowercase = true;
4413
4414 $continue = 1;
4415 } elsif ( $server eq "exchange" ) {
4416 $imap_server_type = "exchange";
4417 $default_folder_prefix = "";
4418 $default_sub_of_inbox = true;
4419 $trash_folder = "INBOX/Deleted Items";
4420 $sent_folder = "INBOX/Sent Items";
4421 $drafts_folder = "INBOX/Drafts";
4422 $show_prefix_option = false;
4423 $show_contain_subfolders_option = false;
4424 $optional_delimiter = "detect";
4425 $disp_default_folder_prefix = "<none>";
4426 $force_username_lowercase = true;
4427
4428 $continue = 1;
4429 } elsif ( $server eq "courier" ) {
4430 $imap_server_type = "courier";
4431 $default_folder_prefix = "INBOX.";
4432 $trash_folder = "Trash";
4433 $sent_folder = "Sent";
4434 $draft_folder = "Drafts";
4435 $show_prefix_option = false;
4436 $default_sub_of_inbox = false;
4437 $show_contain_subfolders_option = false;
4438 $optional_delimiter = ".";
4439 $disp_default_folder_prefix = $default_folder_prefix;
4440 $delete_folder = true;
4441 $force_username_lowercase = false;
4442
4443 $continue = 1;
4444 } elsif ( $server eq "macosx" ) {
4445 $imap_server_type = "macosx";
4446 $default_folder_prefix = "INBOX/";
4447 $trash_folder = "Trash";
4448 $sent_folder = "Sent";
4449 $draft_folder = "Drafts";
4450 $show_prefix_option = false;
4451 $default_sub_of_inbox = true;
4452 $show_contain_subfolders_option = false;
4453 $optional_delimiter = "detect";
4454 $allow_charset_search = false;
4455 $disp_default_folder_prefix = $default_folder_prefix;
4456
4457 $continue = 1;
4458 } elsif ( $server eq "hmailserver" ) {
4459 $imap_server_type = "hmailserver";
4460 $default_folder_prefix = "";
4461 $trash_folder = "INBOX.Trash";
4462 $sent_folder = "INBOX.Sent";
4463 $draft_folder = "INBOX.Drafts";
4464 $show_prefix_option = false;
4465 $default_sub_of_inbox = true;
4466 $show_contain_subfolders_option = false;
4467 $optional_delimiter = "detect";
4468 $allow_charset_search = false;
4469 $disp_default_folder_prefix = $default_folder_prefix;
4470 $delete_folder = false;
4471 $force_username_lowercase = false;
4472
4473 $continue = 1;
4474 } elsif ( $server eq "mercury32" ) {
4475 $imap_server_type = "mercury32";
4476 $default_folder_prefix = "";
4477 $trash_folder = "Trash";
4478 $sent_folder = "Sent";
4479 $draft_folder = "Drafts";
4480 $show_prefix_option = false;
4481 $default_sub_of_inbox = true;
4482 $show_contain_subfolders_option = true;
4483 $optional_delimiter = "detect";
4484 $delete_folder = true;
4485 $force_username_lowercase = true;
4486
4487 $continue = 1;
4488 } elsif ( $server eq "dovecot" ) {
4489 $imap_server_type = "dovecot";
4490 $default_folder_prefix = "";
4491 $trash_folder = "Trash";
4492 $sent_folder = "Sent";
4493 $draft_folder = "Drafts";
4494 $show_prefix_option = false;
4495 $default_sub_of_inbox = false;
4496 $show_contain_subfolders_option = false;
4497 $delete_folder = false;
4498 $force_username_lowercase = true;
4499 $optional_delimiter = "detect";
4500 $disp_default_folder_prefix = "<none>";
4501
4502 $continue = 1;
4503 } elsif ( $server eq "bincimap" ) {
4504 $imap_server_type = "bincimap";
4505 $default_folder_prefix = "INBOX/";
4506 $trash_folder = "Trash";
4507 $sent_folder = "Sent";
4508 $draft_folder = "Drafts";
4509 $show_prefix_option = false;
4510 $default_sub_of_inbox = false;
4511 $show_contain_subfolders_option = false;
4512 $delete_folder = true;
4513 $force_username_lowercase = false;
4514 $optional_delimiter = "detect";
4515 $disp_default_folder_prefix = $default_folder_prefix;
4516
4517 # Default folder prefix depends on used depot.
4518 $message = "\nIf you use IMAPdir depot, you must set default folder prefix to empty string.\n";
4519
4520 $continue = 1;
4521 } elsif ( $server eq "quit" ) {
4522 $continue = 1;
4523 } else {
4524 $disp_default_folder_prefix = $default_folder_prefix;
4525 print "Unrecognized server: $server\n";
4526 print "\n";
4527 }
4528
4529 print " imap_server_type = $imap_server_type\n";
4530 print " default_folder_prefix = $disp_default_folder_prefix\n";
4531 print " trash_folder = $trash_folder\n";
4532 print " sent_folder = $sent_folder\n";
4533 print " draft_folder = $draft_folder\n";
4534 print " show_prefix_option = $show_prefix_option\n";
4535 print " default_sub_of_inbox = $default_sub_of_inbox\n";
4536 print "show_contain_subfolders_option = $show_contain_subfolders_option\n";
4537 print " optional_delimiter = $optional_delimiter\n";
4538 print " delete_folder = $delete_folder\n";
4539 print " force_username_lowercase = $force_username_lowercase\n";
4540
4541 print "$message";
4542 }
4543 print "\nPress enter to continue...";
4544 $tmp = <STDIN>;
4545 }
4546
4547 # This subroutine corrects relative paths to ensure they
4548 # will work within the SM space. If the path falls within
4549 # the SM directory tree, the SM_PATH variable will be
4550 # prepended to the path, if not, then the path will be
4551 # converted to an absolute path, e.g.
4552 # '../images/logo.gif' --> SM_PATH . 'images/logo.gif'
4553 # '../../someplace/data' --> '/absolute/path/someplace/data'
4554 # 'images/logo.gif' --> SM_PATH . 'config/images/logo.gif'
4555 # '/absolute/path/logo.gif' --> '/absolute/path/logo.gif'
4556 # 'http://whatever/' --> 'http://whatever'
4557 # $some_var/path --> "$some_var/path"
4558 sub change_to_SM_path() {
4559 my ($old_path) = @_;
4560 my $new_path = '';
4561 my @rel_path;
4562 my @abs_path;
4563 my $subdir;
4564
4565 # If the path is absolute, don't bother.
4566 return "\'" . $old_path . "\'" if ( $old_path eq '');
4567 return "\'" . $old_path . "\'" if ( $old_path =~ /^(\/|http)/ );
4568 return "\'" . $old_path . "\'" if ( $old_path =~ /^\w:\// );
4569 return $old_path if ( $old_path =~ /^\'(\/|http)/ );
4570 return $old_path if ( $old_path =~ /^\'\w:\// );
4571 return $old_path if ( $old_path =~ /^SM_PATH/);
4572
4573 if ( $old_path =~ /^\$/ ) {
4574 # check if it's a single var, or a $var/path combination
4575 # if it's $var/path, enclose in ""
4576 if ( $old_path =~ /\// ) {
4577 return '"'.$old_path.'"';
4578 }
4579 return $old_path;
4580 }
4581
4582 # Remove remaining '
4583 $old_path =~ s/\'//g;
4584
4585 # For relative paths, split on '../'
4586 @rel_path = split(/\.\.\//, $old_path);
4587
4588 if ( $#rel_path > 1 ) {
4589 # more than two levels away. Make it absolute.
4590 @abs_path = split(/\//, $dir);
4591
4592 # Lop off the relative pieces of the absolute path..
4593 for ( $i = 0; $i <= $#rel_path; $i++ ) {
4594 pop @abs_path;
4595 shift @rel_path;
4596 }
4597 push @abs_path, @rel_path;
4598 $new_path = "\'" . join('/', @abs_path) . "\'";
4599 } elsif ( $#rel_path > 0 ) {
4600 # it's within the SM tree, prepend SM_PATH
4601 $new_path = $old_path;
4602 $new_path =~ s/^\.\.\//SM_PATH . \'/;
4603 $new_path .= "\'";
4604 } else {
4605 # Last, it's a relative path without any leading '.'
4606 # Prepend SM_PATH and config, since the paths are
4607 # relative to the config directory
4608 $new_path = "SM_PATH . \'config/" . $old_path . "\'";
4609 }
4610 return $new_path;
4611 }
4612
4613
4614 # Change SM_PATH to admin-friendly version, e.g.:
4615 # SM_PATH . 'images/logo.gif' --> '../images/logo.gif'
4616 # SM_PATH . 'config/some.php' --> 'some.php'
4617 # '/absolute/path/logo.gif' --> '/absolute/path/logo.gif'
4618 # 'http://whatever/' --> 'http://whatever'
4619 sub change_to_rel_path() {
4620 my ($old_path) = @_;
4621 my $new_path = $old_path;
4622
4623 if ( $old_path =~ /^SM_PATH/ ) {
4624 # FIXME: the following replacement loses the opening quote mark!
4625 $new_path =~ s/^SM_PATH . \'/\.\.\//;
4626 $new_path =~ s/\.\.\/config\///;
4627 }
4628
4629 return $new_path;
4630 }
4631
4632 # Attempts to auto-detect if a specific auth mechanism is supported.
4633 # Called by 'command112a' and 'command112b'
4634 # ARGS: service-name (IMAP or SMTP), host:port, mech-name (ie. CRAM-MD5)
4635 sub detect_auth_support {
4636 # Try loading IO::Socket
4637 unless (eval("use IO::Socket; 1")) {
4638 print "Perl IO::Socket module is not available.";
4639 return undef;
4640 }
4641 # Misc setup
4642 my $service = shift;
4643 my $host = shift;
4644 my $mech = shift;
4645 # Sanity checks
4646 if ((!defined($service)) or (!defined($host)) or (!defined($mech))) {
4647 # Error - wrong # of args
4648 print "BAD ARGS!\n";
4649 return undef;
4650 }
4651
4652 if ($service eq 'SMTP') {
4653 $cmd = "AUTH $mech\r\n";
4654 $logout = "QUIT\r\n";
4655 } elsif ($service eq 'IMAP') {
4656 $cmd = "A01 AUTHENTICATE $mech\n";
4657 $logout = "C01 LOGOUT\n";
4658 } else {
4659 # unknown service - whoops.
4660 return undef;
4661 }
4662
4663 # Get this show on the road
4664 my $sock=IO::Socket::INET->new($host);
4665 if (!defined($sock)) {
4666 # Connect failed
4667 return undef;
4668 }
4669 my $discard = <$sock>; # Server greeting/banner - who cares..
4670
4671 if ($service eq 'SMTP') {
4672 # Say hello first..
4673 print $sock "HELO $domain\r\n";
4674 $discard = <$sock>; # Yeah yeah, you're happy to see me..
4675 }
4676 print $sock $cmd;
4677
4678 my $response = <$sock>;
4679 chomp($response);
4680 if (!defined($response)) {
4681 return undef;
4682 }
4683
4684 # So at this point, we have a response, and it is (hopefully) valid.
4685 if ($service eq 'SMTP') {
4686 if (($response =~ /^535/) or ($response =~/^502/)) {
4687 # Not supported
4688 print $sock $logout;
4689 close $sock;
4690 return 'NO';
4691 } elsif ($response =~ /^503/) {
4692 #Something went wrong
4693 return undef;
4694 }
4695 } elsif ($service eq 'IMAP') {
4696 if ($response =~ /^A01/) {
4697 # Not supported
4698 print $sock $logout;
4699 close $sock;
4700 return 'NO';
4701 }
4702 } else {
4703 # Unknown service - this shouldn't be able to happen.
4704 close $sock;
4705 return undef;
4706 }
4707
4708 # If it gets here, the mech is supported
4709 print $sock "*\n"; # Attempt to cancel authentication
4710 print $sock $logout; # Try to log out, but we don't really care if this fails
4711 close $sock;
4712 return 'YES';
4713 }
4714
4715 # trims whitespace
4716 # Example code from O'Reilly Perl Cookbook
4717 sub trim {
4718 my @out = @_;
4719 for (@out) {
4720 s/^\s+//;
4721 s/\s+$//;
4722 }
4723 return wantarray ? @out : $out[0];
4724 }
4725
4726 sub clear_screen() {
4727 if ( $^O =~ /^mswin/i) {
4728 system "cls";
4729 } else {
4730 system "clear";
4731 }
4732 }
4733
4734 # checks IMAP mailbox name. Refuses to accept 8bit folders
4735 # returns 0 (folder name is not correct) or 1 (folder name is correct)
4736 sub check_imap_folder($) {
4737 my $folder_name = shift(@_);
4738
4739 if ($folder_name =~ /[\x80-\xFFFF]/) {
4740 print "Folder name contains 8bit characters. Configuration utility requires\n";
4741 print "UTF7-IMAP encoded folder names.\n";
4742 print "Press any key to continue...";
4743 my $tmp = <STDIN>;
4744 return 0;
4745 } elsif ($folder_name =~ /[&\*\%]/) {
4746 # check for ampersand and list-wildcards
4747 print "Folder name contains special UTF7-IMAP characters.\n";
4748 print "Are you sure that folder name is correct? (yN): ";
4749 my $tmp = <STDIN>;
4750 $tmp = lc(trim($tmp));
4751 if ($tmp =~ /^y$/) {
4752 return 1;
4753 } else {
4754 return 0;
4755 }
4756 } else {
4757 return 1;
4758 }
4759 }
4760
4761 # quotes string written in single quotes
4762 sub quote_single($) {
4763 my $string = shift(@_);
4764 $string =~ s/\'/\\'/g;
4765 return $string;
4766 }