23afd0bd |
1 | #!/usr/bin/env perl |
bbd30ac8 |
2 | # conf.pl |
bbd30ac8 |
3 | # |
ba6338ee |
4 | # Copyright (c) 1999-2005 The SquirrelMail Project Team |
6614128e |
5 | # Licensed under the GNU GPL. For full terms see COPYING. |
6 | # |
7 | # A simple configure script to configure SquirrelMail |
245a6892 |
8 | # |
9 | # $Id$ |
598294a7 |
10 | ############################################################ |
6614128e |
11 | $conf_pl_version = "1.4.0"; |
bbd30ac8 |
12 | |
38b69acb |
13 | ############################################################ |
14 | # Check what directory we're supposed to be running in, and |
15 | # change there if necessary. File::Basename has been in |
16 | # Perl since at least 5.003_7, and nobody sane runs anything |
17 | # before that, but just in case. |
18 | ############################################################ |
8bd9e0dd |
19 | my $dir; |
eaace00e |
20 | if ( eval q{require "File/Basename.pm"} ) { |
8bd9e0dd |
21 | $dir = File::Basename::dirname($0); |
38b69acb |
22 | chdir($dir); |
23 | } |
24 | |
598294a7 |
25 | ############################################################ |
d595e32e |
26 | # Some people try to run this as a CGI. That's wrong! |
598294a7 |
27 | ############################################################ |
eaace00e |
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 | } |
d595e32e |
35 | |
8bd9e0dd |
36 | ############################################################ |
37 | # If we got here, use Cwd to get the full directory path |
38 | # (the Basename stuff above will sometimes return '.' as |
598294a7 |
39 | # the base directory, which is not helpful here). |
8bd9e0dd |
40 | ############################################################ |
41 | use Cwd; |
42 | $dir = cwd(); |
43 | |
598294a7 |
44 | |
45 | ############################################################ |
bbd30ac8 |
46 | # First, lets read in the data already in there... |
598294a7 |
47 | ############################################################ |
eaace00e |
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/; |
85645192 |
56 | if ( $var =~ /^([a-z])/i ) { |
eaace00e |
57 | @o = split ( /\s*EQUALS\s*/, $var ); |
58 | if ( $o[0] eq "config_version" ) { |
85645192 |
59 | $o[1] =~ s/[\n\r]//g; |
60 | $o[1] =~ s/[\'\"];\s*$//; |
eaace00e |
61 | $o[1] =~ s/;$//; |
85645192 |
62 | $o[1] =~ s/^[\'\"]//; |
eaace00e |
63 | |
64 | $config_version = $o[1]; |
65 | close(FILE); |
66 | } |
67 | } |
68 | } |
69 | close(FILE); |
70 | |
71 | if ( $config_version ne $conf_pl_version ) { |
f8c17cdd |
72 | clear_screen(); |
eaace00e |
73 | print $WHT. "WARNING:\n" . $NRM; |
74 | print " The file \"config/config.php\" was found, but it is for\n"; |
75 | print " an older version of SquirrelMail. It is possible to still\n"; |
76 | print " read the defaults from this file but be warned that many\n"; |
77 | print " preferences change between versions. It is recommended that\n"; |
78 | print " you start with a clean config.php for each upgrade that you\n"; |
79 | print " do. To do this, just move config/config.php out of the way.\n"; |
80 | print "\n"; |
81 | print "Continue loading with the old config.php [y/N]? "; |
82 | $ctu = <STDIN>; |
83 | |
84 | if ( ( $ctu !~ /^y\n/i ) || ( $ctu =~ /^\n/ ) ) { |
85 | exit; |
86 | } |
87 | |
88 | print "\nDo you want me to stop warning you [y/N]? "; |
89 | $ctu = <STDIN>; |
90 | if ( $ctu =~ /^y\n/i ) { |
91 | $print_config_version = $conf_pl_version; |
92 | } else { |
93 | $print_config_version = $config_version; |
94 | } |
95 | } else { |
96 | $print_config_version = $config_version; |
97 | } |
98 | |
99 | $config = 1; |
100 | open( FILE, "config.php" ); |
101 | } elsif ( -e "config_default.php" ) { |
102 | open( FILE, "config_default.php" ); |
103 | while ( $line = <FILE> ) { |
104 | $line =~ s/^\s+//; |
105 | $line =~ s/^\$//; |
106 | $var = $line; |
107 | |
108 | $var =~ s/=/EQUALS/; |
85645192 |
109 | if ( $var =~ /^([a-z])/i ) { |
eaace00e |
110 | @o = split ( /\s*EQUALS\s*/, $var ); |
111 | if ( $o[0] eq "config_version" ) { |
85645192 |
112 | $o[1] =~ s/[\n\r]//g; |
113 | $o[1] =~ s/[\'\"];\s*$//; |
eaace00e |
114 | $o[1] =~ s/;$//; |
85645192 |
115 | $o[1] =~ s/^[\'\"]//; |
eaace00e |
116 | |
117 | $config_version = $o[1]; |
118 | close(FILE); |
119 | } |
120 | } |
121 | } |
122 | close(FILE); |
123 | |
124 | if ( $config_version ne $conf_pl_version ) { |
f8c17cdd |
125 | clear_screen(); |
eaace00e |
126 | print $WHT. "WARNING:\n" . $NRM; |
127 | print " You are trying to use a 'config_default.php' from an older\n"; |
128 | print " version of SquirrelMail. This is HIGHLY unrecommended. You\n"; |
129 | print " should get the 'config_default.php' that matches the version\n"; |
130 | print " of SquirrelMail that you are running. You can get this from\n"; |
131 | print " the SquirrelMail web page by going to the following URL:\n"; |
132 | print " http://www.squirrelmail.org.\n"; |
133 | print "\n"; |
134 | print "Continue loading with old config_default.php (a bad idea) [y/N]? "; |
135 | $ctu = <STDIN>; |
136 | |
137 | if ( ( $ctu !~ /^y\n/i ) || ( $ctu =~ /^\n/ ) ) { |
138 | exit; |
139 | } |
140 | |
141 | print "\nDo you want me to stop warning you [y/N]? "; |
142 | $ctu = <STDIN>; |
143 | if ( $ctu =~ /^y\n/i ) { |
144 | $print_config_version = $conf_pl_version; |
145 | } else { |
146 | $print_config_version = $config_version; |
147 | } |
148 | } else { |
149 | $print_config_version = $config_version; |
150 | } |
151 | $config = 2; |
152 | open( FILE, "config_default.php" ); |
1e0628fb |
153 | } else { |
eaace00e |
154 | print "No configuration file found. Please get config_default.php\n"; |
155 | print "or config.php before running this again. This program needs\n"; |
156 | print "a default config file to get default values.\n"; |
157 | exit; |
bbd30ac8 |
158 | } |
159 | |
a3439b27 |
160 | # Read and parse the current configuration file |
161 | # (either config.php or config_default.php). |
eaace00e |
162 | while ( $line = <FILE> ) { |
598294a7 |
163 | $line =~ s/^\s+//; |
eaace00e |
164 | $line =~ s/^\$//; |
165 | $var = $line; |
166 | |
167 | $var =~ s/=/EQUALS/; |
85645192 |
168 | if ( $var =~ /^([a-z])/i ) { |
eaace00e |
169 | @options = split ( /\s*EQUALS\s*/, $var ); |
85645192 |
170 | $options[1] =~ s/[\n\r]//g; |
171 | $options[1] =~ s/[\'\"];\s*$//; |
eaace00e |
172 | $options[1] =~ s/;$//; |
85645192 |
173 | $options[1] =~ s/^[\'\"]//; |
ed65d11b |
174 | # de-escape escaped strings |
175 | $options[1] =~ s/\\'/'/g; |
176 | $options[1] =~ s/\\\\/\\/g; |
eaace00e |
177 | |
85645192 |
178 | if ( $options[0] =~ /^theme\[[0-9]+\]\[['"]PATH['"]\]/ ) { |
eaace00e |
179 | $sub = $options[0]; |
85645192 |
180 | $sub =~ s/\]\[['"]PATH['"]\]//; |
eaace00e |
181 | $sub =~ s/.*\[//; |
182 | if ( -e "../themes" ) { |
183 | $options[1] =~ s/^\.\.\/config/\.\.\/themes/; |
a3439b27 |
184 | } |
8bd9e0dd |
185 | $theme_path[$sub] = &change_to_rel_path($options[1]); |
85645192 |
186 | } elsif ( $options[0] =~ /^theme\[[0-9]+\]\[['"]NAME['"]\]/ ) { |
eaace00e |
187 | $sub = $options[0]; |
85645192 |
188 | $sub =~ s/\]\[['"]NAME['"]\]//; |
eaace00e |
189 | $sub =~ s/.*\[//; |
190 | $theme_name[$sub] = $options[1]; |
a1b036d6 |
191 | } elsif ( $options[0] =~ /^plugins\[[0-9]*\]/ ) { |
eaace00e |
192 | $sub = $options[0]; |
193 | $sub =~ s/\]//; |
194 | $sub =~ s/^plugins\[//; |
a1b036d6 |
195 | if ($sub eq '') { |
196 | push @plugins, $options[1]; |
197 | } else { |
198 | $plugins[$sub] = $options[1]; |
199 | } |
eaace00e |
200 | } elsif ( $options[0] =~ /^ldap_server\[[0-9]+\]/ ) { |
201 | $sub = $options[0]; |
202 | $sub =~ s/\]//; |
203 | $sub =~ s/^ldap_server\[//; |
204 | $continue = 0; |
205 | while ( ( $tmp = <FILE> ) && ( $continue != 1 ) ) { |
206 | if ( $tmp =~ /\);\s*$/ ) { |
207 | $continue = 1; |
208 | } |
209 | |
85645192 |
210 | if ( $tmp =~ /^\s*[\'\"]host[\'\"]/i ) { |
211 | $tmp =~ s/^\s*[\'\"]host[\'\"]\s*=>\s*[\'\"]//i; |
212 | $tmp =~ s/[\'\"],?\s*$//; |
213 | $tmp =~ s/[\'\"]\);\s*$//; |
eaace00e |
214 | $host = $tmp; |
85645192 |
215 | } elsif ( $tmp =~ /^\s*[\'\"]base[\'\"]/i ) { |
216 | $tmp =~ s/^\s*[\'\"]base[\'\"]\s*=>\s*[\'\"]//i; |
217 | $tmp =~ s/[\'\"],?\s*$//; |
218 | $tmp =~ s/[\'\"]\);\s*$//; |
eaace00e |
219 | $base = $tmp; |
85645192 |
220 | } elsif ( $tmp =~ /^\s*[\'\"]charset[\'\"]/i ) { |
221 | $tmp =~ s/^\s*[\'\"]charset[\'\"]\s*=>\s*[\'\"]//i; |
222 | $tmp =~ s/[\'\"],?\s*$//; |
223 | $tmp =~ s/[\'\"]\);\s*$//; |
eaace00e |
224 | $charset = $tmp; |
85645192 |
225 | } elsif ( $tmp =~ /^\s*[\'\"]port[\'\"]/i ) { |
226 | $tmp =~ s/^\s*[\'\"]port[\'\"]\s*=>\s*[\'\"]?//i; |
227 | $tmp =~ s/[\'\"]?,?\s*$//; |
228 | $tmp =~ s/[\'\"]?\);\s*$//; |
eaace00e |
229 | $port = $tmp; |
85645192 |
230 | } elsif ( $tmp =~ /^\s*[\'\"]maxrows[\'\"]/i ) { |
231 | $tmp =~ s/^\s*[\'\"]maxrows[\'\"]\s*=>\s*[\'\"]?//i; |
232 | $tmp =~ s/[\'\"]?,?\s*$//; |
233 | $tmp =~ s/[\'\"]?\);\s*$//; |
eaace00e |
234 | $maxrows = $tmp; |
43397658 |
235 | } elsif ( $tmp =~ /^\s*[\'\"]filter[\'\"]/i ) { |
236 | $tmp =~ s/^\s*[\'\"]filter[\'\"]\s*=>\s*[\'\"]?//i; |
237 | $tmp =~ s/[\'\"]?,?\s*$//; |
238 | $tmp =~ s/[\'\"]?\);\s*$//; |
239 | $filter = $tmp; |
85645192 |
240 | } elsif ( $tmp =~ /^\s*[\'\"]name[\'\"]/i ) { |
241 | $tmp =~ s/^\s*[\'\"]name[\'\"]\s*=>\s*[\'\"]//i; |
242 | $tmp =~ s/[\'\"],?\s*$//; |
243 | $tmp =~ s/[\'\"]\);\s*$//; |
eaace00e |
244 | $name = $tmp; |
85645192 |
245 | } elsif ( $tmp =~ /^\s*[\'\"]binddn[\'\"]/i ) { |
246 | $tmp =~ s/^\s*[\'\"]binddn[\'\"]\s*=>\s*[\'\"]//i; |
247 | $tmp =~ s/[\'\"],?\s*$//; |
248 | $tmp =~ s/[\'\"]\);\s*$//; |
30e9932c |
249 | $binddn = $tmp; |
85645192 |
250 | } elsif ( $tmp =~ /^\s*[\'\"]bindpw[\'\"]/i ) { |
251 | $tmp =~ s/^\s*[\'\"]bindpw[\'\"]\s*=>\s*[\'\"]//i; |
252 | $tmp =~ s/[\'\"],?\s*$//; |
253 | $tmp =~ s/[\'\"]\);\s*$//; |
30e9932c |
254 | $bindpw = $tmp; |
85645192 |
255 | } elsif ( $tmp =~ /^\s*[\'\"]protocol[\'\"]/i ) { |
256 | $tmp =~ s/^\s*[\'\"]protocol[\'\"]\s*=>\s*[\'\"]?//i; |
257 | $tmp =~ s/[\'\"]?,?\s*$//; |
258 | $tmp =~ s/[\'\"]?\);\s*$//; |
30e9932c |
259 | $protocol = $tmp; |
43397658 |
260 | } elsif ( $tmp =~ /^\s*[\'\"]limit_scope[\'\"]/i ) { |
261 | $tmp =~ s/^\s*[\'\"]limit_scope[\'\"]\s*=>\s*[\'\"]?//i; |
262 | $tmp =~ s/[\'\"]?,?\s*$//; |
263 | $tmp =~ s/[\'\"]?\);\s*$//; |
264 | $limit_scope = $tmp; |
eaace00e |
265 | } |
a3439b27 |
266 | } |
eaace00e |
267 | $ldap_host[$sub] = $host; |
268 | $ldap_base[$sub] = $base; |
269 | $ldap_name[$sub] = $name; |
270 | $ldap_port[$sub] = $port; |
271 | $ldap_maxrows[$sub] = $maxrows; |
43397658 |
272 | $ldap_filter[$sub] = $filter; |
eaace00e |
273 | $ldap_charset[$sub] = $charset; |
30e9932c |
274 | $ldap_binddn[$sub] = $binddn; |
275 | $ldap_bindpw[$sub] = $bindpw; |
276 | $ldap_protocol[$sub] = $protocol; |
43397658 |
277 | $ldap_limit_scope[$sub] = $limit_scope; |
8bd9e0dd |
278 | } elsif ( $options[0] =~ /^(data_dir|attachment_dir|theme_css|org_logo|signout_page)$/ ) { |
279 | ${ $options[0] } = &change_to_rel_path($options[1]); |
eaace00e |
280 | } else { |
281 | ${ $options[0] } = $options[1]; |
282 | } |
283 | } |
bbd30ac8 |
284 | } |
1a7a2fcc |
285 | close FILE; |
0ae4c1f2 |
286 | |
35aaf666 |
287 | $useSendmail = 'false' if ( lc($useSendmail) ne 'true' ); |
288 | $sendmail_path = "/usr/sbin/sendmail" if ( !$sendmail_path ); |
289 | $pop_before_smtp = 'false' if ( !$pop_before_smtp ); |
290 | $default_unseen_notify = 2 if ( !$default_unseen_notify ); |
291 | $default_unseen_type = 1 if ( !$default_unseen_type ); |
292 | $config_use_color = 0 if ( !$config_use_color ); |
293 | $invert_time = 'false' if ( !$invert_time ); |
294 | $force_username_lowercase = 'false' if ( !$force_username_lowercase ); |
295 | $optional_delimiter = "detect" if ( !$optional_delimiter ); |
296 | $auto_create_special = 'false' if ( !$auto_create_special ); |
297 | $default_use_priority = 'true' if ( !$default_use_priority ); |
298 | $hide_sm_attributions = 'false' if ( !$hide_sm_attributions ); |
299 | $default_use_mdn = 'true' if ( !$default_use_mdn ); |
300 | $delete_folder = 'false' if ( !$delete_folder ); |
301 | $noselect_fix_enable = 'false' if ( !$noselect_fix_enable ); |
302 | $frame_top = "_top" if ( !$frame_top ); |
303 | $provider_uri = '' if ( !$provider_uri ); |
304 | $provider_name = '' if ( !$provider_name ); |
305 | $edit_identity = 'true' if ( !$edit_identity ); |
306 | $edit_name = 'true' if ( !$edit_name ); |
307 | $allow_thread_sort = 'false' if ( !$allow_thread_sort ); |
aacc7bec |
308 | $allow_server_sort = 'false' if ( !$allow_server_sort ); |
35aaf666 |
309 | $no_list_for_subscribe = 'false' if ( !$no_list_for_subscribe ); |
310 | $allow_charset_search = 'true' if ( !$allow_charset_search ); |
66bfb27b |
311 | $allow_advanced_search = 0 if ( !$allow_advanced_search) ; |
35aaf666 |
312 | $prefs_user_field = 'user' if ( !$prefs_user_field ); |
313 | $prefs_key_field = 'prefkey' if ( !$prefs_key_field ); |
314 | $prefs_val_field = 'prefval' if ( !$prefs_val_field ); |
35aaf666 |
315 | $use_smtp_tls= 'false' if ( !$use_smtp_tls); |
316 | $smtp_auth_mech = 'none' if ( !$smtp_auth_mech ); |
317 | $use_imap_tls = 'false' if ( !$use_imap_tls ); |
318 | $imap_auth_mech = 'login' if ( !$imap_auth_mech ); |
319 | $session_name = 'SQMSESSID' if ( !$session_name ); |
71d3f882 |
320 | $skip_SM_header = 'false' if ( !$skip_SM_header ); |
321 | $default_use_javascript_addr_book = 'false' if (! $default_use_javascript_addr_book); |
322 | # since 1.5.0 |
35aaf666 |
323 | $show_alternative_names = 'false' if ( !$show_alternative_names ); |
324 | $available_languages = 'all' if ( !$available_languages ); |
f03f6ee7 |
325 | $aggressive_decoding = 'false' if ( !$aggressive_decoding ); |
35aaf666 |
326 | $advanced_tree = 'false' if ( !$advanced_tree ); |
35aaf666 |
327 | $use_php_recode = 'false' if ( !$use_php_recode ); |
328 | $use_php_iconv = 'false' if ( !$use_php_iconv ); |
71d3f882 |
329 | # since 1.5.1 |
330 | $use_icons = 'false' if ( !$use_icons ); |
ef6ad2a1 |
331 | $use_iframe = 'false' if ( !$use_iframe ); |
71d3f882 |
332 | $lossy_encoding = 'false' if ( !$lossy_encoding ); |
333 | $allow_remote_configtest = 'false' if ( !$allow_remote_configtest ); |
334 | $addrbook_global_table = 'global_abook' if ( !$addrbook_global_table ); |
335 | $addrbook_global_writeable = 'false' if ( !$addrbook_global_writeable ); |
336 | $addrbook_global_listing = 'false' if ( !$addrbook_global_listing ); |
337 | $abook_global_file = '' if ( !$abook_global_file); |
338 | $abook_global_file_writeable = 'false' if ( !$abook_global_file_writeable); |
339 | $abook_global_file_listing = 'true' if ( !$abook_global_file_listing ); |
39d3ec89 |
340 | |
eaace00e |
341 | if ( $ARGV[0] eq '--install-plugin' ) { |
342 | print "Activating plugin " . $ARGV[1] . "\n"; |
ebd13f55 |
343 | push @plugins, $ARGV[1]; |
344 | save_data(); |
345 | exit(0); |
eaace00e |
346 | } elsif ( $ARGV[0] eq '--remove-plugin' ) { |
347 | print "Removing plugin " . $ARGV[1] . "\n"; |
ebd13f55 |
348 | foreach $plugin (@plugins) { |
eaace00e |
349 | if ( $plugin ne $ARGV[1] ) { |
350 | push @newplugins, $plugin; |
ebd13f55 |
351 | } |
352 | } |
353 | @plugins = @newplugins; |
354 | save_data(); |
355 | exit(0); |
356 | } |
357 | |
5b6ae78a |
358 | ##################################################################################### |
eaace00e |
359 | if ( $config_use_color == 1 ) { |
360 | $WHT = "\x1B[37;1m"; |
361 | $NRM = "\x1B[0m"; |
0ecb47e5 |
362 | } else { |
eaace00e |
363 | $WHT = ""; |
364 | $NRM = ""; |
365 | $config_use_color = 2; |
366 | } |
367 | |
8b5c49cd |
368 | while ( ( $command ne "q" ) && ( $command ne "Q" ) && ( $command ne ":q" ) ) { |
f8c17cdd |
369 | clear_screen(); |
eaace00e |
370 | print $WHT. "SquirrelMail Configuration : " . $NRM; |
371 | if ( $config == 1 ) { print "Read: config.php"; } |
372 | elsif ( $config == 2 ) { print "Read: config_default.php"; } |
373 | print " ($print_config_version)\n"; |
374 | print "---------------------------------------------------------\n"; |
375 | |
376 | if ( $menu == 0 ) { |
377 | print $WHT. "Main Menu --\n" . $NRM; |
378 | print "1. Organization Preferences\n"; |
379 | print "2. Server Settings\n"; |
380 | print "3. Folder Defaults\n"; |
381 | print "4. General Options\n"; |
382 | print "5. Themes\n"; |
4272758c |
383 | print "6. Address Books\n"; |
eaace00e |
384 | print "7. Message of the Day (MOTD)\n"; |
385 | print "8. Plugins\n"; |
386 | print "9. Database\n"; |
598294a7 |
387 | print "10. Language settings\n"; |
388 | print "11. Tweaks\n"; |
eaace00e |
389 | print "\n"; |
390 | print "D. Set pre-defined settings for specific IMAP servers\n"; |
391 | print "\n"; |
392 | } elsif ( $menu == 1 ) { |
393 | print $WHT. "Organization Preferences\n" . $NRM; |
b6e0c3b6 |
394 | print "1. Organization Name : $WHT$org_name$NRM\n"; |
395 | print "2. Organization Logo : $WHT$org_logo$NRM\n"; |
396 | print "3. Org. Logo Width/Height : $WHT($org_logo_width/$org_logo_height)$NRM\n"; |
397 | print "4. Organization Title : $WHT$org_title$NRM\n"; |
398 | print "5. Signout Page : $WHT$signout_page$NRM\n"; |
39d3ec89 |
399 | print "6. Top Frame : $WHT$frame_top$NRM\n"; |
400 | print "7. Provider link : $WHT$provider_uri$NRM\n"; |
401 | print "8. Provider name : $WHT$provider_name$NRM\n"; |
0ae4c1f2 |
402 | |
eaace00e |
403 | print "\n"; |
dcc1cc82 |
404 | print "R Return to Main Menu\n"; |
eaace00e |
405 | } elsif ( $menu == 2 ) { |
47a29326 |
406 | print $WHT. "Server Settings\n\n" . $NRM; |
407 | print $WHT . "General" . $NRM . "\n"; |
408 | print "-------\n"; |
409 | print "1. Domain : $WHT$domain$NRM\n"; |
410 | print "2. Invert Time : $WHT$invert_time$NRM\n"; |
411 | print "3. Sendmail or SMTP : $WHT"; |
35aaf666 |
412 | if ( lc($useSendmail) eq 'true' ) { |
eaace00e |
413 | print "Sendmail"; |
414 | } else { |
415 | print "SMTP"; |
416 | } |
417 | print "$NRM\n"; |
47a29326 |
418 | print "\n"; |
598294a7 |
419 | |
47a29326 |
420 | if ( $show_imap_settings ) { |
421 | print $WHT . "IMAP Settings". $NRM . "\n--------------\n"; |
422 | print "4. IMAP Server : $WHT$imapServerAddress$NRM\n"; |
423 | print "5. IMAP Port : $WHT$imapPort$NRM\n"; |
424 | print "6. Authentication type : $WHT$imap_auth_mech$NRM\n"; |
425 | print "7. Secure IMAP (TLS) : $WHT$use_imap_tls$NRM\n"; |
426 | print "8. Server software : $WHT$imap_server_type$NRM\n"; |
427 | print "9. Delimiter : $WHT$optional_delimiter$NRM\n"; |
428 | print "\n"; |
429 | } elsif ( $show_smtp_settings ) { |
35aaf666 |
430 | if ( lc($useSendmail) eq 'true' ) { |
47a29326 |
431 | print $WHT . "Sendmail" . $NRM . "\n--------\n"; |
432 | print "4. Sendmail Path : $WHT$sendmail_path$NRM\n"; |
cba7675e |
433 | print "5. Suppress SM header : $WHT$skip_SM_header$NRM\n"; |
47a29326 |
434 | print "\n"; |
435 | } else { |
436 | print $WHT . "SMTP Settings" . $NRM . "\n-------------\n"; |
437 | print "4. SMTP Server : $WHT$smtpServerAddress$NRM\n"; |
438 | print "5. SMTP Port : $WHT$smtpPort$NRM\n"; |
439 | print "6. POP before SMTP : $WHT$pop_before_smtp$NRM\n"; |
440 | print "7. SMTP Authentication : $WHT$smtp_auth_mech$NRM\n"; |
441 | print "8. Secure SMTP (TLS) : $WHT$use_smtp_tls$NRM\n"; |
35aaf666 |
442 | print "9. Suppress SM header : $WHT$skip_SM_header$NRM\n"; |
47a29326 |
443 | print "\n"; |
444 | } |
eaace00e |
445 | } |
47a29326 |
446 | |
447 | if ($show_imap_settings == 0) { |
448 | print "A. Update IMAP Settings : "; |
449 | print "$WHT$imapServerAddress$NRM:"; |
450 | print "$WHT$imapPort$NRM "; |
451 | print "($WHT$imap_server_type$NRM)\n"; |
598294a7 |
452 | } |
47a29326 |
453 | if ($show_smtp_settings == 0) { |
35aaf666 |
454 | if ( lc($useSendmail) eq 'true' ) { |
47a29326 |
455 | print "B. Change Sendmail Config : $WHT$sendmail_path$NRM\n"; |
456 | } else { |
457 | print "B. Update SMTP Settings : "; |
458 | print "$WHT$smtpServerAddress$NRM:"; |
459 | print "$WHT$smtpPort$NRM\n"; |
460 | } |
461 | } |
462 | if ( $show_smtp_settings || $show_imap_settings ) |
463 | { |
598294a7 |
464 | print "H. Hide " . |
465 | ($show_imap_settings ? "IMAP Server" : |
35aaf666 |
466 | (lc($useSendmail) eq 'true') ? "Sendmail" : "SMTP") . " Settings\n"; |
47a29326 |
467 | } |
598294a7 |
468 | |
eaace00e |
469 | print "\n"; |
dcc1cc82 |
470 | print "R Return to Main Menu\n"; |
eaace00e |
471 | } elsif ( $menu == 3 ) { |
472 | print $WHT. "Folder Defaults\n" . $NRM; |
473 | print "1. Default Folder Prefix : $WHT$default_folder_prefix$NRM\n"; |
474 | print "2. Show Folder Prefix Option : $WHT$show_prefix_option$NRM\n"; |
475 | print "3. Trash Folder : $WHT$trash_folder$NRM\n"; |
476 | print "4. Sent Folder : $WHT$sent_folder$NRM\n"; |
477 | print "5. Drafts Folder : $WHT$draft_folder$NRM\n"; |
478 | print "6. By default, move to trash : $WHT$default_move_to_trash$NRM\n"; |
479 | print "7. By default, move to sent : $WHT$default_move_to_sent$NRM\n"; |
480 | print "8. By default, save as draft : $WHT$default_save_as_draft$NRM\n"; |
481 | print "9. List Special Folders First : $WHT$list_special_folders_first$NRM\n"; |
482 | print "10. Show Special Folders Color : $WHT$use_special_folder_color$NRM\n"; |
483 | print "11. Auto Expunge : $WHT$auto_expunge$NRM\n"; |
484 | print "12. Default Sub. of INBOX : $WHT$default_sub_of_inbox$NRM\n"; |
485 | print "13. Show 'Contain Sub.' Option : $WHT$show_contain_subfolders_option$NRM\n"; |
486 | print "14. Default Unseen Notify : $WHT$default_unseen_notify$NRM\n"; |
487 | print "15. Default Unseen Type : $WHT$default_unseen_type$NRM\n"; |
488 | print "16. Auto Create Special Folders : $WHT$auto_create_special$NRM\n"; |
2eec12b5 |
489 | print "17. Folder Delete Bypasses Trash : $WHT$delete_folder$NRM\n"; |
ca85aabe |
490 | print "18. Enable /NoSelect folder fix : $WHT$noselect_fix_enable$NRM\n"; |
eaace00e |
491 | print "\n"; |
dcc1cc82 |
492 | print "R Return to Main Menu\n"; |
eaace00e |
493 | } elsif ( $menu == 4 ) { |
494 | print $WHT. "General Options\n" . $NRM; |
39d3ec89 |
495 | print "1. Data Directory : $WHT$data_dir$NRM\n"; |
496 | print "2. Attachment Directory : $WHT$attachment_dir$NRM\n"; |
497 | print "3. Directory Hash Level : $WHT$dir_hash_level$NRM\n"; |
498 | print "4. Default Left Size : $WHT$default_left_size$NRM\n"; |
499 | print "5. Usernames in Lowercase : $WHT$force_username_lowercase$NRM\n"; |
500 | print "6. Allow use of priority : $WHT$default_use_priority$NRM\n"; |
501 | print "7. Hide SM attributions : $WHT$hide_sm_attributions$NRM\n"; |
502 | print "8. Allow use of receipts : $WHT$default_use_mdn$NRM\n"; |
35aaf666 |
503 | print "9. Allow editing of identity : $WHT$edit_identity$NRM/$WHT$edit_name$NRM\n"; |
39d3ec89 |
504 | print "10. Allow server thread sort : $WHT$allow_thread_sort$NRM\n"; |
aacc7bec |
505 | print "11. Allow server-side sorting : $WHT$allow_server_sort$NRM\n"; |
39d3ec89 |
506 | print "12. Allow server charset search : $WHT$allow_charset_search$NRM\n"; |
de74555e |
507 | print "13. Allow advanced search : $WHT$allow_advanced_search$NRM\n"; |
66bfb27b |
508 | print "14. PHP session name : $WHT$session_name$NRM\n"; |
eaace00e |
509 | print "\n"; |
dcc1cc82 |
510 | print "R Return to Main Menu\n"; |
eaace00e |
511 | } elsif ( $menu == 5 ) { |
512 | print $WHT. "Themes\n" . $NRM; |
513 | print "1. Change Themes\n"; |
2eec12b5 |
514 | for ( $count = 0 ; $count <= $#theme_name/2 ; $count++ ) { |
515 | $temp_name = $theme_name[$count*2]; |
598294a7 |
516 | printf " %s%*s %s\n", $temp_name, |
2eec12b5 |
517 | 40 - length($temp_name), " ", |
518 | $theme_name[($count*2)+1]; |
eaace00e |
519 | } |
520 | print "2. CSS File : $WHT$theme_css$NRM\n"; |
521 | print "\n"; |
dcc1cc82 |
522 | print "R Return to Main Menu\n"; |
eaace00e |
523 | } elsif ( $menu == 6 ) { |
4272758c |
524 | print $WHT. "Address Books\n" . $NRM; |
525 | print "1. Change LDAP Servers\n"; |
eaace00e |
526 | for ( $count = 0 ; $count <= $#ldap_host ; $count++ ) { |
527 | print " > $ldap_host[$count]\n"; |
528 | } |
71d3f882 |
529 | print "2. Use Javascript address book search : $WHT$default_use_javascript_addr_book$NRM\n"; |
530 | print "3. Use global file address book : $WHT$abook_global_file$NRM\n"; |
4272758c |
531 | print "4. Allow writing into global file address book : $WHT$abook_global_file_writeable$NRM\n"; |
71d3f882 |
532 | print "5. Allow listing of global file address book : $WHT$abook_global_file_listing$NRM\n"; |
eaace00e |
533 | print "\n"; |
dcc1cc82 |
534 | print "R Return to Main Menu\n"; |
eaace00e |
535 | } elsif ( $menu == 7 ) { |
536 | print $WHT. "Message of the Day (MOTD)\n" . $NRM; |
537 | print "\n$motd\n"; |
538 | print "\n"; |
539 | print "1 Edit the MOTD\n"; |
540 | print "\n"; |
dcc1cc82 |
541 | print "R Return to Main Menu\n"; |
eaace00e |
542 | } elsif ( $menu == 8 ) { |
543 | print $WHT. "Plugins\n" . $NRM; |
544 | print " Installed Plugins\n"; |
545 | $num = 0; |
546 | for ( $count = 0 ; $count <= $#plugins ; $count++ ) { |
547 | $num = $count + 1; |
548 | print " $num. $plugins[$count]\n"; |
549 | } |
550 | print "\n Available Plugins:\n"; |
551 | opendir( DIR, "../plugins" ); |
552 | @files = readdir(DIR); |
553 | $pos = 0; |
554 | @unused_plugins = (); |
555 | for ( $i = 0 ; $i <= $#files ; $i++ ) { |
556 | if ( -d "../plugins/" . $files[$i] && $files[$i] !~ /^\./ && $files[$i] ne "CVS" ) { |
557 | $match = 0; |
558 | for ( $k = 0 ; $k <= $#plugins ; $k++ ) { |
559 | if ( $plugins[$k] eq $files[$i] ) { |
560 | $match = 1; |
561 | } |
562 | } |
563 | if ( $match == 0 ) { |
564 | $unused_plugins[$pos] = $files[$i]; |
565 | $pos++; |
566 | } |
1a7a2fcc |
567 | } |
eaace00e |
568 | } |
569 | |
570 | for ( $i = 0 ; $i <= $#unused_plugins ; $i++ ) { |
571 | $num = $num + 1; |
572 | print " $num. $unused_plugins[$i]\n"; |
573 | } |
574 | closedir DIR; |
575 | |
eaace00e |
576 | print "\n"; |
dcc1cc82 |
577 | print "R Return to Main Menu\n"; |
eaace00e |
578 | } elsif ( $menu == 9 ) { |
579 | print $WHT. "Database\n" . $NRM; |
580 | print "1. DSN for Address Book : $WHT$addrbook_dsn$NRM\n"; |
581 | print "2. Table for Address Book : $WHT$addrbook_table$NRM\n"; |
99a6c222 |
582 | print "\n"; |
eaace00e |
583 | print "3. DSN for Preferences : $WHT$prefs_dsn$NRM\n"; |
584 | print "4. Table for Preferences : $WHT$prefs_table$NRM\n"; |
99a6c222 |
585 | print "5. Field for username : $WHT$prefs_user_field$NRM\n"; |
586 | print "6. Field for prefs key : $WHT$prefs_key_field$NRM\n"; |
587 | print "7. Field for prefs value : $WHT$prefs_val_field$NRM\n"; |
eaace00e |
588 | print "\n"; |
30e9932c |
589 | print "8. DSN for Global Address Book : $WHT$addrbook_global_dsn$NRM\n"; |
590 | print "9. Table for Global Address Book : $WHT$addrbook_global_table$NRM\n"; |
591 | print "10. Allow writing into Global Address Book : $WHT$addrbook_global_writeable$NRM\n"; |
592 | print "11. Allow listing of Global Address Book : $WHT$addrbook_global_listing$NRM\n"; |
593 | print "\n"; |
dcc1cc82 |
594 | print "R Return to Main Menu\n"; |
39d3ec89 |
595 | } elsif ( $menu == 10 ) { |
35aaf666 |
596 | print $WHT. "Language settings\n" . $NRM; |
597 | print "1. Default Language : $WHT$squirrelmail_default_language$NRM\n"; |
598 | print "2. Default Charset : $WHT$default_charset$NRM\n"; |
599 | print "3. Show alternative language names : $WHT$show_alternative_names$NRM\n"; |
600 | print "4. Available languages : $WHT$available_languages$NRM\n"; |
f03f6ee7 |
601 | print "5. Enable aggressive decoding : $WHT$aggressive_decoding$NRM\n"; |
6d3689f5 |
602 | print "6. Enable lossy encoding : $WHT$lossy_encoding$NRM\n"; |
35aaf666 |
603 | print "\n"; |
dcc1cc82 |
604 | print "R Return to Main Menu\n"; |
39d3ec89 |
605 | } elsif ( $menu == 11 ) { |
35aaf666 |
606 | print $WHT. "Interface tweaks\n" . $NRM; |
74d6a0d9 |
607 | print "1. Advanced tree : $WHT$advanced_tree$NRM\n"; |
608 | print "2. Display html mails in iframe : $WHT$use_iframe$NRM\n"; |
609 | print "3. Use Icons : $WHT$use_icons$NRM\n"; |
35aaf666 |
610 | print "\n"; |
611 | print $WHT. "PHP tweaks\n" . $NRM; |
74d6a0d9 |
612 | print "4. Use php recode functions : $WHT$use_php_recode$NRM\n"; |
613 | print "5. Use php iconv functions : $WHT$use_php_iconv$NRM\n"; |
71d3f882 |
614 | print "\n"; |
615 | print $WHT. "Configuration tweaks\n" . $NRM; |
74d6a0d9 |
616 | print "6. Allow remote configtest : $WHT$allow_remote_configtest$NRM\n"; |
35aaf666 |
617 | print "\n"; |
dcc1cc82 |
618 | print "R Return to Main Menu\n"; |
eaace00e |
619 | } |
620 | if ( $config_use_color == 1 ) { |
1ef64acb |
621 | print "C Turn color off\n"; |
eaace00e |
622 | } else { |
1ef64acb |
623 | print "C Turn color on\n"; |
eaace00e |
624 | } |
dcc1cc82 |
625 | print "S Save data\n"; |
626 | print "Q Quit\n"; |
eaace00e |
627 | |
628 | print "\n"; |
629 | print "Command >> " . $WHT; |
630 | $command = <STDIN>; |
85645192 |
631 | $command =~ s/[\n\r]//g; |
eaace00e |
632 | $command =~ tr/A-Z/a-z/; |
633 | print "$NRM\n"; |
634 | |
635 | # Read the commands they entered. |
636 | if ( $command eq "r" ) { |
637 | $menu = 0; |
638 | } elsif ( $command eq "s" ) { |
639 | save_data(); |
640 | print "Press enter to continue..."; |
641 | $tmp = <STDIN>; |
642 | $saved = 1; |
643 | } elsif ( ( $command eq "q" ) && ( $saved == 0 ) ) { |
644 | print "You have not saved your data.\n"; |
645 | print "Save? [" . $WHT . "Y" . $NRM . "/n]: "; |
646 | $save = <STDIN>; |
647 | if ( ( $save =~ /^y/i ) || ( $save =~ /^\s*$/ ) ) { |
648 | save_data(); |
649 | } |
650 | } elsif ( $command eq "c" ) { |
651 | if ( $config_use_color == 1 ) { |
652 | $config_use_color = 2; |
653 | $WHT = ""; |
654 | $NRM = ""; |
655 | } else { |
656 | $config_use_color = 1; |
657 | $WHT = "\x1B[37;1m"; |
658 | $NRM = "\x1B[0m"; |
659 | } |
660 | } elsif ( $command eq "d" && $menu == 0 ) { |
661 | set_defaults(); |
662 | } else { |
663 | $saved = 0; |
664 | if ( $menu == 0 ) { |
39d3ec89 |
665 | if ( ( $command > 0 ) && ( $command < 12 ) ) { |
eaace00e |
666 | $menu = $command; |
1a7a2fcc |
667 | } |
eaace00e |
668 | } elsif ( $menu == 1 ) { |
669 | if ( $command == 1 ) { $org_name = command1(); } |
670 | elsif ( $command == 2 ) { $org_logo = command2(); } |
b6e0c3b6 |
671 | elsif ( $command == 3 ) { ($org_logo_width,$org_logo_height) = command2a(); } |
672 | elsif ( $command == 4 ) { $org_title = command3(); } |
673 | elsif ( $command == 5 ) { $signout_page = command4(); } |
39d3ec89 |
674 | elsif ( $command == 6 ) { $frame_top = command6(); } |
675 | elsif ( $command == 7 ) { $provider_uri = command7(); } |
676 | elsif ( $command == 8 ) { $provider_name = command8(); } |
0ae4c1f2 |
677 | |
eaace00e |
678 | } elsif ( $menu == 2 ) { |
47a29326 |
679 | if ( $command eq "a" ) { $show_imap_settings = 1; $show_smtp_settings = 0; } |
680 | elsif ( $command eq "b" ) { $show_imap_settings = 0; $show_smtp_settings = 1; } |
681 | elsif ( $command eq "h" ) { $show_imap_settings = 0; $show_smtp_settings = 0; } |
682 | elsif ( $command <= 3 ) { |
683 | if ( $command == 1 ) { $domain = command11(); } |
684 | elsif ( $command == 2 ) { $invert_time = command110(); } |
685 | elsif ( $command == 3 ) { $useSendmail = command14(); } |
686 | $show_imap_settings = 0; $show_smtp_settings = 0; |
687 | } elsif ( $show_imap_settings ) { |
688 | if ( $command == 4 ) { $imapServerAddress = command12(); } |
689 | elsif ( $command == 5 ) { $imapPort = command13(); } |
b47821fb |
690 | elsif ( $command == 6 ) { $imap_auth_mech = command112a(); } |
47a29326 |
691 | elsif ( $command == 7 ) { $use_imap_tls = command113("IMAP",$use_imap_tls); } |
692 | elsif ( $command == 8 ) { $imap_server_type = command19(); } |
693 | elsif ( $command == 9 ) { $optional_delimiter = command111(); } |
35aaf666 |
694 | } elsif ( $show_smtp_settings && lc($useSendmail) eq 'true' ) { |
47a29326 |
695 | if ( $command == 4 ) { $sendmail_path = command15(); } |
696 | } elsif ( $show_smtp_settings ) { |
697 | if ( $command == 4 ) { $smtpServerAddress = command16(); } |
698 | elsif ( $command == 5 ) { $smtpPort = command17(); } |
699 | elsif ( $command == 6 ) { $pop_before_smtp = command18a(); } |
b47821fb |
700 | elsif ( $command == 7 ) { $smtp_auth_mech = command112b(); } |
47a29326 |
701 | elsif ( $command == 8 ) { $use_smtp_tls = command113("SMTP",$use_smtp_tls); } |
35aaf666 |
702 | elsif ( $command == 9 ) { $skip_SM_header = command114(); } |
47a29326 |
703 | } |
eaace00e |
704 | } elsif ( $menu == 3 ) { |
705 | if ( $command == 1 ) { $default_folder_prefix = command21(); } |
706 | elsif ( $command == 2 ) { $show_prefix_option = command22(); } |
707 | elsif ( $command == 3 ) { $trash_folder = command23a(); } |
708 | elsif ( $command == 4 ) { $sent_folder = command23b(); } |
709 | elsif ( $command == 5 ) { $draft_folder = command23c(); } |
710 | elsif ( $command == 6 ) { $default_move_to_trash = command24a(); } |
711 | elsif ( $command == 7 ) { $default_move_to_sent = command24b(); } |
712 | elsif ( $command == 8 ) { $default_save_as_draft = command24c(); } |
713 | elsif ( $command == 9 ) { $list_special_folders_first = command27(); } |
714 | elsif ( $command == 10 ) { $use_special_folder_color = command28(); } |
715 | elsif ( $command == 11 ) { $auto_expunge = command29(); } |
716 | elsif ( $command == 12 ) { $default_sub_of_inbox = command210(); } |
717 | elsif ( $command == 13 ) { $show_contain_subfolders_option = command211(); } |
718 | elsif ( $command == 14 ) { $default_unseen_notify = command212(); } |
719 | elsif ( $command == 15 ) { $default_unseen_type = command213(); } |
720 | elsif ( $command == 16 ) { $auto_create_special = command214(); } |
721 | elsif ( $command == 17 ) { $delete_folder = command215(); } |
ca85aabe |
722 | elsif ( $command == 18 ) { $noselect_fix_enable = command216(); } |
eaace00e |
723 | } elsif ( $menu == 4 ) { |
39d3ec89 |
724 | if ( $command == 1 ) { $data_dir = command33a(); } |
725 | elsif ( $command == 2 ) { $attachment_dir = command33b(); } |
726 | elsif ( $command == 3 ) { $dir_hash_level = command33c(); } |
727 | elsif ( $command == 4 ) { $default_left_size = command35(); } |
728 | elsif ( $command == 5 ) { $force_username_lowercase = command36(); } |
729 | elsif ( $command == 6 ) { $default_use_priority = command37(); } |
730 | elsif ( $command == 7 ) { $hide_sm_attributions = command38(); } |
731 | elsif ( $command == 8 ) { $default_use_mdn = command39(); } |
732 | elsif ( $command == 9 ) { $edit_identity = command310(); } |
733 | elsif ( $command == 10 ) { $allow_thread_sort = command312(); } |
734 | elsif ( $command == 11 ) { $allow_server_sort = command313(); } |
735 | elsif ( $command == 12 ) { $allow_charset_search = command314(); } |
de74555e |
736 | elsif ( $command == 13 ) { $allow_advanced_search = command316(); } |
737 | elsif ( $command == 14 ) { $session_name = command317(); } |
eaace00e |
738 | } elsif ( $menu == 5 ) { |
739 | if ( $command == 1 ) { command41(); } |
740 | elsif ( $command == 2 ) { $theme_css = command42(); } |
741 | } elsif ( $menu == 6 ) { |
742 | if ( $command == 1 ) { command61(); } |
743 | elsif ( $command == 2 ) { command62(); } |
4272758c |
744 | elsif ( $command == 3 ) { $abook_global_file=command63(); } |
745 | elsif ( $command == 4 ) { command64(); } |
71d3f882 |
746 | elsif ( $command == 5 ) { command65(); } |
eaace00e |
747 | } elsif ( $menu == 7 ) { |
748 | if ( $command == 1 ) { $motd = command71(); } |
749 | } elsif ( $menu == 8 ) { |
750 | if ( $command =~ /^[0-9]+/ ) { @plugins = command81(); } |
eaace00e |
751 | } elsif ( $menu == 9 ) { |
99a6c222 |
752 | if ( $command == 1 ) { $addrbook_dsn = command91(); } |
753 | elsif ( $command == 2 ) { $addrbook_table = command92(); } |
754 | elsif ( $command == 3 ) { $prefs_dsn = command93(); } |
755 | elsif ( $command == 4 ) { $prefs_table = command94(); } |
756 | elsif ( $command == 5 ) { $prefs_user_field = command95(); } |
757 | elsif ( $command == 6 ) { $prefs_key_field = command96(); } |
758 | elsif ( $command == 7 ) { $prefs_val_field = command97(); } |
30e9932c |
759 | elsif ( $command == 8 ) { $addrbook_global_dsn = command98(); } |
760 | elsif ( $command == 9 ) { $addrbook_global_table = command99(); } |
761 | elsif ( $command == 10 ) { $addrbook_global_writeable = command910(); } |
762 | elsif ( $command == 11 ) { $addrbook_global_listing = command911(); } |
39d3ec89 |
763 | } elsif ( $menu == 10 ) { |
764 | if ( $command == 1 ) { $squirrelmail_default_language = commandA1(); } |
35aaf666 |
765 | elsif ( $command == 2 ) { $default_charset = commandA2(); } |
dcc1cc82 |
766 | elsif ( $command == 3 ) { $show_alternative_names = commandA3(); } |
35aaf666 |
767 | elsif ( $command == 4 ) { $available_languages = commandA4(); } |
f03f6ee7 |
768 | elsif ( $command == 5 ) { $aggressive_decoding = commandA5(); } |
6d3689f5 |
769 | elsif ( $command == 6 ) { $lossy_encoding = commandA6(); } |
39d3ec89 |
770 | } elsif ( $menu == 11 ) { |
771 | if ( $command == 1 ) { $advanced_tree = commandB1(); } |
74d6a0d9 |
772 | if ( $command == 2 ) { $use_iframe = commandB2(); } |
6395c46d |
773 | elsif ( $command == 3 ) { $use_icons = commandB3(); } |
774 | elsif ( $command == 4 ) { $use_php_recode = commandB4(); } |
775 | elsif ( $command == 5 ) { $use_php_iconv = commandB5(); } |
71d3f882 |
776 | elsif ( $command == 6 ) { $allow_remote_configtest = commandB6(); } |
eaace00e |
777 | } |
778 | } |
828b4753 |
779 | } |
780 | |
cbd6543c |
781 | # we exit here |
782 | print "\nExiting conf.pl.\n". |
35aaf666 |
783 | "You might want to test your configuration by browsing to\n". |
784 | "http://your-squirrelmail-location/src/configtest.php\n". |
785 | "Happy SquirrelMailing!\n\n"; |
cbd6543c |
786 | |
787 | |
828b4753 |
788 | #################################################################################### |
789 | |
5b6ae78a |
790 | # org_name |
791 | sub command1 { |
eaace00e |
792 | print "We have tried to make the name SquirrelMail as transparent as\n"; |
793 | print "possible. If you set up an organization name, most places where\n"; |
794 | print "SquirrelMail would take credit will be credited to your organization.\n"; |
795 | print "\n"; |
360ef370 |
796 | print "If your Organization Name includes a '\$', please precede it with a \\. \n"; |
797 | print "Other '\$' will be considered the beginning of a variable that\n"; |
798 | print "must be defined before the \$org_name is printed.\n"; |
360ef370 |
799 | print "\n"; |
eaace00e |
800 | print "[$WHT$org_name$NRM]: $WHT"; |
801 | $new_org_name = <STDIN>; |
802 | if ( $new_org_name eq "\n" ) { |
803 | $new_org_name = $org_name; |
804 | } else { |
85645192 |
805 | $new_org_name =~ s/[\r\n]//g; |
35aaf666 |
806 | $new_org_name =~ s/\"/"/g; |
eaace00e |
807 | } |
808 | return $new_org_name; |
5b6ae78a |
809 | } |
810 | |
811 | # org_logo |
812 | sub command2 { |
eaace00e |
813 | print "Your organization's logo is an image that will be displayed at\n"; |
25be56ab |
814 | print "different times throughout SquirrelMail. "; |
815 | print "\n"; |
816 | print "Please be aware of the following: \n"; |
817 | print " - Relative URLs are relative to the config dir\n"; |
818 | print " to use the default logo, use ../images/sm_logo.png\n"; |
819 | print " - To specify a logo defined outside the SquirrelMail source tree\n"; |
820 | print " use the absolute URL the webserver would use to include the file\n"; |
5d28b77e |
821 | print " e.g. http://www.example.com/images/mylogo.gif or /images/mylogo.jpg\n"; |
eaace00e |
822 | print "\n"; |
823 | print "[$WHT$org_logo$NRM]: $WHT"; |
824 | $new_org_logo = <STDIN>; |
825 | if ( $new_org_logo eq "\n" ) { |
826 | $new_org_logo = $org_logo; |
827 | } else { |
85645192 |
828 | $new_org_logo =~ s/[\r\n]//g; |
eaace00e |
829 | } |
830 | return $new_org_logo; |
5b6ae78a |
831 | } |
832 | |
b6e0c3b6 |
833 | # org_logo_width |
834 | sub command2a { |
835 | print "Your organization's logo is an image that will be displayed at\n"; |
836 | print "different times throughout SquirrelMail. Width\n"; |
837 | print "and Height of your logo image. Use '0' to disable.\n"; |
838 | print "\n"; |
839 | print "Width: [$WHT$org_logo_width$NRM]: $WHT"; |
840 | $new_org_logo_width = <STDIN>; |
841 | $new_org_logo_width =~ tr/0-9//cd; # only want digits! |
842 | if ( $new_org_logo_width eq '' ) { |
843 | $new_org_logo_width = $org_logo_width; |
844 | } |
0e21688d |
845 | if ( $new_org_logo_width > 0 ) { |
846 | print "Height: [$WHT$org_logo_height$NRM]: $WHT"; |
847 | $new_org_logo_height = <STDIN>; |
848 | $new_org_logo_height =~ tr/0-9//cd; # only want digits! |
e03345e1 |
849 | if( $new_org_logo_height eq '' ) { |
35aaf666 |
850 | $new_org_logo_height = $org_logo_height; |
851 | } |
00c4b08d |
852 | } else { |
0e21688d |
853 | $new_org_logo_height = 0; |
b6e0c3b6 |
854 | } |
855 | return ($new_org_logo_width, $new_org_logo_height); |
856 | } |
857 | |
5b6ae78a |
858 | # org_title |
859 | sub command3 { |
eaace00e |
860 | print "A title is what is displayed at the top of the browser window in\n"; |
861 | print "the titlebar. Usually this will end up looking something like:\n"; |
862 | print "\"Netscape: $org_title\"\n"; |
863 | print "\n"; |
360ef370 |
864 | print "If your Organization Title includes a '\$', please precede it with a \\. \n"; |
865 | print "Other '\$' will be considered the beginning of a variable that\n"; |
866 | print "must be defined before the \$org_title is printed.\n"; |
8b5c49cd |
867 | print "\$version, for example can be used, and will print the\n"; |
360ef370 |
868 | print "string representing the current SquirrelMail version.\n"; |
869 | print "\n"; |
eaace00e |
870 | print "[$WHT$org_title$NRM]: $WHT"; |
871 | $new_org_title = <STDIN>; |
872 | if ( $new_org_title eq "\n" ) { |
873 | $new_org_title = $org_title; |
874 | } else { |
85645192 |
875 | $new_org_title =~ s/[\r\n]//g; |
35aaf666 |
876 | $new_org_title =~ s/\"/\'/g; |
eaace00e |
877 | } |
878 | return $new_org_title; |
5b6ae78a |
879 | } |
5b6ae78a |
880 | |
f923b93d |
881 | # signout_page |
882 | sub command4 { |
eaace00e |
883 | print "When users click the Sign Out button they will be logged out and\n"; |
884 | print "then sent to signout_page. If signout_page is left empty,\n"; |
885 | print "(hit space and then return) they will be taken, as normal,\n"; |
886 | print "to the default and rather sparse SquirrelMail signout page.\n"; |
887 | print "\n"; |
888 | print "[$WHT$signout_page$NRM]: $WHT"; |
889 | $new_signout_page = <STDIN>; |
890 | if ( $new_signout_page eq "\n" ) { |
891 | $new_signout_page = $signout_page; |
892 | } else { |
85645192 |
893 | $new_signout_page =~ s/[\r\n]//g; |
eaace00e |
894 | $new_signout_page =~ s/^\s+$//g; |
895 | } |
896 | return $new_signout_page; |
6ef7145f |
897 | } |
898 | |
80e86e94 |
899 | # Default top frame |
900 | sub command6 { |
901 | print "SquirrelMail defaults to using the whole of the browser window.\n"; |
902 | print "This allows you to keep it within a specified frame. The default\n"; |
903 | print "is '_top'\n"; |
904 | print "\n"; |
905 | print "[$WHT$frame_top$NRM]: $WHT"; |
906 | $new_frame_top = <STDIN>; |
eaace00e |
907 | if ( $new_frame_top eq "\n" ) { |
80e86e94 |
908 | $new_frame_top = '_top'; |
909 | } else { |
85645192 |
910 | $new_frame_top =~ s/[\r\n]//g; |
80e86e94 |
911 | $new_frame_top =~ s/^\s+$//g; |
912 | } |
913 | return $new_frame_top; |
914 | } |
915 | |
0ae4c1f2 |
916 | # Default link to provider |
917 | sub command7 { |
918 | print "Here you can set the link on the right of the page.\n"; |
8b5c49cd |
919 | print "If empty, it will link to the SquirrelMail About page.\n"; |
0ae4c1f2 |
920 | print "\n"; |
921 | print "[$WHT$provider_uri$NRM]: $WHT"; |
922 | $new_provider_uri = <STDIN>; |
923 | if ( $new_provider_uri eq "\n" ) { |
8b5c49cd |
924 | $new_provider_uri = ''; |
0ae4c1f2 |
925 | } else { |
85645192 |
926 | $new_provider_uri =~ s/[\r\n]//g; |
0ae4c1f2 |
927 | $new_provider_uri =~ s/^\s+$//g; |
928 | } |
7b6563c0 |
929 | return $new_provider_uri; |
0ae4c1f2 |
930 | } |
931 | |
932 | sub command8 { |
933 | print "Here you can set the name of the link on the right of the page.\n"; |
934 | print "The default is 'SquirrelMail/'\n"; |
935 | print "\n"; |
936 | print "[$WHT$provider_name$NRM]: $WHT"; |
937 | $new_provider_name = <STDIN>; |
938 | if ( $new_provider_name eq "\n" ) { |
939 | $new_provider_name = 'SquirrelMail'; |
940 | } else { |
85645192 |
941 | $new_provider_name =~ s/[\r\n]//g; |
0ae4c1f2 |
942 | $new_provider_name =~ s/^\s+$//g; |
943 | } |
7b6563c0 |
944 | return $new_provider_name; |
0ae4c1f2 |
945 | } |
946 | |
828b4753 |
947 | #################################################################################### |
5b6ae78a |
948 | |
828b4753 |
949 | # domain |
950 | sub command11 { |
e1e4f932 |
951 | print "The domain name is the suffix at the end of all email addresses. If\n"; |
5d28b77e |
952 | print "for example, your email address is jdoe\@example.com, then your domain\n"; |
953 | print "would be example.com.\n"; |
eaace00e |
954 | print "\n"; |
955 | print "[$WHT$domain$NRM]: $WHT"; |
956 | $new_domain = <STDIN>; |
957 | if ( $new_domain eq "\n" ) { |
958 | $new_domain = $domain; |
959 | } else { |
85645192 |
960 | $new_domain =~ s/[\r\n]//g; |
eaace00e |
961 | } |
962 | return $new_domain; |
828b4753 |
963 | } |
5b6ae78a |
964 | |
828b4753 |
965 | # imapServerAddress |
966 | sub command12 { |
47a29326 |
967 | print "This is the hostname where your IMAP server can be contacted.\n"; |
eaace00e |
968 | print "[$WHT$imapServerAddress$NRM]: $WHT"; |
969 | $new_imapServerAddress = <STDIN>; |
970 | if ( $new_imapServerAddress eq "\n" ) { |
971 | $new_imapServerAddress = $imapServerAddress; |
972 | } else { |
85645192 |
973 | $new_imapServerAddress =~ s/[\r\n]//g; |
eaace00e |
974 | } |
975 | return $new_imapServerAddress; |
828b4753 |
976 | } |
5b6ae78a |
977 | |
828b4753 |
978 | # imapPort |
979 | sub command13 { |
eaace00e |
980 | print "This is the port that your IMAP server is on. Usually this is 143.\n"; |
981 | print "[$WHT$imapPort$NRM]: $WHT"; |
982 | $new_imapPort = <STDIN>; |
983 | if ( $new_imapPort eq "\n" ) { |
984 | $new_imapPort = $imapPort; |
985 | } else { |
85645192 |
986 | $new_imapPort =~ s/[\r\n]//g; |
eaace00e |
987 | } |
988 | return $new_imapPort; |
828b4753 |
989 | } |
990 | |
991 | # useSendmail |
992 | sub command14 { |
eaace00e |
993 | print "You now need to choose the method that you will use for sending\n"; |
994 | print "messages in SquirrelMail. You can either connect to an SMTP server\n"; |
995 | print "or use sendmail directly.\n"; |
35aaf666 |
996 | if ( lc($useSendmail) eq 'true' ) { |
eaace00e |
997 | $default_value = "1"; |
998 | } else { |
999 | $default_value = "2"; |
1000 | } |
1001 | print "\n"; |
1002 | print " 1. Sendmail\n"; |
1003 | print " 2. SMTP\n"; |
1004 | print "Your choice [1/2] [$WHT$default_value$NRM]: $WHT"; |
1005 | $use_sendmail = <STDIN>; |
1006 | if ( ( $use_sendmail =~ /^1\n/i ) |
1007 | || ( ( $use_sendmail =~ /^\n/ ) && ( $default_value eq "1" ) ) ) { |
35aaf666 |
1008 | $useSendmail = 'true'; |
eaace00e |
1009 | } else { |
35aaf666 |
1010 | $useSendmail = 'false'; |
eaace00e |
1011 | } |
1012 | return $useSendmail; |
828b4753 |
1013 | } |
5b6ae78a |
1014 | |
828b4753 |
1015 | # sendmail_path |
1016 | sub command15 { |
eaace00e |
1017 | if ( $sendmail_path[0] !~ /./ ) { |
1018 | $sendmail_path = "/usr/sbin/sendmail"; |
1019 | } |
1020 | print "Specify where the sendmail executable is located. Usually /usr/sbin/sendmail\n"; |
1021 | print "[$WHT$sendmail_path$NRM]: $WHT"; |
1022 | $new_sendmail_path = <STDIN>; |
1023 | if ( $new_sendmail_path eq "\n" ) { |
1024 | $new_sendmail_path = $sendmail_path; |
1025 | } else { |
85645192 |
1026 | $new_sendmail_path =~ s/[\r\n]//g; |
eaace00e |
1027 | } |
1028 | return $new_sendmail_path; |
828b4753 |
1029 | } |
5b6ae78a |
1030 | |
828b4753 |
1031 | # smtpServerAddress |
1032 | sub command16 { |
47a29326 |
1033 | print "This is the hostname of your SMTP server.\n"; |
eaace00e |
1034 | print "[$WHT$smtpServerAddress$NRM]: $WHT"; |
1035 | $new_smtpServerAddress = <STDIN>; |
1036 | if ( $new_smtpServerAddress eq "\n" ) { |
1037 | $new_smtpServerAddress = $smtpServerAddress; |
1038 | } else { |
85645192 |
1039 | $new_smtpServerAddress =~ s/[\r\n]//g; |
eaace00e |
1040 | } |
1041 | return $new_smtpServerAddress; |
828b4753 |
1042 | } |
1043 | |
1044 | # smtpPort |
1045 | sub command17 { |
eaace00e |
1046 | print "This is the port to connect to for SMTP. Usually 25.\n"; |
1047 | print "[$WHT$smtpPort$NRM]: $WHT"; |
1048 | $new_smtpPort = <STDIN>; |
1049 | if ( $new_smtpPort eq "\n" ) { |
1050 | $new_smtpPort = $smtpPort; |
1051 | } else { |
85645192 |
1052 | $new_smtpPort =~ s/[\r\n]//g; |
eaace00e |
1053 | } |
1054 | return $new_smtpPort; |
bbd30ac8 |
1055 | } |
d2f4c914 |
1056 | |
598294a7 |
1057 | # authenticated server |
a93b12ba |
1058 | sub command18 { |
47a29326 |
1059 | return; |
35aaf666 |
1060 | # This sub disabled by tassium - it has been replaced with smtp_auth_mech |
eaace00e |
1061 | print "Do you wish to use an authenticated SMTP server? Your server must\n"; |
1062 | print "support this in order for SquirrelMail to work with it. We implemented\n"; |
1063 | print "it according to RFC 2554.\n"; |
1064 | |
1065 | $YesNo = 'n'; |
35aaf666 |
1066 | $YesNo = 'y' if ( lc($use_authenticated_smtp) eq 'true' ); |
eaace00e |
1067 | |
1068 | print "Use authenticated SMTP server (y/n) [$WHT$YesNo$NRM]: $WHT"; |
1069 | |
1070 | $new_use_authenticated_smtp = <STDIN>; |
1071 | $new_use_authenticated_smtp =~ tr/yn//cd; |
35aaf666 |
1072 | return 'true' if ( $new_use_authenticated_smtp eq "y" ); |
1073 | return 'false' if ( $new_use_authenticated_smtp eq "n" ); |
eaace00e |
1074 | return $use_authenticated_smtp; |
1075 | } |
d2f4c914 |
1076 | |
2044f95a |
1077 | # pop before SMTP |
1078 | sub command18a { |
1079 | print "Do you wish to use POP3 before SMTP? Your server must\n"; |
1080 | print "support this in order for SquirrelMail to work with it.\n"; |
1081 | |
1082 | $YesNo = 'n'; |
35aaf666 |
1083 | $YesNo = 'y' if ( lc($pop_before_smtp) eq 'true' ); |
2044f95a |
1084 | |
1085 | print "Use pop before SMTP (y/n) [$WHT$YesNo$NRM]: $WHT"; |
1086 | |
1087 | $new_pop_before_smtp = <STDIN>; |
1088 | $new_pop_before_smtp =~ tr/yn//cd; |
35aaf666 |
1089 | return 'true' if ( $new_pop_before_smtp eq "y" ); |
1090 | return 'false' if ( $new_pop_before_smtp eq "n" ); |
2044f95a |
1091 | return $pop_before_smtp; |
1092 | } |
1093 | |
598294a7 |
1094 | # imap_server_type |
d2f4c914 |
1095 | sub command19 { |
eaace00e |
1096 | print "Each IMAP server has its own quirks. As much as we tried to stick\n"; |
1097 | print "to standards, it doesn't help much if the IMAP server doesn't follow\n"; |
1098 | print "the same principles. We have made some work-arounds for some of\n"; |
1099 | print "these servers. If you would like to use them, please select your\n"; |
1100 | print "IMAP server. If you do not wish to use these work-arounds, you can\n"; |
1101 | print "set this to \"other\", and none will be used.\n"; |
a33764f6 |
1102 | print " courier = Courier IMAP server\n"; |
b39825f0 |
1103 | print " cyrus = Cyrus IMAP server\n"; |
a33764f6 |
1104 | print " dovecot = Dovecot Secure IMAP server\n"; |
b39825f0 |
1105 | print " exchange = Microsoft Exchange IMAP server\n"; |
b39825f0 |
1106 | print " hmailserver = hMailServer\n"; |
a33764f6 |
1107 | print " macosx = Mac OS X Mailserver\n"; |
1108 | print " uw = University of Washington's IMAP server\n"; |
1109 | print "\n"; |
b39825f0 |
1110 | print " other = Not one of the above servers\n"; |
a33764f6 |
1111 | print "\n"; |
eaace00e |
1112 | print "[$WHT$imap_server_type$NRM]: $WHT"; |
1113 | $new_imap_server_type = <STDIN>; |
1114 | |
1115 | if ( $new_imap_server_type eq "\n" ) { |
1116 | $new_imap_server_type = $imap_server_type; |
1117 | } else { |
85645192 |
1118 | $new_imap_server_type =~ s/[\r\n]//g; |
eaace00e |
1119 | } |
1120 | return $new_imap_server_type; |
a93b12ba |
1121 | } |
3f8fe68e |
1122 | |
d47b2518 |
1123 | # invert_time |
d2f4c914 |
1124 | sub command110 { |
eaace00e |
1125 | print "Sometimes the date of messages sent is messed up (off by a few hours\n"; |
1126 | print "on some machines). Typically this happens if the system doesn't support\n"; |
1127 | print "tm_gmtoff. It will happen only if your time zone is \"negative\".\n"; |
1128 | print "This most often occurs on Solaris 7 machines in the United States.\n"; |
1129 | print "By default, this is off. It should be kept off unless problems surface\n"; |
1130 | print "about the time that messages are sent.\n"; |
1131 | print " no = Do NOT fix time -- almost always correct\n"; |
1132 | print " yes = Fix the time for this system\n"; |
1133 | |
1134 | $YesNo = 'n'; |
35aaf666 |
1135 | $YesNo = 'y' if ( lc($invert_time) eq 'true' ); |
eaace00e |
1136 | |
1137 | print "Fix the time for this system (y/n) [$WHT$YesNo$NRM]: $WHT"; |
1138 | |
1139 | $new_invert_time = <STDIN>; |
1140 | $new_invert_time =~ tr/yn//cd; |
35aaf666 |
1141 | return 'true' if ( $new_invert_time eq "y" ); |
1142 | return 'false' if ( $new_invert_time eq "n" ); |
eaace00e |
1143 | return $invert_time; |
1144 | } |
d47b2518 |
1145 | |
d2f4c914 |
1146 | sub command111 { |
eaace00e |
1147 | print "This is the delimiter that your IMAP server uses to distinguish between\n"; |
1148 | print "folders. For example, Cyrus uses '.' as the delimiter and a complete\n"; |
1149 | print "folder would look like 'INBOX.Friends.Bob', while UW uses '/' and would\n"; |
1150 | print "look like 'INBOX/Friends/Bob'. Normally this should be left at 'detect'\n"; |
1151 | print "but if you are sure you know what delimiter your server uses, you can\n"; |
1152 | print "specify it here.\n"; |
1153 | print "\nTo have it autodetect the delimiter, set it to 'detect'.\n\n"; |
1154 | print "[$WHT$optional_delimiter$NRM]: $WHT"; |
1155 | $new_optional_delimiter = <STDIN>; |
1156 | |
1157 | if ( $new_optional_delimiter eq "\n" ) { |
1158 | $new_optional_delimiter = $optional_delimiter; |
1159 | } else { |
85645192 |
1160 | $new_optional_delimiter =~ s/[\r\n]//g; |
eaace00e |
1161 | } |
1162 | return $new_optional_delimiter; |
40ba4d36 |
1163 | } |
b47821fb |
1164 | # IMAP authentication type |
33feaaec |
1165 | # Possible values: login, plain, cram-md5, digest-md5 |
b47821fb |
1166 | # Now offers to detect supported mechs, assuming server & port are set correctly |
1167 | |
1168 | sub command112a { |
80e3fcf8 |
1169 | if ($use_imap_tls =~ /^true\b/i) { |
1170 | print "Auto-detection of login methods is unavailable when using TLS.\n"; |
1171 | } else { |
35aaf666 |
1172 | print "If you have already set the hostname and port number, I can try to\n"; |
1173 | print "detect the mechanisms your IMAP server supports.\n"; |
1174 | print "I will try to detect CRAM-MD5 and DIGEST-MD5 support. I can't test\n"; |
1175 | print "for \"login\" or \"plain\" without knowing a username and password.\n"; |
1176 | print "Auto-detecting is optional - you can safely say \"n\" here.\n"; |
1177 | print "\nTry to detect supported mechanisms? [y/N]: "; |
1178 | $inval=<STDIN>; |
1179 | chomp($inval); |
1180 | if ($inval =~ /^y\b/i) { |
1181 | # Yes, let's try to detect. |
1182 | print "Trying to detect IMAP capabilities...\n"; |
1183 | my $host = $imapServerAddress . ':'. $imapPort; |
1184 | print "CRAM-MD5:\t"; |
1185 | my $tmp = detect_auth_support('IMAP',$host,'CRAM-MD5'); |
1186 | if (defined($tmp)) { |
1187 | if ($tmp eq 'YES') { |
1188 | print "$WHT SUPPORTED$NRM\n"; |
1189 | } else { |
1190 | print "$WHT NOT SUPPORTED$NRM\n"; |
1191 | } |
80e3fcf8 |
1192 | } else { |
35aaf666 |
1193 | print $WHT . " ERROR DETECTING$NRM\n"; |
1194 | } |
1195 | |
1196 | print "DIGEST-MD5:\t"; |
1197 | $tmp = detect_auth_support('IMAP',$host,'DIGEST-MD5'); |
1198 | if (defined($tmp)) { |
1199 | if ($tmp eq 'YES') { |
1200 | print "$WHT SUPPORTED$NRM\n"; |
1201 | } else { |
1202 | print "$WHT NOT SUPPORTED$NRM\n"; |
1203 | } |
1204 | } else { |
1205 | print $WHT . " ERROR DETECTING$NRM\n"; |
1206 | } |
598294a7 |
1207 | |
35aaf666 |
1208 | } |
598294a7 |
1209 | } |
35aaf666 |
1210 | print "\nWhat authentication mechanism do you want to use for IMAP connections?\n\n"; |
1211 | print $WHT . "login" . $NRM . " - Plaintext. If you can do better, you probably should.\n"; |
33feaaec |
1212 | print $WHT . "plain" . $NRM . " - SASL PLAIN. If you need this, you already know it.\n"; |
35aaf666 |
1213 | print $WHT . "cram-md5" . $NRM . " - Slightly better than plaintext methods.\n"; |
1214 | print $WHT . "digest-md5" . $NRM . " - Privacy protection - better than cram-md5.\n"; |
1215 | print "\n*** YOUR IMAP SERVER MUST SUPPORT THE MECHANISM YOU CHOOSE HERE ***\n"; |
1216 | print "If you don't understand or are unsure, you probably want \"login\"\n\n"; |
1217 | print "login, plain, cram-md5, or digest-md5 [$WHT$imap_auth_mech$NRM]: $WHT"; |
b47821fb |
1218 | $inval=<STDIN>; |
1219 | chomp($inval); |
33feaaec |
1220 | if ( ($inval =~ /^cram-md5\b/i) || ($inval =~ /^digest-md5\b/i) || ($inval =~ /^login\b/i) || ($inval =~ /^plain\b/i)) { |
b47821fb |
1221 | return lc($inval); |
1222 | } else { |
1223 | # user entered garbage or default value so nothing needs to be set |
1224 | return $imap_auth_mech; |
1225 | } |
1226 | } |
40ba4d36 |
1227 | |
598294a7 |
1228 | |
b47821fb |
1229 | # SMTP authentication type |
1230 | # Possible choices: none, plain, cram-md5, digest-md5 |
1231 | sub command112b { |
80e3fcf8 |
1232 | if ($use_smtp_tls =~ /^true\b/i) { |
1233 | print "Auto-detection of login methods is unavailable when using TLS.\n"; |
1234 | } else { |
1235 | print "If you have already set the hostname and port number, I can try to\n"; |
1236 | print "automatically detect some of the mechanisms your SMTP server supports.\n"; |
35aaf666 |
1237 | print "Auto-detection is *optional* - you can safely say \"n\" here.\n"; |
80e3fcf8 |
1238 | print "\nTry to detect auth mechanisms? [y/N]: "; |
1239 | $inval=<STDIN>; |
1240 | chomp($inval); |
1241 | if ($inval =~ /^y\b/i) { |
35aaf666 |
1242 | # Yes, let's try to detect. |
1243 | print "Trying to detect supported methods (SMTP)...\n"; |
598294a7 |
1244 | |
35aaf666 |
1245 | # Special case! |
1246 | # Check none by trying to relay to junk@microsoft.com |
1247 | $host = $smtpServerAddress . ':' . $smtpPort; |
1248 | use IO::Socket; |
1249 | my $sock = IO::Socket::INET->new($host); |
1250 | print "Testing none:\t\t$WHT"; |
1251 | if (!defined($sock)) { |
1252 | print " ERROR TESTING\n"; |
1253 | close $sock; |
1254 | } else { |
5d28b77e |
1255 | print $sock "HELO $domain\r\n"; |
35aaf666 |
1256 | $got = <$sock>; # Discard |
5d28b77e |
1257 | print $sock "MAIL FROM:<tester\@squirrelmail.org>\r\n"; |
1258 | $got = <$sock>; # Discard |
1259 | print $sock "RCPT TO:<junk\@microsoft.com\r\n"; |
35aaf666 |
1260 | $got = <$sock>; # This is the important line |
1261 | if ($got =~ /^250\b/) { # SMTP will relay without auth |
1262 | print "SUPPORTED$NRM\n"; |
1263 | } else { |
1264 | print "NOT SUPPORTED$NRM\n"; |
1265 | } |
5d28b77e |
1266 | print $sock "RSET\r\n"; |
1267 | print $sock "QUIT\r\n"; |
35aaf666 |
1268 | close $sock; |
1269 | } |
1270 | # Try login (SquirrelMail default) |
1271 | print "Testing login:\t\t"; |
1272 | $tmp=detect_auth_support('SMTP',$host,'LOGIN'); |
1273 | if (defined($tmp)) { |
1274 | if ($tmp eq 'YES') { |
1275 | print $WHT . "SUPPORTED$NRM\n"; |
1276 | } else { |
1277 | print $WHT . "NOT SUPPORTED$NRM\n"; |
1278 | } |
1279 | } else { |
1280 | print $WHT . "ERROR DETECTING$NRM\n"; |
1281 | } |
598294a7 |
1282 | |
35aaf666 |
1283 | # Try CRAM-MD5 |
80e3fcf8 |
1284 | print "Testing CRAM-MD5:\t"; |
1285 | $tmp=detect_auth_support('SMTP',$host,'CRAM-MD5'); |
1286 | if (defined($tmp)) { |
1287 | if ($tmp eq 'YES') { |
1288 | print $WHT . "SUPPORTED$NRM\n"; |
1289 | } else { |
1290 | print $WHT . "NOT SUPPORTED$NRM\n"; |
1291 | } |
1292 | } else { |
1293 | print $WHT . "ERROR DETECTING$NRM\n"; |
b47821fb |
1294 | } |
598294a7 |
1295 | |
80e3fcf8 |
1296 | |
1297 | print "Testing DIGEST-MD5:\t"; |
1298 | $tmp=detect_auth_support('SMTP',$host,'DIGEST-MD5'); |
1299 | if (defined($tmp)) { |
1300 | if ($tmp eq 'YES') { |
1301 | print $WHT . "SUPPORTED$NRM\n"; |
1302 | } else { |
1303 | print $WHT . "NOT SUPPORTED$NRM\n"; |
1304 | } |
1305 | } else { |
1306 | print $WHT . "ERROR DETECTING$NRM\n"; |
b47821fb |
1307 | } |
598294a7 |
1308 | } |
80e3fcf8 |
1309 | } |
1310 | print "\nWhat authentication mechanism do you want to use for SMTP connections?\n"; |
b47821fb |
1311 | print $WHT . "none" . $NRM . " - Your SMTP server does not require authorization.\n"; |
fe0b18b3 |
1312 | print $WHT . "login" . $NRM . " - Plaintext. If you can do better, you probably should.\n"; |
33feaaec |
1313 | print $WHT . "plain" . $NRM . " - SASL PLAIN. You already know it if you need this.\n"; |
639c7164 |
1314 | print $WHT . "cram-md5" . $NRM . " - Slightly better than plaintext.\n"; |
1315 | print $WHT . "digest-md5" . $NRM . " - Privacy protection - better than cram-md5.\n"; |
fe0b18b3 |
1316 | print $WHT . "\n*** YOUR SMTP SERVER MUST SUPPORT THE MECHANISM YOU CHOOSE HERE ***\n" . $NRM; |
b47821fb |
1317 | print "If you don't understand or are unsure, you probably want \"none\"\n\n"; |
fe0b18b3 |
1318 | print "none, login, cram-md5, or digest-md5 [$WHT$smtp_auth_mech$NRM]: $WHT"; |
47a29326 |
1319 | $inval=<STDIN>; |
1320 | chomp($inval); |
b47821fb |
1321 | if ($inval =~ /^none\b/i) { |
47a29326 |
1322 | # SMTP doesn't necessarily require logins |
1323 | return "none"; |
1324 | } |
598294a7 |
1325 | if ( ($inval =~ /^cram-md5\b/i) || ($inval =~ /^digest-md5\b/i) || |
33feaaec |
1326 | ($inval =~ /^login\b/i) || ($inval =~/^plain\b/i)) { |
47a29326 |
1327 | return lc($inval); |
1328 | } else { |
b47821fb |
1329 | # user entered garbage, or default value so nothing needs to be set |
35aaf666 |
1330 | return $smtp_auth_mech; |
47a29326 |
1331 | } |
1332 | } |
1333 | |
1334 | # TLS |
1335 | # This sub is reused for IMAP and SMTP |
1336 | # Args: service name, default value |
1337 | sub command113 { |
35aaf666 |
1338 | my($default_val,$service,$inval); |
1339 | $service=$_[0]; |
1340 | $default_val=$_[1]; |
1341 | print "TLS (Transport Layer Security) encrypts the traffic between server and client.\n"; |
1342 | print "If you're familiar with SSL, you get the idea.\n"; |
1343 | print "To use this feature, your " . $service . " server must offer TLS\n"; |
1344 | print "capability, plus PHP 4.3.x with OpenSSL support.\n"; |
1345 | print "\nIf your " . $service . " server is localhost, you can safely disable this.\n"; |
1346 | print "If it is remote, you may wish to seriously consider enabling this.\n"; |
47a29326 |
1347 | print "Enable TLS (y/n) [$WHT"; |
35aaf666 |
1348 | if ($default_val eq 'true') { |
47a29326 |
1349 | print "y"; |
1350 | } else { |
1351 | print "n"; |
1352 | } |
598294a7 |
1353 | print "$NRM]: $WHT"; |
47a29326 |
1354 | $inval=<STDIN>; |
1355 | $inval =~ tr/yn//cd; |
35aaf666 |
1356 | return 'true' if ( $inval eq "y" ); |
1357 | return 'false' if ( $inval eq "n" ); |
47a29326 |
1358 | return $default_val; |
35aaf666 |
1359 | } |
47a29326 |
1360 | |
35aaf666 |
1361 | sub command114{ |
1362 | print "\nUse this to suppress insertion of SquirrelMail Received: headers\n"; |
1363 | print "in outbound messages.\n\n"; |
47a29326 |
1364 | |
35aaf666 |
1365 | $YesNo = 'n'; |
1366 | $YesNo = 'y' if ( lc($skip_SM_header) eq 'true' ); |
47a29326 |
1367 | |
35aaf666 |
1368 | print "Suppress SM header (y/n) [$WHT$YesNo$NRM]: $WHT"; |
1369 | $new_skip_SM_header = <STDIN>; |
1370 | chomp($new_skip_SM_header); |
1371 | |
1372 | return 'true' if ( lc($new_skip_SM_header) eq 'y' ); |
1373 | return 'false' if ( lc($new_skip_SM_header) eq 'n' ); |
598294a7 |
1374 | return $skip_SM_header; |
35aaf666 |
1375 | } |
47a29326 |
1376 | |
3f8fe68e |
1377 | # MOTD |
1378 | sub command71 { |
eaace00e |
1379 | print "\nYou can now create the welcome message that is displayed\n"; |
1380 | print "every time a user logs on. You can use HTML or just plain\n"; |
dcc1cc82 |
1381 | print |
1382 | "text. If you do not wish to have one, just make it blank.\n\n(Type @ on a blank line to exit)\n"; |
eaace00e |
1383 | |
1384 | $new_motd = ""; |
1385 | do { |
1386 | print "] "; |
1387 | $line = <STDIN>; |
85645192 |
1388 | $line =~ s/[\r\n]//g; |
eaace00e |
1389 | if ( $line ne "@" ) { |
1390 | $line =~ s/ /\ \ /g; |
1391 | $line =~ s/\t/\ \ \ \ /g; |
1392 | $line =~ s/$/ /; |
d756b071 |
1393 | $line =~ s/\"/"/g; |
eaace00e |
1394 | |
1395 | $new_motd = $new_motd . $line; |
1396 | } |
1397 | } while ( $line ne "@" ); |
1398 | return $new_motd; |
3f8fe68e |
1399 | } |
911ad01c |
1400 | |
9d0c7bee |
1401 | ################# PLUGINS ################### |
1402 | |
1403 | sub command81 { |
85645192 |
1404 | $command =~ s/[\s\n\r]*//g; |
eaace00e |
1405 | if ( $command > 0 ) { |
1406 | $command = $command - 1; |
1407 | if ( $command <= $#plugins ) { |
1408 | @newplugins = (); |
1409 | $ct = 0; |
1410 | while ( $ct <= $#plugins ) { |
1411 | if ( $ct != $command ) { |
1412 | @newplugins = ( @newplugins, $plugins[$ct] ); |
1413 | } |
1414 | $ct++; |
9d0c7bee |
1415 | } |
eaace00e |
1416 | @plugins = @newplugins; |
1417 | } elsif ( $command <= $#plugins + $#unused_plugins + 1 ) { |
1418 | $num = $command - $#plugins - 1; |
1419 | @newplugins = @plugins; |
1420 | $ct = 0; |
1421 | while ( $ct <= $#unused_plugins ) { |
1422 | if ( $ct == $num ) { |
1423 | @newplugins = ( @newplugins, $unused_plugins[$ct] ); |
eaace00e |
1424 | } |
1425 | $ct++; |
9d0c7bee |
1426 | } |
eaace00e |
1427 | @plugins = @newplugins; |
1428 | } |
1429 | } |
1430 | return @plugins; |
1431 | } |
9d0c7bee |
1432 | |
911ad01c |
1433 | ################# FOLDERS ################### |
1434 | |
1435 | # default_folder_prefix |
1436 | sub command21 { |
eaace00e |
1437 | print "Some IMAP servers (UW, for example) store mail and folders in\n"; |
1438 | print "your user space in a separate subdirectory. This is where you\n"; |
1439 | print "specify what that directory is.\n"; |
1440 | print "\n"; |
1441 | print "EXAMPLE: mail/"; |
1442 | print "\n"; |
1443 | print "NOTE: If you use Cyrus, or some server that would not use this\n"; |
1444 | print " option, you must set this to 'none'.\n"; |
1445 | print "\n"; |
1446 | print "[$WHT$default_folder_prefix$NRM]: $WHT"; |
1447 | $new_default_folder_prefix = <STDIN>; |
1448 | |
1449 | if ( $new_default_folder_prefix eq "\n" ) { |
1450 | $new_default_folder_prefix = $default_folder_prefix; |
1451 | } else { |
d52532d5 |
1452 | $new_default_folder_prefix =~ s/[\r\n]//g; |
eaace00e |
1453 | } |
d52532d5 |
1454 | if ( ( $new_default_folder_prefix =~ /^\s*$/ ) || ( $new_default_folder_prefix =~ m/^none$/i ) ) { |
eaace00e |
1455 | $new_default_folder_prefix = ""; |
1456 | } else { |
d52532d5 |
1457 | # add the trailing delimiter only if we know what the server is. |
ce9f808b |
1458 | if (($imap_server_type eq 'cyrus' and |
1459 | $optional_delimiter eq 'detect') or |
1460 | ($imap_server_type eq 'courier' and |
1461 | $optional_delimiter eq 'detect')) { |
d52532d5 |
1462 | $new_default_folder_prefix =~ s/\.*$/\./; |
ce9f808b |
1463 | } elsif ($imap_server_type eq 'uw' and |
1464 | $optional_delimiter eq 'detect') { |
d52532d5 |
1465 | $new_default_folder_prefix =~ s/\/*$/\//; |
0e21688d |
1466 | } |
eaace00e |
1467 | } |
1468 | return $new_default_folder_prefix; |
911ad01c |
1469 | } |
1470 | |
1471 | # Show Folder Prefix |
1472 | sub command22 { |
eaace00e |
1473 | print "It is possible to set up the default folder prefix as a user\n"; |
1474 | print "specific option, where each user can specify what their mail\n"; |
1475 | print "folder is. If you set this to false, they will never see the\n"; |
1476 | print "option, but if it is true, this option will appear in the\n"; |
1477 | print "'options' section.\n"; |
1478 | print "\n"; |
1479 | print "NOTE: You set the default folder prefix in option '1' of this\n"; |
1480 | print " section. That will be the default if the user doesn't\n"; |
1481 | print " specify anything different.\n"; |
1482 | print "\n"; |
1483 | |
35aaf666 |
1484 | if ( lc($show_prefix_option) eq 'true' ) { |
eaace00e |
1485 | $default_value = "y"; |
1486 | } else { |
1487 | $default_value = "n"; |
1488 | } |
1489 | print "\n"; |
1490 | print "Show option (y/n) [$WHT$default_value$NRM]: $WHT"; |
1491 | $new_show = <STDIN>; |
1492 | if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
1493 | $show_prefix_option = 'true'; |
eaace00e |
1494 | } else { |
35aaf666 |
1495 | $show_prefix_option = 'false'; |
eaace00e |
1496 | } |
1497 | return $show_prefix_option; |
911ad01c |
1498 | } |
1499 | |
598294a7 |
1500 | # Trash Folder |
f7b1b3b1 |
1501 | sub command23a { |
eaace00e |
1502 | print "You can now specify where the default trash folder is located.\n"; |
1503 | print "On servers where you do not want this, you can set it to anything\n"; |
1504 | print "and set option 6 to false.\n"; |
1505 | print "\n"; |
1506 | print "This is relative to where the rest of your email is kept. You do\n"; |
1507 | print "not need to worry about their mail directory. If this folder\n"; |
1508 | print "would be ~/mail/trash on the filesystem, you only need to specify\n"; |
1509 | print "that this is 'trash', and be sure to put 'mail/' in option 1.\n"; |
1510 | print "\n"; |
1511 | |
1512 | print "[$WHT$trash_folder$NRM]: $WHT"; |
1513 | $new_trash_folder = <STDIN>; |
1514 | if ( $new_trash_folder eq "\n" ) { |
1515 | $new_trash_folder = $trash_folder; |
1516 | } else { |
85645192 |
1517 | $new_trash_folder =~ s/[\r\n]//g; |
eaace00e |
1518 | } |
1519 | return $new_trash_folder; |
911ad01c |
1520 | } |
1521 | |
598294a7 |
1522 | # Sent Folder |
f7b1b3b1 |
1523 | sub command23b { |
eaace00e |
1524 | print "This is where messages that are sent will be stored. SquirrelMail\n"; |
1525 | print "by default puts a copy of all outgoing messages in this folder.\n"; |
1526 | print "\n"; |
1527 | print "This is relative to where the rest of your email is kept. You do\n"; |
1528 | print "not need to worry about their mail directory. If this folder\n"; |
1529 | print "would be ~/mail/sent on the filesystem, you only need to specify\n"; |
1530 | print "that this is 'sent', and be sure to put 'mail/' in option 1.\n"; |
1531 | print "\n"; |
1532 | |
1533 | print "[$WHT$sent_folder$NRM]: $WHT"; |
1534 | $new_sent_folder = <STDIN>; |
1535 | if ( $new_sent_folder eq "\n" ) { |
1536 | $new_sent_folder = $sent_folder; |
1537 | } else { |
85645192 |
1538 | $new_sent_folder =~ s/[\r\n]//g; |
eaace00e |
1539 | } |
1540 | return $new_sent_folder; |
911ad01c |
1541 | } |
1542 | |
598294a7 |
1543 | # Draft Folder |
f7b1b3b1 |
1544 | sub command23c { |
eaace00e |
1545 | print "You can now specify where the default draft folder is located.\n"; |
1546 | print "On servers where you do not want this, you can set it to anything\n"; |
1547 | print "and set option 9 to false.\n"; |
1548 | print "\n"; |
1549 | print "This is relative to where the rest of your email is kept. You do\n"; |
1550 | print "not need to worry about their mail directory. If this folder\n"; |
1551 | print "would be ~/mail/drafts on the filesystem, you only need to specify\n"; |
1552 | print "that this is 'drafts', and be sure to put 'mail/' in option 1.\n"; |
1553 | print "\n"; |
1554 | |
1555 | print "[$WHT$draft_folder$NRM]: $WHT"; |
1556 | $new_draft_folder = <STDIN>; |
1557 | if ( $new_draft_folder eq "\n" ) { |
1558 | $new_draft_folder = $draft_folder; |
1559 | } else { |
85645192 |
1560 | $new_draft_folder =~ s/[\r\n]//g; |
eaace00e |
1561 | } |
1562 | return $new_draft_folder; |
f7b1b3b1 |
1563 | } |
1564 | |
598294a7 |
1565 | # default move to trash |
f7b1b3b1 |
1566 | sub command24a { |
eaace00e |
1567 | print "By default, should messages get moved to the trash folder? You\n"; |
1568 | print "can specify the default trash folder in option 3. If this is set\n"; |
1569 | print "to false, messages will get deleted immediately without moving\n"; |
1570 | print "to the trash folder.\n"; |
1571 | print "\n"; |
1572 | print "Trash folder is currently: $trash_folder\n"; |
1573 | print "\n"; |
1574 | |
35aaf666 |
1575 | if ( lc($default_move_to_trash) eq 'true' ) { |
eaace00e |
1576 | $default_value = "y"; |
1577 | } else { |
1578 | $default_value = "n"; |
1579 | } |
1580 | print "By default, move to trash (y/n) [$WHT$default_value$NRM]: $WHT"; |
1581 | $new_show = <STDIN>; |
1582 | if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
1583 | $default_move_to_trash = 'true'; |
eaace00e |
1584 | } else { |
35aaf666 |
1585 | $default_move_to_trash = 'false'; |
eaace00e |
1586 | } |
1587 | return $default_move_to_trash; |
2f287147 |
1588 | } |
1589 | |
598294a7 |
1590 | # default move to sent |
f7b1b3b1 |
1591 | sub command24b { |
eaace00e |
1592 | print "By default, should messages get moved to the sent folder? You\n"; |
1593 | print "can specify the default sent folder in option 4. If this is set\n"; |
1594 | print "to false, messages will get sent and no copy will be made.\n"; |
1595 | print "\n"; |
6517cfd0 |
1596 | print "Sent folder is currently: $sent_folder\n"; |
eaace00e |
1597 | print "\n"; |
1598 | |
35aaf666 |
1599 | if ( lc($default_move_to_sent) eq 'true' ) { |
eaace00e |
1600 | $default_value = "y"; |
1601 | } else { |
1602 | $default_value = "n"; |
1603 | } |
1604 | print "By default, move to sent (y/n) [$WHT$default_value$NRM]: $WHT"; |
1605 | $new_show = <STDIN>; |
1606 | if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
1607 | $default_move_to_sent = 'true'; |
eaace00e |
1608 | } else { |
35aaf666 |
1609 | $default_move_to_sent = 'false'; |
eaace00e |
1610 | } |
1611 | return $default_move_to_sent; |
2f287147 |
1612 | } |
1613 | |
f7b1b3b1 |
1614 | # default save as draft |
1615 | sub command24c { |
eaace00e |
1616 | print "By default, should the save to draft option be shown? You can\n"; |
1617 | print "specify the default drafts folder in option 5. If this is set\n"; |
1618 | print "to false, users will not be shown the save to draft option.\n"; |
1619 | print "\n"; |
1620 | print "Drafts folder is currently: $draft_folder\n"; |
1621 | print "\n"; |
1622 | |
35aaf666 |
1623 | if ( lc($default_move_to_draft) eq 'true' ) { |
eaace00e |
1624 | $default_value = "y"; |
1625 | } else { |
1626 | $default_value = "n"; |
1627 | } |
1628 | print "By default, save as draft (y/n) [$WHT$default_value$NRM]: $WHT"; |
1629 | $new_show = <STDIN>; |
1630 | if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
1631 | $default_save_as_draft = 'true'; |
eaace00e |
1632 | } else { |
35aaf666 |
1633 | $default_save_as_draft = 'false'; |
eaace00e |
1634 | } |
1635 | return $default_save_as_draft; |
f7b1b3b1 |
1636 | } |
1637 | |
598294a7 |
1638 | # List special folders first |
2f287147 |
1639 | sub command27 { |
eaace00e |
1640 | print "SquirrelMail has what we call 'special folders' that are not\n"; |
1641 | print "manipulated and viewed like normal folders. Some examples of\n"; |
1642 | print "these folders would be INBOX, Trash, Sent, etc. This option\n"; |
1643 | print "Simply asks if you want these folders listed first in the folder\n"; |
1644 | print "listing.\n"; |
1645 | print "\n"; |
1646 | |
35aaf666 |
1647 | if ( lc($list_special_folders_first) eq 'true' ) { |
eaace00e |
1648 | $default_value = "y"; |
1649 | } else { |
1650 | $default_value = "n"; |
1651 | } |
1652 | print "\n"; |
1653 | print "List first (y/n) [$WHT$default_value$NRM]: $WHT"; |
1654 | $new_show = <STDIN>; |
1655 | if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
1656 | $list_special_folders_first = 'true'; |
eaace00e |
1657 | } else { |
35aaf666 |
1658 | $list_special_folders_first = 'false'; |
eaace00e |
1659 | } |
1660 | return $list_special_folders_first; |
911ad01c |
1661 | } |
1662 | |
598294a7 |
1663 | # Show special folders color |
2f287147 |
1664 | sub command28 { |
eaace00e |
1665 | print "SquirrelMail has what we call 'special folders' that are not\n"; |
1666 | print "manipulated and viewed like normal folders. Some examples of\n"; |
1667 | print "these folders would be INBOX, Trash, Sent, etc. This option\n"; |
1668 | print "wants to know if we should display special folders in a\n"; |
1669 | print "color than the other folders.\n"; |
1670 | print "\n"; |
1671 | |
35aaf666 |
1672 | if ( lc($use_special_folder_color) eq 'true' ) { |
eaace00e |
1673 | $default_value = "y"; |
1674 | } else { |
1675 | $default_value = "n"; |
1676 | } |
1677 | print "\n"; |
1678 | print "Show color (y/n) [$WHT$default_value$NRM]: $WHT"; |
1679 | $new_show = <STDIN>; |
1680 | if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
1681 | $use_special_folder_color = 'true'; |
eaace00e |
1682 | } else { |
35aaf666 |
1683 | $use_special_folder_color = 'false'; |
eaace00e |
1684 | } |
1685 | return $use_special_folder_color; |
911ad01c |
1686 | } |
1687 | |
598294a7 |
1688 | # Auto expunge |
2f287147 |
1689 | sub command29 { |
eaace00e |
1690 | print "The way that IMAP handles deleting messages is as follows. You\n"; |
1691 | print "mark the message as deleted, and then to 'really' delete it, you\n"; |
1692 | print "expunge it. This option asks if you want to just have messages\n"; |
1693 | print "marked as deleted, or if you want SquirrelMail to expunge the \n"; |
1694 | print "messages too.\n"; |
1695 | print "\n"; |
1696 | |
35aaf666 |
1697 | if ( lc($auto_expunge) eq 'true' ) { |
eaace00e |
1698 | $default_value = "y"; |
1699 | } else { |
1700 | $default_value = "n"; |
1701 | } |
1702 | print "Auto expunge (y/n) [$WHT$default_value$NRM]: $WHT"; |
1703 | $new_show = <STDIN>; |
1704 | if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
1705 | $auto_expunge = 'true'; |
eaace00e |
1706 | } else { |
35aaf666 |
1707 | $auto_expunge = 'false'; |
eaace00e |
1708 | } |
1709 | return $auto_expunge; |
911ad01c |
1710 | } |
1711 | |
598294a7 |
1712 | # Default sub of inbox |
2f287147 |
1713 | sub command210 { |
eaace00e |
1714 | print "Some IMAP servers (Cyrus) have all folders as subfolders of INBOX.\n"; |
1715 | print "This can cause some confusion in folder creation for users when\n"; |
1716 | print "they try to create folders and don't put it as a subfolder of INBOX\n"; |
1717 | print "and get permission errors. This option asks if you want folders\n"; |
1718 | print "to be subfolders of INBOX by default.\n"; |
1719 | print "\n"; |
1720 | |
35aaf666 |
1721 | if ( lc($default_sub_of_inbox) eq 'true' ) { |
eaace00e |
1722 | $default_value = "y"; |
1723 | } else { |
1724 | $default_value = "n"; |
1725 | } |
1726 | print "Default sub of INBOX (y/n) [$WHT$default_value$NRM]: $WHT"; |
1727 | $new_show = <STDIN>; |
1728 | if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
1729 | $default_sub_of_inbox = 'true'; |
eaace00e |
1730 | } else { |
35aaf666 |
1731 | $default_sub_of_inbox = 'false'; |
eaace00e |
1732 | } |
1733 | return $default_sub_of_inbox; |
911ad01c |
1734 | } |
1735 | |
598294a7 |
1736 | # Show contain subfolder option |
2f287147 |
1737 | sub command211 { |
eaace00e |
1738 | print "Some IMAP servers (UW) make it so that there are two types of\n"; |
1739 | print "folders. Those that contain messages, and those that contain\n"; |
1740 | print "subfolders. If this is the case for your server, set this to\n"; |
1741 | print "true, and it will ask the user whether the folder they are\n"; |
1742 | print "creating contains subfolders or messages.\n"; |
1743 | print "\n"; |
1744 | |
35aaf666 |
1745 | if ( lc($show_contain_subfolders_option) eq 'true' ) { |
eaace00e |
1746 | $default_value = "y"; |
1747 | } else { |
1748 | $default_value = "n"; |
1749 | } |
1750 | print "Show option (y/n) [$WHT$default_value$NRM]: $WHT"; |
1751 | $new_show = <STDIN>; |
1752 | if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
1753 | $show_contain_subfolders_option = 'true'; |
eaace00e |
1754 | } else { |
35aaf666 |
1755 | $show_contain_subfolders_option = 'false'; |
eaace00e |
1756 | } |
1757 | return $show_contain_subfolders_option; |
911ad01c |
1758 | } |
1759 | |
598294a7 |
1760 | # Default Unseen Notify |
24fc5dd2 |
1761 | sub command212 { |
eaace00e |
1762 | print "This option specifies where the users will receive notification\n"; |
1763 | print "about unseen messages by default. This is of course an option that\n"; |
1764 | print "can be changed on a user level.\n"; |
1765 | print " 1 = No notification\n"; |
1766 | print " 2 = Only on the INBOX\n"; |
1767 | print " 3 = On all folders\n"; |
1768 | print "\n"; |
1769 | |
1770 | print "Which one should be default (1,2,3)? [$WHT$default_unseen_notify$NRM]: $WHT"; |
1771 | $new_show = <STDIN>; |
85645192 |
1772 | if ( $new_show =~ /^[123]\n/i ) { |
eaace00e |
1773 | $default_unseen_notify = $new_show; |
1774 | } |
85645192 |
1775 | $default_unseen_notify =~ s/[\r\n]//g; |
eaace00e |
1776 | return $default_unseen_notify; |
24fc5dd2 |
1777 | } |
1778 | |
598294a7 |
1779 | # Default Unseen Type |
24fc5dd2 |
1780 | sub command213 { |
eaace00e |
1781 | print "Here you can define the default way that unseen messages will be displayed\n"; |
1782 | print "to the user in the folder listing on the left side.\n"; |
1783 | print " 1 = Only unseen messages (4)\n"; |
1784 | print " 2 = Unseen and Total messages (4/27)\n"; |
1785 | print "\n"; |
1786 | |
1787 | print "Which one should be default (1,2)? [$WHT$default_unseen_type$NRM]: $WHT"; |
1788 | $new_show = <STDIN>; |
85645192 |
1789 | if ( $new_show =~ /^[12]\n/i ) { |
eaace00e |
1790 | $default_unseen_type = $new_show; |
1791 | } |
85645192 |
1792 | $default_unseen_type =~ s/[\r\n]//g; |
eaace00e |
1793 | return $default_unseen_type; |
24fc5dd2 |
1794 | } |
1795 | |
f7bfc9de |
1796 | # Auto create special folders |
1797 | sub command214 { |
eaace00e |
1798 | print "Would you like the Sent, Trash, and Drafts folders to be created\n"; |
1799 | print "automatically print for you when a user logs in? If the user\n"; |
1800 | print "accidentally deletes their special folders, this option will\n"; |
1801 | print "automatically create it again for them.\n"; |
1802 | print "\n"; |
1803 | |
35aaf666 |
1804 | if ( lc($auto_create_special) eq 'true' ) { |
eaace00e |
1805 | $default_value = "y"; |
1806 | } else { |
1807 | $default_value = "n"; |
1808 | } |
1809 | print "Auto create special folders? (y/n) [$WHT$default_value$NRM]: $WHT"; |
1810 | $new_show = <STDIN>; |
1811 | if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
1812 | $auto_create_special = 'true'; |
eaace00e |
1813 | } else { |
35aaf666 |
1814 | $auto_create_special = 'false'; |
eaace00e |
1815 | } |
1816 | return $auto_create_special; |
f7bfc9de |
1817 | } |
1818 | |
598294a7 |
1819 | # Automatically delete folders |
4e85a37f |
1820 | sub command215 { |
d04165f3 |
1821 | if ( $imap_server_type eq "uw" ) { |
1822 | print "UW IMAP servers will not allow folders containing mail to also contain folders.\n"; |
1823 | print "Deleting folders will bypass the trash folder and be immediately deleted\n\n"; |
98468fba |
1824 | print "If this is not the correct value for your server,\n"; |
1825 | print "please use option D on the Main Menu to configure your server correctly.\n\n"; |
2eec12b5 |
1826 | print "Press any key to continue...\n"; |
1827 | $new_delete = <STDIN>; |
35aaf666 |
1828 | $delete_folder = 'true'; |
598294a7 |
1829 | } else { |
d04165f3 |
1830 | if ( $imap_server_type eq "courier" ) { |
1831 | print "Courier (or Courier-IMAP) IMAP servers may not support "; |
1832 | print "subfolders of Trash. \n"; |
1833 | print "Specifically, if Courier is set to always move messages to Trash, \n"; |
1834 | print "Trash will be treated by Courier as a special folder that does not \n"; |
1835 | print "allow subfolders. \n\n"; |
1836 | print "Please verify your Courier configuration, and test folder deletion \n"; |
598294a7 |
1837 | print "when changing this setting.\n\n"; |
d04165f3 |
1838 | } |
1839 | |
1840 | print "Are subfolders of the Trash supported by your IMAP server?\n"; |
1841 | print "If so, should deleted folders be sent to Trash?\n"; |
1842 | print "If not, say no (deleted folders should not be sent to Trash)\n\n"; |
1843 | # reversal of logic. |
1844 | # question was: Should folders be automatically deleted instead of sent to trash.. |
598294a7 |
1845 | # we've changed the question to make it more clear, |
1846 | # and are here handling that to avoid changing the answers.. |
35aaf666 |
1847 | if ( lc($delete_folder) eq 'true' ) { |
2eec12b5 |
1848 | $default_value = "n"; |
d04165f3 |
1849 | } else { |
1850 | $default_value = "y"; |
2eec12b5 |
1851 | } |
d04165f3 |
1852 | print "Send deleted folders to Trash? (y/n) [$WHT$default_value$NRM]: $WHT"; |
2eec12b5 |
1853 | $new_delete = <STDIN>; |
1854 | if ( ( $new_delete =~ /^y\n/i ) || ( ( $new_delete =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
1855 | $delete_folder = 'false'; |
d04165f3 |
1856 | } else { |
35aaf666 |
1857 | $delete_folder = 'true'; |
2eec12b5 |
1858 | } |
eaace00e |
1859 | } |
1860 | return $delete_folder; |
1861 | } |
24fc5dd2 |
1862 | |
ca85aabe |
1863 | #noselect fix |
1864 | sub command216 { |
1865 | print "Some IMAP server allow subfolders to exist even if the parent\n"; |
1866 | print "folders do not. This fixes some problems with the folder list\n"; |
1867 | print "when this is the case, causing the /NoSelect folders to be displayed\n"; |
1868 | print "\n"; |
1869 | |
35aaf666 |
1870 | if ( lc($noselect_fix_enable) eq 'true' ) { |
ca85aabe |
1871 | $default_value = "y"; |
1872 | } else { |
1873 | $default_value = "n"; |
1874 | } |
1875 | print "enable noselect fix? (y/n) [$WHT$noselect_fix_enable$NRM]: $WHT"; |
1876 | $noselect_fix_enable = <STDIN>; |
1877 | if ( ( $noselect_fix_enable =~ /^y\n/i ) || ( ( $noselect_fix_enable =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
1878 | $noselect_fix_enable = 'true'; |
ca85aabe |
1879 | } else { |
35aaf666 |
1880 | $noselect_fix_enable = 'false'; |
ca85aabe |
1881 | } |
1882 | return $noselect_fix_enable; |
1883 | } |
ccfb2029 |
1884 | ############# GENERAL OPTIONS ##################### |
1885 | |
ccfb2029 |
1886 | # Data directory |
3392dc86 |
1887 | sub command33a { |
e6566358 |
1888 | print "Specify the location for your data directory.\n"; |
1889 | print "The path name can be absolute or relative (to the config directory).\n"; |
1890 | print "It doesn't matter. Here are two examples:\n"; |
1891 | print " Absolute: /var/spool/data/\n"; |
598294a7 |
1892 | print " Relative: ../data/\n"; |
8bd9e0dd |
1893 | print "Relative paths to directories outside of the SquirrelMail distribution\n"; |
e6566358 |
1894 | print "will be converted to their absolute path equivalents in config.php.\n\n"; |
30e9932c |
1895 | print "Note: There are potential security risks with having a writeable directory\n"; |
e6566358 |
1896 | print "under the web server's root directory (ex: /home/httpd/html).\n"; |
1897 | print "For this reason, it is recommended to put the data directory\n"; |
2eec12b5 |
1898 | print "in an alternate location of your choice. \n"; |
1899 | print "\n"; |
1900 | |
eaace00e |
1901 | print "[$WHT$data_dir$NRM]: $WHT"; |
1902 | $new_data_dir = <STDIN>; |
1903 | if ( $new_data_dir eq "\n" ) { |
1904 | $new_data_dir = $data_dir; |
1905 | } else { |
85645192 |
1906 | $new_data_dir =~ s/[\r\n]//g; |
eaace00e |
1907 | } |
1908 | if ( $new_data_dir =~ /^\s*$/ ) { |
1909 | $new_data_dir = ""; |
1910 | } else { |
1911 | $new_data_dir =~ s/\/*$//g; |
1912 | $new_data_dir =~ s/$/\//g; |
1913 | } |
1914 | return $new_data_dir; |
ccfb2029 |
1915 | } |
1916 | |
1917 | # Attachment directory |
3392dc86 |
1918 | sub command33b { |
eaace00e |
1919 | print "Path to directory used for storing attachments while a mail is\n"; |
e6566358 |
1920 | print "being sent. The path name can be absolute or relative (to the config directory).\n"; |
1921 | print "It doesn't matter. Here are two examples:\n"; |
1922 | print " Absolute: /var/spool/attach/\n"; |
1923 | print " Relative: ../attach/\n"; |
1924 | print "Relative paths to directories outside of the SquirrelMail distribution\n"; |
1925 | print "will be converted to their absolute path equivalents in config.php.\n\n"; |
1926 | print "Note: There are a few security considerations regarding this\n"; |
eaace00e |
1927 | print "directory:\n"; |
1928 | print " 1. It should have the permission 733 (rwx-wx-wx) to make it\n"; |
1929 | print " impossible for a random person with access to the webserver\n"; |
1930 | print " to list files in this directory. Confidential data might\n"; |
1931 | print " be laying around in there.\n"; |
e6566358 |
1932 | print " Depending on your user:group assignments, 730 (rwx-wx---)\n"; |
1933 | print " may be possible, and more secure (e.g. root:apache)\n"; |
eaace00e |
1934 | print " 2. Since the webserver is not able to list the files in the\n"; |
1935 | print " content is also impossible for the webserver to delete files\n"; |
1936 | print " lying around there for too long.\n"; |
1937 | print " 3. It should probably be another directory than the data\n"; |
1938 | print " directory specified in option 3.\n"; |
1939 | print "\n"; |
1940 | |
1941 | print "[$WHT$attachment_dir$NRM]: $WHT"; |
1942 | $new_attachment_dir = <STDIN>; |
1943 | if ( $new_attachment_dir eq "\n" ) { |
1944 | $new_attachment_dir = $attachment_dir; |
1945 | } else { |
85645192 |
1946 | $new_attachment_dir =~ s/[\r\n]//g; |
eaace00e |
1947 | } |
1948 | if ( $new_attachment_dir =~ /^\s*$/ ) { |
1949 | $new_attachment_dir = ""; |
1950 | } else { |
1951 | $new_attachment_dir =~ s/\/*$//g; |
1952 | $new_attachment_dir =~ s/$/\//g; |
1953 | } |
1954 | return $new_attachment_dir; |
ccfb2029 |
1955 | } |
1956 | |
3392dc86 |
1957 | sub command33c { |
eaace00e |
1958 | print "The directory hash level setting allows you to configure the level\n"; |
598294a7 |
1959 | print "of hashing that SquirrelMail employs in your data and attachment\n"; |
eaace00e |
1960 | print "directories. This value must be an integer ranging from 0 to 4.\n"; |
598294a7 |
1961 | print "When this value is set to 0, SquirrelMail will simply store all\n"; |
eaace00e |
1962 | print "files as normal in the data and attachment directories. However,\n"; |
1963 | print "when set to a value from 1 to 4, a simple hashing scheme will be\n"; |
1964 | print "used to organize the files in this directory. In short, the crc32\n"; |
1965 | print "value for a username will be computed. Then, up to the first 4\n"; |
1966 | print "digits of the hash, as set by this configuration value, will be\n"; |
1967 | print "used to directory hash the files for that user in the data and\n"; |
1968 | print "attachment directory. This allows for better performance on\n"; |
1969 | print "servers with larger numbers of users.\n"; |
1970 | print "\n"; |
1971 | |
1972 | print "[$WHT$dir_hash_level$NRM]: $WHT"; |
1973 | $new_dir_hash_level = <STDIN>; |
1974 | if ( $new_dir_hash_level eq "\n" ) { |
1975 | $new_dir_hash_level = $dir_hash_level; |
1976 | } else { |
85645192 |
1977 | $new_dir_hash_level =~ s/[\r\n]//g; |
eaace00e |
1978 | } |
1979 | if ( ( int($new_dir_hash_level) < 0 ) |
1980 | || ( int($new_dir_hash_level) > 4 ) |
1981 | || !( int($new_dir_hash_level) eq $new_dir_hash_level ) ) { |
1982 | print "Invalid Directory Hash Level.\n"; |
1983 | print "Value must be an integer ranging from 0 to 4\n"; |
1984 | print "Hit enter to continue.\n"; |
1985 | $enter_key = <STDIN>; |
1986 | |
1987 | $new_dir_hash_level = $dir_hash_level; |
1988 | } |
1989 | |
1990 | return $new_dir_hash_level; |
3392dc86 |
1991 | } |
ccfb2029 |
1992 | |
1993 | sub command35 { |
eaace00e |
1994 | print "This is the default size (in pixels) of the left folder list.\n"; |
1995 | print "Default is 200, but you can set it to whatever you wish. This\n"; |
1996 | print "is a user preference, so this will only show up as their default.\n"; |
1997 | print "\n"; |
1998 | print "[$WHT$default_left_size$NRM]: $WHT"; |
1999 | $new_default_left_size = <STDIN>; |
2000 | if ( $new_default_left_size eq "\n" ) { |
2001 | $new_default_left_size = $default_left_size; |
2002 | } else { |
85645192 |
2003 | $new_default_left_size =~ s/[\r\n]//g; |
eaace00e |
2004 | } |
2005 | return $new_default_left_size; |
ccfb2029 |
2006 | } |
2007 | |
985f7c88 |
2008 | sub command36 { |
eaace00e |
2009 | print "Some IMAP servers only have lowercase letters in the usernames\n"; |
2010 | print "but they still allow people with uppercase to log in. This\n"; |
2011 | print "causes a problem with the user's preference files. This option\n"; |
2012 | print "transparently changes all usernames to lowercase."; |
2013 | print "\n"; |
2014 | |
35aaf666 |
2015 | if ( lc($force_username_lowercase) eq 'true' ) { |
eaace00e |
2016 | $default_value = "y"; |
2017 | } else { |
2018 | $default_value = "n"; |
2019 | } |
2020 | print "Convert usernames to lowercase (y/n) [$WHT$default_value$NRM]: $WHT"; |
2021 | $new_show = <STDIN>; |
2022 | if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
2023 | return 'true'; |
eaace00e |
2024 | } |
35aaf666 |
2025 | return 'false'; |
985f7c88 |
2026 | } |
2027 | |
0d15cd19 |
2028 | sub command37 { |
eaace00e |
2029 | print ""; |
2030 | print "\n"; |
985f7c88 |
2031 | |
35aaf666 |
2032 | if ( lc($default_use_priority) eq 'true' ) { |
eaace00e |
2033 | $default_value = "y"; |
2034 | } else { |
2035 | $default_value = "n"; |
2036 | } |
2037 | |
2038 | print "Allow users to specify priority of outgoing mail (y/n) [$WHT$default_value$NRM]: $WHT"; |
2039 | $new_show = <STDIN>; |
2040 | if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
2041 | return 'true'; |
eaace00e |
2042 | } |
35aaf666 |
2043 | return 'false'; |
826b7f71 |
2044 | } |
2045 | |
eaace00e |
2046 | sub command38 { |
2047 | print ""; |
2048 | print "\n"; |
2049 | |
35aaf666 |
2050 | if ( lc($default_hide_attribution) eq 'true' ) { |
eaace00e |
2051 | $default_value = "y"; |
2052 | } else { |
2053 | $default_value = "n"; |
2054 | } |
2055 | |
2056 | print "Hide SM attributions (y/n) [$WHT$default_value$NRM]: $WHT"; |
2057 | $new_show = <STDIN>; |
2058 | if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
2059 | return 'true'; |
eaace00e |
2060 | } |
35aaf666 |
2061 | return 'false'; |
eaace00e |
2062 | } |
826b7f71 |
2063 | |
8c21da0c |
2064 | sub command39 { |
eaace00e |
2065 | print ""; |
2066 | print "\n"; |
2067 | |
35aaf666 |
2068 | if ( lc($default_use_mdn) eq 'true' ) { |
eaace00e |
2069 | $default_value = "y"; |
2070 | } else { |
2071 | $default_value = "n"; |
2072 | } |
2073 | |
2074 | print "Enable support for read/delivery receipt support (y/n) [$WHT$default_value$NRM]: $WHT"; |
2075 | $new_show = <STDIN>; |
2076 | if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
2077 | return 'true'; |
eaace00e |
2078 | } |
35aaf666 |
2079 | return 'false'; |
8c21da0c |
2080 | } |
2081 | |
8a7d0669 |
2082 | sub command310 { |
2eec12b5 |
2083 | print "This allows you to prevent the editing of the user's name and "; |
2084 | print "email address. This is mainly useful when used with the "; |
8a7d0669 |
2085 | print "retrieveuserdata plugin\n"; |
2086 | print "\n"; |
eaace00e |
2087 | |
35aaf666 |
2088 | if ( lc($edit_identity) eq 'true' ) { |
8a7d0669 |
2089 | $default_value = "y"; |
2090 | } else { |
2091 | $default_value = "n"; |
2092 | } |
2eec12b5 |
2093 | print "Allow editing of user's identity? (y/n) [$WHT$default_value$NRM]: $WHT"; |
8a7d0669 |
2094 | $new_edit = <STDIN>; |
eaace00e |
2095 | if ( ( $new_edit =~ /^y\n/i ) || ( ( $new_edit =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
2096 | $edit_identity = 'true'; |
2097 | $edit_name = 'true'; |
8a7d0669 |
2098 | } else { |
35aaf666 |
2099 | $edit_identity = 'false'; |
2eec12b5 |
2100 | $edit_name = command311(); |
8a7d0669 |
2101 | } |
2102 | return $edit_identity; |
2103 | } |
2104 | |
2105 | sub command311 { |
2eec12b5 |
2106 | print "As a follow-up, this option allows you to choose if the user "; |
2107 | print "can edit their full name even when you don't want them to "; |
2108 | print "change their username\n"; |
8a7d0669 |
2109 | print "\n"; |
2110 | |
35aaf666 |
2111 | if ( lc($edit_name) eq 'true' ) { |
8a7d0669 |
2112 | $default_value = "y"; |
2113 | } else { |
2114 | $default_value = "n"; |
2115 | } |
2116 | print "Allow editing of the users full name? (y/n) [$WHT$default_value$NRM]: $WHT"; |
2117 | $new_edit = <STDIN>; |
eaace00e |
2118 | if ( ( $new_edit =~ /^y\n/i ) || ( ( $new_edit =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
2119 | $edit_name = 'true'; |
8a7d0669 |
2120 | } else { |
35aaf666 |
2121 | $edit_name = 'false'; |
8a7d0669 |
2122 | } |
2123 | return $edit_name; |
2124 | } |
8c21da0c |
2125 | |
7c612fdd |
2126 | sub command312 { |
2127 | print "This option allows you to choose if users can use thread sorting\n"; |
2128 | print "Your IMAP server must support the THREAD command for this to work\n"; |
35aaf666 |
2129 | print "PHP versions later than 4.0.3 recommended\n"; |
7c612fdd |
2130 | print "\n"; |
2131 | |
35aaf666 |
2132 | if ( lc($allow_thread_sort) eq 'true' ) { |
7c612fdd |
2133 | $default_value = "y"; |
2134 | } else { |
2135 | $default_value = "n"; |
2136 | } |
2137 | print "Allow server side thread sorting? (y/n) [$WHT$default_value$NRM]: $WHT"; |
2138 | $allow_thread_sort = <STDIN>; |
2139 | if ( ( $allow_thread_sort =~ /^y\n/i ) || ( ( $allow_thread_sort =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
2140 | $allow_thread_sort = 'true'; |
7c612fdd |
2141 | } else { |
35aaf666 |
2142 | $allow_thread_sort = 'false'; |
7c612fdd |
2143 | } |
2144 | return $allow_thread_sort; |
2145 | } |
2146 | |
aa0da530 |
2147 | sub command313 { |
2148 | print "This option allows you to choose if SM uses server-side sorting\n"; |
2149 | print "Your IMAP server must support the SORT command for this to work\n"; |
2150 | print "\n"; |
2151 | |
aacc7bec |
2152 | if ( lc($allow_server_sort) eq 'true' ) { |
aa0da530 |
2153 | $default_value = "y"; |
2154 | } else { |
2155 | $default_value = "n"; |
2156 | } |
aacc7bec |
2157 | print "Allow server-side sorting? (y/n) [$WHT$default_value$NRM]: $WHT"; |
2158 | $allow_server_sort = <STDIN>; |
2159 | if ( ( $allow_server_sort =~ /^y\n/i ) || ( ( $allow_server_sort =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
2160 | $allow_server_sort = 'true'; |
aa0da530 |
2161 | } else { |
aacc7bec |
2162 | $allow_server_sort = 'false'; |
aa0da530 |
2163 | } |
aacc7bec |
2164 | return $allow_server_sort; |
aa0da530 |
2165 | } |
2166 | |
65ffb3ce |
2167 | sub command314 { |
2168 | print "This option allows you to choose if SM uses charset search\n"; |
2169 | print "Your IMAP server must support the SEARCH CHARSET command for this to work\n"; |
2170 | print "\n"; |
2171 | |
35aaf666 |
2172 | if ( lc($allow_charset_search) eq 'true' ) { |
65ffb3ce |
2173 | $default_value = "y"; |
2174 | } else { |
2175 | $default_value = "n"; |
2176 | } |
2177 | print "Allow charset searching? (y/n) [$WHT$default_value$NRM]: $WHT"; |
2178 | $allow_charset_search = <STDIN>; |
2179 | if ( ( $allow_charset_search =~ /^y\n/i ) || ( ( $allow_charset_search =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
2180 | $allow_charset_search = 'true'; |
65ffb3ce |
2181 | } else { |
35aaf666 |
2182 | $allow_charset_search = 'false'; |
65ffb3ce |
2183 | } |
2184 | return $allow_charset_search; |
2185 | } |
2186 | |
4ecd3a70 |
2187 | # command315 (UID support) obsoleted. |
3c7ee482 |
2188 | |
de74555e |
2189 | # advanced search option |
6c499577 |
2190 | sub command316 { |
66bfb27b |
2191 | print "This option allows you to control the use of advanced search form.\n"; |
0f1b00b8 |
2192 | print " 0 = enable basic search only\n"; |
2193 | print " 1 = enable advanced search only\n"; |
2194 | print " 2 = enable both\n"; |
2195 | print "\n"; |
2196 | |
2197 | print "Allowed search (0,1,2)? [$WHT$allow_advanced_search$NRM]: $WHT"; |
2198 | $new_allow_advanced_search = <STDIN>; |
85645192 |
2199 | if ( $new_allow_advanced_search =~ /^[012]\n/i ) { |
0f1b00b8 |
2200 | $allow_advanced_search = $new_allow_advanced_search; |
de74555e |
2201 | } |
85645192 |
2202 | $allow_advanced_search =~ s/[\r\n]//g; |
66bfb27b |
2203 | return $allow_advanced_search; |
de74555e |
2204 | } |
2205 | |
2206 | |
2207 | sub command317 { |
35aaf666 |
2208 | print "This option allows you to change the name of the PHP session used\n"; |
2209 | print "by SquirrelMail. Unless you know what you are doing, you probably\n"; |
2210 | print "don't need or want to change this from the default of SQMSESSID.\n"; |
6c499577 |
2211 | print "[$WHT$session_name$NRM]: $WHT"; |
2212 | $new_session_name = <STDIN>; |
35aaf666 |
2213 | chomp($new_session_name); |
6614128e |
2214 | if ( $new_session_name eq "" ) { |
6c499577 |
2215 | $new_session_name = $session_name; |
2216 | } |
2217 | return $new_session_name; |
2218 | } |
2219 | |
dcc1cc82 |
2220 | |
65ffb3ce |
2221 | |
ccfb2029 |
2222 | sub command41 { |
2eec12b5 |
2223 | print "\nDefine the themes that you wish to use. If you have added "; |
2224 | print "a theme of your own, just follow the instructions (?) about how to add "; |
eaace00e |
2225 | print "them. You can also change the default theme.\n"; |
2226 | print "[theme] command (?=help) > "; |
2227 | $input = <STDIN>; |
85645192 |
2228 | $input =~ s/[\r\n]//g; |
eaace00e |
2229 | while ( $input ne "d" ) { |
2230 | if ( $input =~ /^\s*l\s*/i ) { |
2231 | $count = 0; |
2232 | while ( $count <= $#theme_name ) { |
2233 | if ( $count == $theme_default ) { |
2234 | print " *"; |
2235 | } else { |
2236 | print " "; |
2237 | } |
2eec12b5 |
2238 | if ( $count < 10 ) { |
2239 | print " "; |
2240 | } |
eaace00e |
2241 | $name = $theme_name[$count]; |
2eec12b5 |
2242 | $num_spaces = 35 - length($name); |
eaace00e |
2243 | for ( $i = 0 ; $i < $num_spaces ; $i++ ) { |
2244 | $name = $name . " "; |
2245 | } |
2246 | |
2247 | print " $count. $name"; |
2248 | print "($theme_path[$count])\n"; |
2249 | |
2250 | $count++; |
ccfb2029 |
2251 | } |
eaace00e |
2252 | } elsif ( $input =~ /^\s*m\s*[0-9]+/i ) { |
2253 | $old_def = $theme_default; |
2254 | $theme_default = $input; |
2255 | $theme_default =~ s/^\s*m\s*//; |
2256 | if ( ( $theme_default > $#theme_name ) || ( $theme_default < 0 ) ) { |
2257 | print "Cannot set default theme to $theme_default. That theme does not exist.\n"; |
2258 | $theme_default = $old_def; |
ccfb2029 |
2259 | } |
eaace00e |
2260 | } elsif ( $input =~ /^\s*\+/ ) { |
2261 | print "What is the name of this theme: "; |
2262 | $name = <STDIN>; |
85645192 |
2263 | $name =~ s/[\r\n]//g; |
eaace00e |
2264 | $theme_name[ $#theme_name + 1 ] = $name; |
2265 | print "Be sure to put ../themes/ before the filename.\n"; |
2266 | print "What file is this stored in (ex: ../themes/default_theme.php): "; |
2267 | $name = <STDIN>; |
85645192 |
2268 | $name =~ s/[\r\n]//g; |
eaace00e |
2269 | $theme_path[ $#theme_path + 1 ] = $name; |
2270 | } elsif ( $input =~ /^\s*-\s*[0-9]?/ ) { |
2271 | if ( $input =~ /[0-9]+\s*$/ ) { |
2272 | $rem_num = $input; |
2273 | $rem_num =~ s/^\s*-\s*//g; |
2274 | $rem_num =~ s/\s*$//; |
2275 | } else { |
2276 | $rem_num = $#theme_name; |
ccfb2029 |
2277 | } |
eaace00e |
2278 | if ( $rem_num == $theme_default ) { |
2279 | print "You cannot remove the default theme!\n"; |
2280 | } else { |
2281 | $count = 0; |
2282 | @new_theme_name = (); |
2283 | @new_theme_path = (); |
2284 | while ( $count <= $#theme_name ) { |
2285 | if ( $count != $rem_num ) { |
2286 | @new_theme_name = ( @new_theme_name, $theme_name[$count] ); |
2287 | @new_theme_path = ( @new_theme_path, $theme_path[$count] ); |
2288 | } |
2289 | $count++; |
2290 | } |
2291 | @theme_name = @new_theme_name; |
2292 | @theme_path = @new_theme_path; |
2293 | if ( $theme_default > $rem_num ) { |
2294 | $theme_default--; |
2295 | } |
8442ac08 |
2296 | } |
eaace00e |
2297 | } elsif ( $input =~ /^\s*t\s*/i ) { |
2298 | print "\nStarting detection...\n\n"; |
2299 | |
2300 | opendir( DIR, "../themes" ); |
2301 | @files = grep { /\.php$/i } readdir(DIR); |
2302 | $cnt = 0; |
2303 | while ( $cnt <= $#files ) { |
2304 | $filename = "../themes/" . $files[$cnt]; |
2305 | if ( $filename ne "../themes/index.php" ) { |
2306 | $found = 0; |
2307 | for ( $x = 0 ; $x <= $#theme_path ; $x++ ) { |
2308 | if ( $theme_path[$x] eq $filename ) { |
2309 | $found = 1; |
2310 | } |
2311 | } |
2312 | if ( $found != 1 ) { |
2313 | print "** Found theme: $filename\n"; |
2314 | print " What is its name? "; |
2315 | $nm = <STDIN>; |
85645192 |
2316 | $nm =~ s/[\n\r]//g; |
eaace00e |
2317 | $theme_name[ $#theme_name + 1 ] = $nm; |
2318 | $theme_path[ $#theme_path + 1 ] = $filename; |
2319 | } |
2320 | } |
2321 | $cnt++; |
8442ac08 |
2322 | } |
eaace00e |
2323 | print "\n"; |
2324 | for ( $cnt = 0 ; $cnt <= $#theme_path ; $cnt++ ) { |
2325 | $filename = $theme_path[$cnt]; |
2326 | if ( !( -e $filename ) ) { |
2327 | print " Removing $filename (file not found)\n"; |
2328 | $offset = 0; |
2329 | @new_theme_name = (); |
2330 | @new_theme_path = (); |
2331 | for ( $x = 0 ; $x < $#theme_path ; $x++ ) { |
2332 | if ( $theme_path[$x] eq $filename ) { |
2333 | $offset = 1; |
2334 | } |
2335 | if ( $offset == 1 ) { |
2336 | $new_theme_name[$x] = $theme_name[ $x + 1 ]; |
2337 | $new_theme_path[$x] = $theme_path[ $x + 1 ]; |
2338 | } else { |
2339 | $new_theme_name[$x] = $theme_name[$x]; |
2340 | $new_theme_path[$x] = $theme_path[$x]; |
2341 | } |
2342 | } |
2343 | @theme_name = @new_theme_name; |
2344 | @theme_path = @new_theme_path; |
2345 | } |
2346 | } |
2347 | print "\nDetection complete!\n\n"; |
2348 | |
2349 | closedir DIR; |
2350 | } elsif ( $input =~ /^\s*\?\s*/ ) { |
2351 | print ".-------------------------.\n"; |
2352 | print "| t (detect themes) |\n"; |
2353 | print "| + (add theme) |\n"; |
2354 | print "| - N (remove theme) |\n"; |
2355 | print "| m N (mark default) |\n"; |
2356 | print "| l (list themes) |\n"; |
2357 | print "| d (done) |\n"; |
2358 | print "`-------------------------'\n"; |
2359 | } |
2360 | print "[theme] command (?=help) > "; |
2361 | $input = <STDIN>; |
85645192 |
2362 | $input =~ s/[\r\n]//g; |
eaace00e |
2363 | } |
2364 | } |
ccfb2029 |
2365 | |
6f3bfa54 |
2366 | # Theme - CSS file |
2367 | sub command42 { |
eaace00e |
2368 | print "You may specify a cascading style-sheet (CSS) file to be included\n"; |
2369 | print "on each html page generated by SquirrelMail. The CSS file is useful\n"; |
2370 | print "for specifying a site-wide font. If you're not familiar with CSS\n"; |
2371 | print "files, leave this blank.\n"; |
2372 | print "\n"; |
2373 | print "To clear out an existing value, just type a space for the input.\n"; |
2374 | print "\n"; |
25be56ab |
2375 | print "Please be aware of the following: \n"; |
2376 | print " - Relative URLs are relative to the config dir\n"; |
2377 | print " to use the themes directory, use ../themes/css/newdefault.css\n"; |
2378 | print " - To specify a css file defined outside the SquirrelMail source tree\n"; |
2379 | print " use the absolute URL the webserver would use to include the file\n"; |
2380 | print " e.g. http://some.host.com/css/mystyle.css or /css/mystyle.css\n"; |
8bd9e0dd |
2381 | print "\n"; |
eaace00e |
2382 | print "[$WHT$theme_css$NRM]: $WHT"; |
2383 | $new_theme_css = <STDIN>; |
6f3bfa54 |
2384 | |
eaace00e |
2385 | if ( $new_theme_css eq "\n" ) { |
2386 | $new_theme_css = $theme_css; |
2387 | } else { |
85645192 |
2388 | $new_theme_css =~ s/[\r\n]//g; |
eaace00e |
2389 | } |
2390 | $new_theme_css =~ s/^\s*//; |
2391 | return $new_theme_css; |
2392 | } |
6f3bfa54 |
2393 | |
1e0628fb |
2394 | sub command61 { |
eaace00e |
2395 | print "You can now define different LDAP servers.\n"; |
2396 | print "[ldap] command (?=help) > "; |
2397 | $input = <STDIN>; |
85645192 |
2398 | $input =~ s/[\r\n]//g; |
eaace00e |
2399 | while ( $input ne "d" ) { |
2400 | if ( $input =~ /^\s*l\s*/i ) { |
2401 | $count = 0; |
2402 | while ( $count <= $#ldap_host ) { |
2403 | print "$count. $ldap_host[$count]\n"; |
2404 | print " base: $ldap_base[$count]\n"; |
2405 | if ( $ldap_charset[$count] ) { |
2406 | print " charset: $ldap_charset[$count]\n"; |
2407 | } |
2408 | if ( $ldap_port[$count] ) { |
2409 | print " port: $ldap_port[$count]\n"; |
2410 | } |
2411 | if ( $ldap_name[$count] ) { |
2412 | print " name: $ldap_name[$count]\n"; |
2413 | } |
2414 | if ( $ldap_maxrows[$count] ) { |
2415 | print " maxrows: $ldap_maxrows[$count]\n"; |
2416 | } |
43397658 |
2417 | if ( $ldap_filter[$count] ) { |
2418 | print " filter: $ldap_filter[$count]\n"; |
2419 | } |
30e9932c |
2420 | if ( $ldap_binddn[$count] ) { |
2421 | print " binddn: $ldap_binddn[$count]\n"; |
2422 | if ( $ldap_bindpw[$count] ) { |
2423 | print " bindpw: $ldap_bindpw[$count]\n"; |
2424 | } |
2425 | } |
43397658 |
2426 | if ( $ldap_protocol[$count] ) { |
30e9932c |
2427 | print " protocol: $ldap_protocol[$count]\n"; |
2428 | } |
43397658 |
2429 | if ( $ldap_limit_scope[$count] ) { |
2430 | print " limit_scope: $ldap_limit_scope[$count]\n"; |
2431 | } |
30e9932c |
2432 | |
eaace00e |
2433 | print "\n"; |
2434 | $count++; |
a93b12ba |
2435 | } |
eaace00e |
2436 | } elsif ( $input =~ /^\s*\+/ ) { |
2437 | $sub = $#ldap_host + 1; |
2438 | |
2439 | print "First, we need to have the hostname or the IP address where\n"; |
2440 | print "this LDAP server resides. Example: ldap.bigfoot.com\n"; |
2441 | print "hostname: "; |
2442 | $name = <STDIN>; |
85645192 |
2443 | $name =~ s/[\r\n]//g; |
eaace00e |
2444 | $ldap_host[$sub] = $name; |
2445 | |
2446 | print "\n"; |
2447 | |
2448 | print "Next, we need the server root (base dn). For this, an empty\n"; |
2449 | print "string is allowed.\n"; |
2450 | print "Example: ou=member_directory,o=netcenter.com\n"; |
2451 | print "base: "; |
2452 | $name = <STDIN>; |
85645192 |
2453 | $name =~ s/[\r\n]//g; |
eaace00e |
2454 | $ldap_base[$sub] = $name; |
2455 | |
2456 | print "\n"; |
2457 | |
2458 | print "This is the TCP/IP port number for the LDAP server. Default\n"; |
2459 | print "port is 389. This is optional. Press ENTER for default.\n"; |
2460 | print "port: "; |
2461 | $name = <STDIN>; |
85645192 |
2462 | $name =~ s/[\r\n]//g; |
eaace00e |
2463 | $ldap_port[$sub] = $name; |
2464 | |
2465 | print "\n"; |
2466 | |
2467 | print "This is the charset for the server. Default is utf-8. This\n"; |
2468 | print "is also optional. Press ENTER for default.\n"; |
2469 | print "charset: "; |
2470 | $name = <STDIN>; |
85645192 |
2471 | $name =~ s/[\r\n]//g; |
eaace00e |
2472 | $ldap_charset[$sub] = $name; |
2473 | |
2474 | print "\n"; |
2475 | |
2476 | print "This is the name for the server, used to tag the results of\n"; |
2477 | print "the search. Default it \"LDAP: hostname\". Press ENTER for default\n"; |
2478 | print "name: "; |
2479 | $name = <STDIN>; |
85645192 |
2480 | $name =~ s/[\r\n]//g; |
eaace00e |
2481 | $ldap_name[$sub] = $name; |
2482 | |
2483 | print "\n"; |
2484 | |
2485 | print "You can specify the maximum number of rows in the search result.\n"; |
2486 | print "Default is unlimited. Press ENTER for default.\n"; |
2487 | print "maxrows: "; |
2488 | $name = <STDIN>; |
85645192 |
2489 | $name =~ s/[\r\n]//g; |
eaace00e |
2490 | $ldap_maxrows[$sub] = $name; |
2491 | |
a93b12ba |
2492 | print "\n"; |
eaace00e |
2493 | |
43397658 |
2494 | print "You can specify an additional search filter.\n"; |
2495 | print "This could be something like \"(objectclass=posixAccount)\".\n"; |
2496 | print "Default is no extra filter. Press ENTER for default.\n"; |
2497 | print "filter: "; |
2498 | $name = <STDIN>; |
2499 | $name =~ s/[\r|\n]//g; |
2500 | $ldap_filter[$sub] = $name; |
2501 | |
2502 | print "\n"; |
2503 | |
30e9932c |
2504 | print "If your LDAP server does not like anonymous logins, you can specify bind DN.\n"; |
2505 | print "Default is none, anonymous bind. Press ENTER for default.\n"; |
2506 | print "binddn: "; |
2507 | $name = <STDIN>; |
85645192 |
2508 | $name =~ s/[\r\n]//g; |
30e9932c |
2509 | $ldap_binddn[$sub] = $name; |
2510 | |
2511 | print "\n"; |
2512 | |
2513 | if ( $ldap_binddn[$sub] ne '' ) { |
2514 | |
2515 | print "Now, please specify password for that DN.\n"; |
2516 | print "bindpw: "; |
2517 | $name = <STDIN>; |
85645192 |
2518 | $name =~ s/[\r\n]//g; |
30e9932c |
2519 | $ldap_bindpw[$sub] = $name; |
2520 | |
2521 | print "\n"; |
2522 | } |
2523 | |
43397658 |
2524 | print "You can specify bind protocol version here.\n"; |
30e9932c |
2525 | print "Default protocol version depends on your php ldap settings.\n"; |
43397658 |
2526 | print "Press ENTER for default.\n"; |
30e9932c |
2527 | print "protocol: "; |
2528 | $name = <STDIN>; |
85645192 |
2529 | $name =~ s/[\r\n]//g; |
30e9932c |
2530 | $ldap_protocol[$sub] = $name; |
2531 | |
2532 | print "\n"; |
2533 | |
43397658 |
2534 | print "You can control search scope here.\n"; |
2535 | print "This option is specific to Microsoft ADS implementation.\n"; |
2536 | print "It requires use of v3 or newer LDAP protocol.\n"; |
2537 | print "Don't enable it, if you use other LDAP server.\n"; |
2538 | print "\n"; |
2539 | print "Limit ldap scope? (y/N):"; |
2540 | $name = <STDIN>; |
2541 | if ( $name =~ /^y\n/i ) { |
2542 | $name = 'true'; |
2543 | } else { |
2544 | $name = 'false'; |
2545 | } |
2546 | $ldap_limit_scope[$sub] = $name; |
2547 | |
2548 | print "\n"; |
2549 | |
eaace00e |
2550 | } elsif ( $input =~ /^\s*-\s*[0-9]?/ ) { |
2551 | if ( $input =~ /[0-9]+\s*$/ ) { |
2552 | $rem_num = $input; |
2553 | $rem_num =~ s/^\s*-\s*//g; |
2554 | $rem_num =~ s/\s*$//; |
2555 | } else { |
2556 | $rem_num = $#ldap_host; |
2557 | } |
2558 | $count = 0; |
2559 | @new_ldap_host = (); |
2560 | @new_ldap_base = (); |
2561 | @new_ldap_port = (); |
2562 | @new_ldap_name = (); |
2563 | @new_ldap_charset = (); |
2564 | @new_ldap_maxrows = (); |
43397658 |
2565 | @new_ldap_filter = (); |
30e9932c |
2566 | @new_ldap_bindpw = (); |
2567 | @new_ldap_binddn = (); |
2568 | @new_ldap_protocol = (); |
43397658 |
2569 | @new_ldap_limit_scope = (); |
eaace00e |
2570 | |
2571 | while ( $count <= $#ldap_host ) { |
2572 | if ( $count != $rem_num ) { |
2573 | @new_ldap_host = ( @new_ldap_host, $ldap_host[$count] ); |
2574 | @new_ldap_base = ( @new_ldap_base, $ldap_base[$count] ); |
2575 | @new_ldap_port = ( @new_ldap_port, $ldap_port[$count] ); |
2576 | @new_ldap_name = ( @new_ldap_name, $ldap_name[$count] ); |
2577 | @new_ldap_charset = ( @new_ldap_charset, $ldap_charset[$count] ); |
2578 | @new_ldap_maxrows = ( @new_ldap_maxrows, $ldap_maxrows[$count] ); |
43397658 |
2579 | @new_ldap_filter = ( @new_ldap_filter, $ldap_filter[$count] ); |
30e9932c |
2580 | @new_ldap_binddn = ( @new_ldap_binddn, $ldap_binddn[$count] ); |
2581 | @new_ldap_bindpw = ( @new_ldap_bindpw, $ldap_bindpw[$count] ); |
2582 | @new_ldap_protocol = ( @new_ldap_protocol, $ldap_protocol[$count] ); |
43397658 |
2583 | @new_ldap_limit_scope = ( @new_ldap_limit_scope, $ldap_limit_scope[$count] ); |
eaace00e |
2584 | } |
2585 | $count++; |
1e0628fb |
2586 | } |
eaace00e |
2587 | @ldap_host = @new_ldap_host; |
2588 | @ldap_base = @new_ldap_base; |
2589 | @ldap_port = @new_ldap_port; |
2590 | @ldap_name = @new_ldap_name; |
2591 | @ldap_charset = @new_ldap_charset; |
2592 | @ldap_maxrows = @new_ldap_maxrows; |
43397658 |
2593 | @ldap_filter = @new_ldap_filter; |
30e9932c |
2594 | @ldap_binddn = @new_ldap_binddn; |
2595 | @ldap_bindpw = @new_ldap_bindpw; |
2596 | @ldap_protocol = @new_ldap_protocol; |
43397658 |
2597 | @ldap_limit_scope = @new_ldap_limit_scope; |
30e9932c |
2598 | |
eaace00e |
2599 | } elsif ( $input =~ /^\s*\?\s*/ ) { |
2600 | print ".-------------------------.\n"; |
2601 | print "| + (add host) |\n"; |
2602 | print "| - N (remove host) |\n"; |
2603 | print "| l (list hosts) |\n"; |
2604 | print "| d (done) |\n"; |
2605 | print "`-------------------------'\n"; |
2606 | } |
2607 | print "[ldap] command (?=help) > "; |
2608 | $input = <STDIN>; |
85645192 |
2609 | $input =~ s/[\r\n]//g; |
eaace00e |
2610 | } |
2611 | } |
1e0628fb |
2612 | |
3806fa52 |
2613 | sub command62 { |
eaace00e |
2614 | print "Some of our developers have come up with very good javascript interface\n"; |
2615 | print "for searching through address books, however, our original goals said\n"; |
2616 | print "that we would be 100% HTML. In order to make it possible to use their\n"; |
2617 | print "interface, and yet stick with our goals, we have also written a plain\n"; |
2618 | print "HTML version of the search. Here, you can choose which version to use.\n"; |
2619 | print "\n"; |
2620 | print "This is just the default value. It is also a user option that each\n"; |
2621 | print "user can configure individually\n"; |
2622 | print "\n"; |
2623 | |
35aaf666 |
2624 | if ( lc($default_use_javascript_addr_book) eq 'true' ) { |
eaace00e |
2625 | $default_value = "y"; |
2626 | } else { |
35aaf666 |
2627 | $default_use_javascript_addr_book = 'false'; |
eaace00e |
2628 | $default_value = "n"; |
2629 | } |
2630 | print "Use javascript version by default (y/n) [$WHT$default_value$NRM]: $WHT"; |
2631 | $new_show = <STDIN>; |
2632 | if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
2633 | $default_use_javascript_addr_book = 'true'; |
eaace00e |
2634 | } else { |
35aaf666 |
2635 | $default_use_javascript_addr_book = 'false'; |
eaace00e |
2636 | } |
2637 | return $default_use_javascript_addr_book; |
3806fa52 |
2638 | } |
1e0628fb |
2639 | |
4272758c |
2640 | # global filebased address book |
2641 | sub command63 { |
2642 | print "If you want to use global file address book, then you\n"; |
2643 | print "must set this option to a valid value. If option does\n"; |
2644 | print "not have path elements, system assumes that file is\n"; |
2645 | print "stored in data directory. If relative path is set, it is\n"; |
598294a7 |
2646 | print "relative to main SquirrelMail directory. If value is empty,\n"; |
4272758c |
2647 | print "address book is not enabled.\n"; |
2648 | print "\n"; |
2649 | |
2650 | print "[$WHT$abook_global_file$NRM]: $WHT"; |
2651 | $new_abook_global_file = <STDIN>; |
2652 | if ( $new_abook_global_file eq "\n" ) { |
2653 | $new_abook_global_file = $abook_global_file; |
2654 | } else { |
2655 | $new_abook_global_file =~ s/[\r\n]//g; |
2656 | } |
2657 | return $new_abook_global_file; |
2658 | } |
2659 | |
2660 | # writing into global filebased abook control |
2661 | sub command64 { |
7eb64c3e |
2662 | print "This setting controls writing into global file address\n"; |
2663 | print "book options. Address book file must be writeable by\n"; |
2664 | print "webserver's user, if you want to enable this option.\n"; |
4272758c |
2665 | print "\n"; |
2666 | |
2667 | if ( lc($abook_global_file_writeable) eq 'true' ) { |
2668 | $default_value = "y"; |
2669 | } else { |
2670 | $abook_global_file_writeable = 'false'; |
2671 | $default_value = "n"; |
2672 | } |
7eb64c3e |
2673 | print "Allow writing into global file address book (y/n) [$WHT$default_value$NRM]: $WHT"; |
4272758c |
2674 | $new_show = <STDIN>; |
2675 | if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
2676 | $abook_global_file_writeable = 'true'; |
2677 | } else { |
2678 | $abook_global_file_writeable = 'false'; |
2679 | } |
2680 | return $abook_global_file_writeable; |
2681 | } |
2682 | |
71d3f882 |
2683 | # listing of global filebased abook control |
2684 | sub command65 { |
2685 | print "This setting controls listing of global file address\n"; |
2686 | print "book in addresses page.\n"; |
2687 | print "\n"; |
2688 | |
2689 | if ( lc($abook_global_file_listing) eq 'true' ) { |
2690 | $default_value = "y"; |
2691 | } else { |
2692 | $abook_global_file_listing = 'false'; |
2693 | $default_value = "n"; |
2694 | } |
2695 | print "Allow listing of global file address book (y/n) [$WHT$default_value$NRM]: $WHT"; |
2696 | $new_show = <STDIN>; |
2697 | if ( ( $new_show =~ /^y\n/i ) || ( ( $new_show =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
2698 | $abook_global_file_listing = 'true'; |
2699 | } else { |
2700 | $abook_global_file_listing = 'false'; |
2701 | } |
2702 | return $abook_global_file_listing; |
2703 | } |
2704 | |
497203d4 |
2705 | sub command91 { |
eaace00e |
2706 | print "If you want to store your users address book details in a database then\n"; |
2707 | print "you need to set this DSN to a valid value. The format for this is:\n"; |
2708 | print "mysql://user:pass\@hostname/dbname\n"; |
2709 | print "Where mysql can be one of the databases PHP supports, the most common\n"; |
2710 | print "of these are mysql, msql and pgsql\n"; |
2711 | print "If the DSN is left empty (hit space and then return) the database\n"; |
2712 | print "related code for address books will not be used\n"; |
2713 | print "\n"; |
2714 | |
2715 | if ( $addrbook_dsn eq "" ) { |
2716 | $default_value = "Disabled"; |
2717 | } else { |
2718 | $default_value = $addrbook_dsn; |
2719 | } |
2720 | print "[$WHT$addrbook_dsn$NRM]: $WHT"; |
2721 | $new_dsn = <STDIN>; |
2722 | if ( $new_dsn eq "\n" ) { |
2723 | $new_dsn = ""; |
2724 | } else { |
85645192 |
2725 | $new_dsn =~ s/[\r\n]//g; |
eaace00e |
2726 | $new_dsn =~ s/^\s+$//g; |
2727 | } |
2728 | return $new_dsn; |
497203d4 |
2729 | } |
ccfb2029 |
2730 | |
4f40a59d |
2731 | sub command92 { |
eaace00e |
2732 | print "This is the name of the table you want to store the address book\n"; |
2733 | print "data in, it defaults to 'address'\n"; |
2734 | print "\n"; |
2735 | print "[$WHT$addrbook_table$NRM]: $WHT"; |
2736 | $new_table = <STDIN>; |
2737 | if ( $new_table eq "\n" ) { |
2738 | $new_table = $addrbook_table; |
2739 | } else { |
85645192 |
2740 | $new_table =~ s/[\r\n]//g; |
eaace00e |
2741 | } |
2742 | return $new_table; |
4f40a59d |
2743 | } |
2744 | |
3499f99f |
2745 | sub command93 { |
2746 | print "If you want to store your users preferences in a database then\n"; |
2747 | print "you need to set this DSN to a valid value. The format for this is:\n"; |
2748 | print "mysql://user:pass\@hostname/dbname\n"; |
2749 | print "Where mysql can be one of the databases PHP supports, the most common\n"; |
2750 | print "of these are mysql, msql and pgsql\n"; |
2751 | print "If the DSN is left empty (hit space and then return) the database\n"; |
2752 | print "related code for address books will not be used\n"; |
2753 | print "\n"; |
2754 | |
eaace00e |
2755 | if ( $prefs_dsn eq "" ) { |
3499f99f |
2756 | $default_value = "Disabled"; |
2757 | } else { |
2758 | $default_value = $prefs_dsn; |
2759 | } |
2760 | print "[$WHT$prefs_dsn$NRM]: $WHT"; |
2761 | $new_dsn = <STDIN>; |
eaace00e |
2762 | if ( $new_dsn eq "\n" ) { |
3499f99f |
2763 | $new_dsn = ""; |
2764 | } else { |
85645192 |
2765 | $new_dsn =~ s/[\r\n]//g; |
3499f99f |
2766 | $new_dsn =~ s/^\s+$//g; |
2767 | } |
2768 | return $new_dsn; |
2769 | } |
2770 | |
2771 | sub command94 { |
2772 | print "This is the name of the table you want to store the preferences\n"; |
99a6c222 |
2773 | print "data in, it defaults to 'userprefs'\n"; |
3499f99f |
2774 | print "\n"; |
2775 | print "[$WHT$prefs_table$NRM]: $WHT"; |
2776 | $new_table = <STDIN>; |
eaace00e |
2777 | if ( $new_table eq "\n" ) { |
3499f99f |
2778 | $new_table = $prefs_table; |
2779 | } else { |
85645192 |
2780 | $new_table =~ s/[\r\n]//g; |
3499f99f |
2781 | } |
2782 | return $new_table; |
eaace00e |
2783 | } |
3499f99f |
2784 | |
99a6c222 |
2785 | sub command95 { |
2786 | print "This is the name of the field in which you want to store the\n"; |
2787 | print "username of the person the prefs are for. It default to 'user'\n"; |
2788 | print "which clashes with a reserved keyword in PostgreSQL so this\n"; |
2789 | print "will need to be changed for that database at least\n"; |
2790 | print "\n"; |
2791 | print "[$WHT$prefs_user_field$NRM]: $WHT"; |
2792 | $new_field = <STDIN>; |
2793 | if ( $new_field eq "\n" ) { |
2794 | $new_field = $prefs_user_field; |
2795 | } else { |
85645192 |
2796 | $new_field =~ s/[\r\n]//g; |
99a6c222 |
2797 | } |
2798 | return $new_field; |
2799 | } |
2800 | |
2801 | sub command96 { |
2802 | print "This is the name of the field in which you want to store the\n"; |
2803 | print "preferences keyword. It defaults to 'prefkey'\n"; |
2804 | print "\n"; |
2805 | print "[$WHT$prefs_key_field$NRM]: $WHT"; |
2806 | $new_field = <STDIN>; |
2807 | if ( $new_field eq "\n" ) { |
2808 | $new_field = $prefs_key_field; |
2809 | } else { |
85645192 |
2810 | $new_field =~ s/[\r\n]//g; |
99a6c222 |
2811 | } |
2812 | return $new_field; |
2813 | } |
2814 | |
2815 | sub command97 { |
2816 | print "This is the name of the field in which you want to store the\n"; |
2817 | print "preferences value. It defaults to 'prefval'\n"; |
2818 | print "\n"; |
2819 | print "[$WHT$prefs_val_field$NRM]: $WHT"; |
2820 | $new_field = <STDIN>; |
2821 | if ( $new_field eq "\n" ) { |
2822 | $new_field = $prefs_val_field; |
2823 | } else { |
85645192 |
2824 | $new_field =~ s/[\r\n]//g; |
99a6c222 |
2825 | } |
2826 | return $new_field; |
2827 | } |
2828 | |
30e9932c |
2829 | sub command98 { |
2830 | print "If you want to store your global address book in a database then\n"; |
2831 | print "you need to set this DSN to a valid value. The format for this is:\n"; |
2832 | print "mysql://user:pass\@hostname/dbname\n"; |
2833 | print "Where mysql can be one of the databases PHP supports, the most common\n"; |
2834 | print "of these are mysql, msql and pgsql\n"; |
2835 | print "If the DSN is left empty (hit space and then return) the database\n"; |
2836 | print "related code for global SQL address book will not be used\n"; |
2837 | print "\n"; |
2838 | |
2839 | if ( $addrbook_global_dsn eq "" ) { |
2840 | $default_value = "Disabled"; |
2841 | } else { |
2842 | $default_value = $addrbook_global_dsn; |
2843 | } |
2844 | print "[$WHT$addrbook_global_dsn$NRM]: $WHT"; |
2845 | $new_dsn = <STDIN>; |
2846 | if ( $new_dsn eq "\n" ) { |
2847 | $new_dsn = ""; |
2848 | } else { |
85645192 |
2849 | $new_dsn =~ s/[\r\n]//g; |
30e9932c |
2850 | $new_dsn =~ s/^\s+$//g; |
2851 | } |
2852 | return $new_dsn; |
2853 | } |
2854 | |
2855 | sub command99 { |
2856 | print "This is the name of the table you want to store the global address book\n"; |
6e00b127 |
2857 | print "data in. Default table name is 'global_abook'. Address book uses same\n"; |
2858 | print "database format as personal address book.\n"; |
30e9932c |
2859 | print "\n"; |
2860 | print "[$WHT$addrbook_global_table$NRM]: $WHT"; |
2861 | $new_table = <STDIN>; |
2862 | if ( $new_table eq "\n" ) { |
2863 | $new_table = $addrbook_global_table; |
2864 | } else { |
85645192 |
2865 | $new_table =~ s/[\r\n]//g; |
30e9932c |
2866 | } |
2867 | return $new_table; |
2868 | } |
2869 | |
2870 | sub command910 { |
2871 | print "This option controls users\' ability to add or modify records stored \n"; |
2872 | print "in global address book\n"; |
2873 | |
35aaf666 |
2874 | if ( lc($addrbook_global_writeable) eq 'true' ) { |
30e9932c |
2875 | $default_value = "y"; |
2876 | } else { |
2877 | $default_value = "n"; |
2878 | } |
2879 | print "Allow writing into global address book? (y/n) [$WHT$default_value$NRM]: $WHT"; |
2880 | $addrbook_global_writeable = <STDIN>; |
2881 | if ( ( $addrbook_global_writeable =~ /^y\n/i ) || ( ( $addrbook_global_writeable =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
2882 | $addrbook_global_writeable = 'true'; |
30e9932c |
2883 | } else { |
35aaf666 |
2884 | $addrbook_global_writeable = 'false'; |
30e9932c |
2885 | } |
2886 | return $addrbook_global_writeable; |
2887 | } |
2888 | |
2889 | sub command911 { |
2890 | print "Enable this option if you want to see listing of addresses stored \n"; |
2891 | print "in global address book\n"; |
2892 | |
35aaf666 |
2893 | if ( lc($addrbook_global_listing) eq 'true' ) { |
30e9932c |
2894 | $default_value = "y"; |
2895 | } else { |
2896 | $default_value = "n"; |
2897 | } |
2898 | print "Allow listing of global address book? (y/n) [$WHT$default_value$NRM]: $WHT"; |
2899 | $addrbook_global_listing = <STDIN>; |
2900 | if ( ( $addrbook_global_listing =~ /^y\n/i ) || ( ( $addrbook_global_listing =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
2901 | $addrbook_global_listing = 'true'; |
30e9932c |
2902 | } else { |
35aaf666 |
2903 | $addrbook_global_listing = 'false'; |
30e9932c |
2904 | } |
2905 | return $addrbook_global_listing; |
2906 | } |
2907 | |
2908 | |
39d3ec89 |
2909 | # Default language |
2910 | sub commandA1 { |
2911 | print "SquirrelMail attempts to set the language in many ways. If it\n"; |
2912 | print "can not figure it out in another way, it will default to this\n"; |
2913 | print "language. Please use the code for the desired language.\n"; |
2914 | print "\n"; |
2915 | print "[$WHT$squirrelmail_default_language$NRM]: $WHT"; |
2916 | $new_squirrelmail_default_language = <STDIN>; |
2917 | if ( $new_squirrelmail_default_language eq "\n" ) { |
2918 | $new_squirrelmail_default_language = $squirrelmail_default_language; |
2919 | } else { |
85645192 |
2920 | $new_squirrelmail_default_language =~ s/[\r\n]//g; |
39d3ec89 |
2921 | $new_squirrelmail_default_language =~ s/^\s+$//g; |
2922 | } |
2923 | return $new_squirrelmail_default_language; |
2924 | } |
2925 | # Default Charset |
2926 | sub commandA2 { |
fe48c808 |
2927 | print "This option controls what character set is used when sending\n"; |
2928 | print "mail and when sending HTML to the browser. Option works only\n"; |
2929 | print "with US English (en_US) translation. Other translations use\n"; |
2930 | print "charsets that are set in functions/i18n.php.\n"; |
39d3ec89 |
2931 | print "\n"; |
2932 | |
2933 | print "[$WHT$default_charset$NRM]: $WHT"; |
2934 | $new_default_charset = <STDIN>; |
2935 | if ( $new_default_charset eq "\n" ) { |
2936 | $new_default_charset = $default_charset; |
2937 | } else { |
85645192 |
2938 | $new_default_charset =~ s/[\r\n]//g; |
39d3ec89 |
2939 | } |
2940 | return $new_default_charset; |
2941 | } |
2942 | # Alternative language names |
2943 | sub commandA3 { |
2944 | print "Enable this option if you want to see localized language names in\n"; |
2945 | print "language selection box. Note, that if don't limit list of available\n"; |
2946 | print "languages, this option can trigger installation of foreign language\n"; |
2947 | print "support modules in some browsers.\n"; |
2948 | print "\n"; |
2949 | |
35aaf666 |
2950 | if ( lc($show_alternative_names) eq 'true' ) { |
39d3ec89 |
2951 | $default_value = "y"; |
2952 | } else { |
2953 | $default_value = "n"; |
2954 | } |
2955 | print "Show alternative language names? (y/n) [$WHT$default_value$NRM]: $WHT"; |
2956 | $show_alternative_names = <STDIN>; |
2957 | if ( ( $show_alternative_names =~ /^y\n/i ) || ( ( $show_alternative_names =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
2958 | $show_alternative_names = 'true'; |
39d3ec89 |
2959 | } else { |
35aaf666 |
2960 | $show_alternative_names = 'false'; |
39d3ec89 |
2961 | } |
2962 | return $show_alternative_names; |
2963 | } |
2964 | # Available languages |
2965 | sub commandA4 { |
2966 | print "This option allows to limit number of languages available in\n"; |
2967 | print "language selection box. You can enter as code of every language that\n"; |
2968 | print "you want to enable. Language codes should be separated by space. If you\n"; |
2969 | print "enter name unsupported by SquirrelMail, it will be ignored. If you enter\n"; |
2970 | print "special key \'all\' - all languages available in SquirrelMail will be\n"; |
2971 | print "listed. If you enter special key \'none\' - user won't be able to change"; |
2972 | print "language and interface will use language set it \"Default language\" option.\n"; |
2973 | print "\n"; |
fe48c808 |
2974 | print "You can find valid language names in doc/i18n.txt.\n"; |
39d3ec89 |
2975 | print "\n"; |
2976 | print "[$WHT$available_languages$NRM]: $WHT"; |
2977 | $new_available_languages = <STDIN>; |
2978 | if ( $new_available_languages eq "\n" ) { |
2979 | $new_available_languages = $available_languages; |
2980 | } else { |
85645192 |
2981 | $new_available_languages =~ s/[\r\n]//g; |
39d3ec89 |
2982 | $new_available_languages =~ s/^\s+$//g; |
2983 | } |
2984 | return $new_available_languages; |
2985 | } |
f03f6ee7 |
2986 | # Aggressive decoding |
39d3ec89 |
2987 | sub commandA5 { |
2988 | print "Enable this option if you want to use CPU and memory intensive decoding\n"; |
2989 | print "functions. This option allows reading multibyte charset, that are used\n"; |
2990 | print "in Eastern Asia. SquirrelMail will try to use recode functions here,\n"; |
2991 | print "even when you have disabled use of recode in Tweaks section.\n"; |
2992 | print "\n"; |
2993 | |
f03f6ee7 |
2994 | if ( lc($aggressive_decoding) eq 'true' ) { |
39d3ec89 |
2995 | $default_value = "y"; |
2996 | } else { |
2997 | $default_value = "n"; |
2998 | } |
f03f6ee7 |
2999 | print "Enable aggressive decoding? (y/n) [$WHT$default_value$NRM]: $WHT"; |
3000 | $aggressive_decoding = <STDIN>; |
3001 | if ( ( $aggressive_decoding =~ /^y\n/i ) || ( ( $aggressive_decoding =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
3002 | $aggressive_decoding = 'true'; |
39d3ec89 |
3003 | } else { |
f03f6ee7 |
3004 | $aggressive_decoding = 'false'; |
39d3ec89 |
3005 | } |
f03f6ee7 |
3006 | return $aggressive_decoding; |
39d3ec89 |
3007 | } |
3008 | |
6d3689f5 |
3009 | # Lossy encoding |
f03f6ee7 |
3010 | sub commandA6 { |
6d3689f5 |
3011 | print "Enable this option if you want to allow lossy charset encoding in message\n"; |
f03f6ee7 |
3012 | print "composition pages. This option allows charset conversions when output\n"; |
3013 | print "charset does not support all symbols used in original charset. Symbols\n"; |
3014 | print "unsupported by output charset will be replaced with question marks.\n"; |
3015 | print "\n"; |
3016 | |
6d3689f5 |
3017 | if ( lc($lossy_encoding) eq 'true' ) { |
f03f6ee7 |
3018 | $default_value = "y"; |
3019 | } else { |
3020 | $default_value = "n"; |
3021 | } |
6d3689f5 |
3022 | print "Enable lossy encoding? (y/n) [$WHT$default_value$NRM]: $WHT"; |
3023 | $lossy_encoding = <STDIN>; |
3024 | if ( ( $lossy_encoding =~ /^y\n/i ) || ( ( $lossy_encoding =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
3025 | $lossy_encoding = 'true'; |
f03f6ee7 |
3026 | } else { |
6d3689f5 |
3027 | $lossy_encoding = 'false'; |
f03f6ee7 |
3028 | } |
6d3689f5 |
3029 | return $lossy_encoding; |
f03f6ee7 |
3030 | } |
3031 | |
3032 | |
39d3ec89 |
3033 | # Advanced tree |
3034 | sub commandB1 { |
3035 | print "Enable this option if you want to use DHTML based folder listing.\n"; |
3036 | print "Code is experimental, works only with some browsers and there might\n"; |
3037 | print "be some glitches.\n"; |
3038 | print "\n"; |
3039 | |
35aaf666 |
3040 | if ( lc($advanced_tree) eq 'true' ) { |
39d3ec89 |
3041 | $default_value = "y"; |
3042 | } else { |
3043 | $default_value = "n"; |
3044 | } |
3045 | print "Use advanced tree in folder listing? (y/n) [$WHT$default_value$NRM]: $WHT"; |
3046 | $advanced_tree = <STDIN>; |
3047 | if ( ( $advanced_tree =~ /^y\n/i ) || ( ( $advanced_tree =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
3048 | $advanced_tree = 'true'; |
39d3ec89 |
3049 | } else { |
35aaf666 |
3050 | $advanced_tree = 'false'; |
39d3ec89 |
3051 | } |
3052 | return $advanced_tree; |
3053 | } |
74d6a0d9 |
3054 | # display html emails in iframe |
3055 | sub commandB2 { |
3056 | print "This option can enable html email rendering inside iframe.\n"; |
3057 | print "Inline frames are used in order to provide sandbox environment"; |
3058 | print "for html code included in html formated emails."; |
3059 | print "Option is experimental and might have glitches in some parts of code."; |
3060 | print "\n"; |
3061 | |
3062 | if ( lc($use_iframe) eq 'true' ) { |
3063 | $default_value = "y"; |
3064 | } else { |
3065 | $default_value = "n"; |
3066 | } |
3067 | print "Display html emails in iframe? (y/n) [$WHT$default_value$NRM]: $WHT"; |
3068 | $use_iframe = <STDIN>; |
3069 | if ( ( $use_iframe =~ /^y\n/i ) || ( ( $use_iframe =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
3070 | $use_iframe = 'true'; |
3071 | } else { |
3072 | $use_iframe = 'false'; |
3073 | } |
3074 | return $use_iframe; |
3075 | } |
6395c46d |
3076 | # use icons |
39d3ec89 |
3077 | sub commandB3 { |
6395c46d |
3078 | print "Enabling this option will cause icons to be used instead of text\n"; |
3079 | print "markers next to each message in mailbox lists that represent\n"; |
3080 | print "new, read, flagged, and deleted messages, as well as those that\n"; |
3081 | print "have been replied to and forwarded. Icons are also used next to\n"; |
3082 | print "(un)expanded folders in the folder list (Oldway = false). These\n"; |
3083 | print "icons are quite small, but will obviously be more of a resource\n"; |
3084 | print "drain than text markers.\n"; |
3085 | print "\n"; |
3086 | |
35aaf666 |
3087 | if ( lc($use_icons) eq 'true' ) { |
6395c46d |
3088 | $default_value = "y"; |
3089 | } else { |
3090 | $default_value = "n"; |
3091 | } |
3092 | print "Use icons? (y/n) [$WHT$default_value$NRM]: $WHT"; |
3093 | $use_icons = <STDIN>; |
3094 | if ( ( $use_icons =~ /^y\n/i ) || ( ( $use_icons =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
3095 | $use_icons = 'true'; |
6395c46d |
3096 | } else { |
35aaf666 |
3097 | $use_icons = 'false'; |
6395c46d |
3098 | } |
3099 | return $use_icons; |
3100 | } |
3101 | # php recode |
3102 | sub commandB4 { |
39d3ec89 |
3103 | print "Enable this option if you want to use php recode functions to read\n"; |
3104 | print "emails written in charset that differs from the one that is set in\n"; |
3105 | print "translation selected by user. Code is experimental, it might cause\n"; |
3106 | print "errors, if email contains charset unsupported by recode or if your\n"; |
3107 | print "php does not have recode support.\n"; |
3108 | print "\n"; |
3109 | |
35aaf666 |
3110 | if ( lc($use_php_recode) eq 'true' ) { |
39d3ec89 |
3111 | $default_value = "y"; |
3112 | } else { |
3113 | $default_value = "n"; |
3114 | } |
ad9d110a |
3115 | print "Use php recode functions? (y/n) [$WHT$default_value$NRM]: $WHT"; |
39d3ec89 |
3116 | $use_php_recode = <STDIN>; |
3117 | if ( ( $use_php_recode =~ /^y\n/i ) || ( ( $use_php_recode =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
3118 | $use_php_recode = 'true'; |
39d3ec89 |
3119 | } else { |
35aaf666 |
3120 | $use_php_recode = 'false'; |
39d3ec89 |
3121 | } |
3122 | return $use_php_recode; |
3123 | } |
3124 | # php iconv |
6395c46d |
3125 | sub commandB5 { |
39d3ec89 |
3126 | print "Enable this option if you want to use php iconv functions to read\n"; |
3127 | print "emails written in charset that differs from the one that is set in\n"; |
3128 | print "translation selected by user. Code is experimental, it works only\n"; |
3129 | print "with translations that use utf-8 charset. Code might cause errors,\n"; |
3130 | print "if email contains charset unsupported by iconv or if your php does\n"; |
3131 | print "not have iconv support.\n"; |
3132 | print "\n"; |
3133 | |
35aaf666 |
3134 | if ( lc($use_php_iconv) eq 'true' ) { |
39d3ec89 |
3135 | $default_value = "y"; |
3136 | } else { |
3137 | $default_value = "n"; |
3138 | } |
ad9d110a |
3139 | print "Use php iconv functions? (y/n) [$WHT$default_value$NRM]: $WHT"; |
39d3ec89 |
3140 | $use_php_iconv = <STDIN>; |
3141 | if ( ( $use_php_iconv =~ /^y\n/i ) || ( ( $use_php_iconv =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
35aaf666 |
3142 | $use_php_iconv = 'true'; |
39d3ec89 |
3143 | } else { |
35aaf666 |
3144 | $use_php_iconv = 'false'; |
39d3ec89 |
3145 | } |
3146 | return $use_php_iconv; |
3147 | } |
3148 | |
71d3f882 |
3149 | # configtest block |
3150 | sub commandB6 { |
3151 | print "Enable this option if you want to check SquirrelMail configuration\n"; |
3152 | print "remotely with configtest.php script.\n"; |
3153 | print "\n"; |
3154 | |
3155 | if ( lc($allow_remote_configtest) eq 'true' ) { |
3156 | $default_value = "y"; |
3157 | } else { |
3158 | $default_value = "n"; |
3159 | } |
3160 | print "Allow remote configuration tests? (y/n) [$WHT$default_value$NRM]: $WHT"; |
3161 | $allow_remote_configtest = <STDIN>; |
3162 | if ( ( $allow_remote_configtest =~ /^y\n/i ) || ( ( $allow_remote_configtest =~ /^\n/ ) && ( $default_value eq "y" ) ) ) { |
3163 | $allow_remote_configtest = 'true'; |
3164 | } else { |
3165 | $allow_remote_configtest = 'false'; |
3166 | } |
3167 | return $allow_remote_configtest; |
3168 | } |
3169 | |
3170 | |
39d3ec89 |
3171 | |
ccfb2029 |
3172 | sub save_data { |
ebd13f55 |
3173 | $tab = " "; |
eaace00e |
3174 | if ( open( CF, ">config.php" ) ) { |
ebd13f55 |
3175 | print CF "<?php\n"; |
3176 | print CF "\n"; |
eaace00e |
3177 | |
ebd13f55 |
3178 | print CF "/**\n"; |
3179 | print CF " * SquirrelMail Configuration File\n"; |
3180 | print CF " * Created using the configure script, conf.pl\n"; |
3181 | print CF " */\n"; |
3182 | print CF "\n"; |
93c06fa2 |
3183 | print CF "global \$version;\n"; |
598294a7 |
3184 | |
ebd13f55 |
3185 | if ($print_config_version) { |
eaace00e |
3186 | print CF "\$config_version = '$print_config_version';\n"; |
ebd13f55 |
3187 | } |
35aaf666 |
3188 | # integer |
254ded61 |
3189 | print CF "\$config_use_color = $config_use_color;\n"; |
ebd13f55 |
3190 | print CF "\n"; |
598294a7 |
3191 | |
35aaf666 |
3192 | # string |
d756b071 |
3193 | print CF "\$org_name = \"$org_name\";\n"; |
254ded61 |
3194 | # string |
35aaf666 |
3195 | print CF "\$org_logo = " . &change_to_SM_path($org_logo) . ";\n"; |
b6e0c3b6 |
3196 | $org_logo_width |= 0; |
3197 | $org_logo_height |= 0; |
35aaf666 |
3198 | # string |
6c2d0a35 |
3199 | print CF "\$org_logo_width = '$org_logo_width';\n"; |
3200 | # string |
35aaf666 |
3201 | print CF "\$org_logo_height = '$org_logo_height';\n"; |
3202 | # string that can contain variables. |
12947430 |
3203 | print CF "\$org_title = \"$org_title\";\n"; |
35aaf666 |
3204 | # string |
8bd9e0dd |
3205 | print CF "\$signout_page = " . &change_to_SM_path($signout_page) . ";\n"; |
35aaf666 |
3206 | # string |
3d043efc |
3207 | print CF "\$frame_top = '$frame_top';\n"; |
ebd13f55 |
3208 | print CF "\n"; |
eaace00e |
3209 | |
0ae4c1f2 |
3210 | print CF "\$provider_uri = '$provider_uri';\n"; |
3211 | print CF "\n"; |
3212 | |
3213 | print CF "\$provider_name = '$provider_name';\n"; |
3214 | print CF "\n"; |
3215 | |
35aaf666 |
3216 | # string that can contain variables |
254ded61 |
3217 | print CF "\$motd = \"$motd\";\n"; |
ebd13f55 |
3218 | print CF "\n"; |
598294a7 |
3219 | |
35aaf666 |
3220 | # string |
ebd13f55 |
3221 | print CF "\$squirrelmail_default_language = '$squirrelmail_default_language';\n"; |
35aaf666 |
3222 | # string |
39d3ec89 |
3223 | print CF "\$default_charset = '$default_charset';\n"; |
35aaf666 |
3224 | # boolean |
6cbbd722 |
3225 | print CF "\$show_alternative_names = $show_alternative_names;\n"; |
35aaf666 |
3226 | # string |
39d3ec89 |
3227 | print CF "\$available_languages = '$available_languages';\n"; |
35aaf666 |
3228 | # boolean |
f03f6ee7 |
3229 | print CF "\$aggressive_decoding = $aggressive_decoding;\n"; |
3230 | # boolean |
6d3689f5 |
3231 | print CF "\$lossy_encoding = $lossy_encoding;\n"; |
ebd13f55 |
3232 | print CF "\n"; |
eaace00e |
3233 | |
35aaf666 |
3234 | # string |
ebd13f55 |
3235 | print CF "\$domain = '$domain';\n"; |
35aaf666 |
3236 | # string |
ebd13f55 |
3237 | print CF "\$imapServerAddress = '$imapServerAddress';\n"; |
35aaf666 |
3238 | # integer |
254ded61 |
3239 | print CF "\$imapPort = $imapPort;\n"; |
35aaf666 |
3240 | # boolean |
254ded61 |
3241 | print CF "\$useSendmail = $useSendmail;\n"; |
35aaf666 |
3242 | # string |
ebd13f55 |
3243 | print CF "\$smtpServerAddress = '$smtpServerAddress';\n"; |
35aaf666 |
3244 | # integer |
254ded61 |
3245 | print CF "\$smtpPort = $smtpPort;\n"; |
35aaf666 |
3246 | # string |
ebd13f55 |
3247 | print CF "\$sendmail_path = '$sendmail_path';\n"; |
35aaf666 |
3248 | # boolean |
47a29326 |
3249 | # print CF "\$use_authenticated_smtp = $use_authenticated_smtp;\n"; |
35aaf666 |
3250 | # boolean |
254ded61 |
3251 | print CF "\$pop_before_smtp = $pop_before_smtp;\n"; |
35aaf666 |
3252 | # string |
ebd13f55 |
3253 | print CF "\$imap_server_type = '$imap_server_type';\n"; |
35aaf666 |
3254 | # boolean |
374726c9 |
3255 | print CF "\$invert_time = $invert_time;\n"; |
35aaf666 |
3256 | # string |
ebd13f55 |
3257 | print CF "\$optional_delimiter = '$optional_delimiter';\n"; |
35aaf666 |
3258 | #boolean |
3259 | print CF "\$skip_SM_header = $skip_SM_header;\n"; |
ebd13f55 |
3260 | print CF "\n"; |
eaace00e |
3261 | |
35aaf666 |
3262 | # string |
ebd13f55 |
3263 | print CF "\$default_folder_prefix = '$default_folder_prefix';\n"; |
35aaf666 |
3264 | # string |
ebd13f55 |
3265 | print CF "\$trash_folder = '$trash_folder';\n"; |
35aaf666 |
3266 | # string |
ebd13f55 |
3267 | print CF "\$sent_folder = '$sent_folder';\n"; |
35aaf666 |
3268 | # string |
ebd13f55 |
3269 | print CF "\$draft_folder = '$draft_folder';\n"; |
35aaf666 |
3270 | # boolean |
254ded61 |
3271 | print CF "\$default_move_to_trash = $default_move_to_trash;\n"; |
35aaf666 |
3272 | # boolean |
254ded61 |
3273 | print CF "\$default_move_to_sent = $default_move_to_sent;\n"; |
35aaf666 |
3274 | # boolean |
254ded61 |
3275 | print CF "\$default_save_as_draft = $default_save_as_draft;\n"; |
35aaf666 |
3276 | # boolean |
254ded61 |
3277 | print CF "\$show_prefix_option = $show_prefix_option;\n"; |
35aaf666 |
3278 | # boolean |
254ded61 |
3279 | print CF "\$list_special_folders_fir |