"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 "