Handle hostnames with upper-case letters
[webmin.git] / proftpd / apply.cgi
1 #!/usr/local/bin/perl
2 # apply.cgi
3 # Apply config file changes with a HUP signal
4
5 require './proftpd-lib.pl';
6 &ReadParse();
7 &error_setup($text{'apply_err'});
8 if ($config{'test_config'}) {
9         $err = &test_config();
10         &error("<pre>$err</pre>") if ($err);
11         }
12 $err = &apply_configuration();
13 &error($err) if ($err);
14 &webmin_log("apply");
15 &redirect($in{'redir'});
16