Handle hostnames with upper-case letters
[webmin.git] / certmgr / manual.cgi
1 #!/usr/local/bin/perl
2 # Show a page for manually editing openssl.conf
3
4 require './certmgr-lib.pl';
5 do '../ui-lib.pl';
6 &ReadParse();
7 &ui_print_header(undef, $text{'manual_title'}, "");
8
9 # Show the file contents
10 print &text('manual_desc', "<tt>$config{'ssl_cnf_file'}</tt>"),"<p>\n";
11 print &ui_form_start("save_manual.cgi", "form-data");
12 $data = &read_file_contents($config{'ssl_cnf_file'});
13 print &ui_textarea("data", $data, 20, 80),"\n";
14 print &ui_form_end([ [ "save", $text{'save'} ] ]);
15
16 &ui_print_footer("", $text{'index_return'});
17