| Server IP : 173.209.174.21 / Your IP : 216.73.216.89 Web Server : Apache/2.4.58 (Ubuntu) System : Linux wcfs-server 6.8.0-124-generic #124-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 13:00:45 UTC 2026 x86_64 User : nodor ( 1000) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/share/webmin/proftpd/ |
Upload File : |
sub mod_tls_directives
{
local $rv = [
[ 'TLSEngine', 0, 7, 'virtual root', 1.27, 10 ],
[ 'TLSRequired', 0, 7, 'virtual root', 1.27, 9 ],
[ 'TLSRSACertificateFile', 0, 7, 'virtual root', 1.27, 8 ],
[ 'TLSRSACertificateKeyFile', 0, 7, 'virtual root', 1.27, 7 ],
[ 'TLSCACertificateFile', 0, 7, 'virtual root', 1.27, 5 ],
[ 'TLSECCertificateFile', 0, 7, 'virtual root', 1.35, 4 ],
[ 'TLSECCertificateKeyFile', 0, 7, 'virtual root', 1.35, 3 ],
];
return &make_directives($rv, $_[0], "mod_tls");
}
sub edit_TLSEngine
{
return (2, $text{'mod_tls_engine'},
&choice_input($_[0]->{'value'}, "TLSEngine", "",
"$text{'yes'},on", "$text{'no'},off",
"$text{'default'},"));
}
sub save_TLSEngine
{
return &parse_choice("TLSEngine", "");
}
sub edit_TLSRequired
{
return (2, $text{'mod_tls_required'},
&select_input($_[0]->{'value'}, "TLSRequired", "",
"$text{'yes'},on", "$text{'no'},off",
"$text{'mod_tls_ctrl'},ctrl",
"$text{'mod_tls_auth'},auth",
"$text{'mod_tls_authdata'},auth+data",
"$text{'default'},"));
}
sub save_TLSRequired
{
return &parse_choice("TLSRequired", "");
}
sub edit_TLSRSACertificateFile
{
my $n = $_[1]->{'name'};
return (2, $text{'mod_tls_file'},
&ui_opt_textbox($n, $_[0]->{'value'}, 60, $text{'mod_tls_none'})." ".
&file_chooser_button($n));
}
sub save_TLSRSACertificateFile
{
my $n = $_[0]->{'name'};
if ($in{$n."_def"}) {
return ( [ ] );
}
else {
-r $in{$n} || &error($text{'mod_tls_efile'});
return ( [ $in{$n} ] );
}
}
sub edit_TLSRSACertificateKeyFile
{
my $n = $_[1]->{'name'};
return (2, $text{'mod_tls_key'},
&ui_opt_textbox($n, $_[0]->{'value'}, 60, $text{'mod_tls_none'})." ".
&file_chooser_button($n));
}
sub save_TLSRSACertificateKeyFile
{
my $n = $_[0]->{'name'};
if ($in{$n."_def"}) {
return ( [ ] );
}
else {
-r $in{$n} || &error($text{'mod_tls_ekey'});
return ( [ $in{$n} ] );
}
}
sub edit_TLSCACertificateFile
{
my $n = $_[1]->{'name'};
return (2, $text{'mod_tls_ca'},
&ui_opt_textbox($n, $_[0]->{'value'}, 60, $text{'mod_tls_none'})." ".
&file_chooser_button($n));
}
sub save_TLSCACertificateFile
{
my $n = $_[0]->{'name'};
if ($in{$n."_def"}) {
return ( [ ] );
}
else {
-r $in{$n} || &error($text{'mod_tls_eca'});
return ( [ $in{$n} ] );
}
}
sub edit_TLSECCertificateFile
{
my $n = $_[1]->{'name'};
return (2, $text{'mod_tls_ecfile'},
&ui_opt_textbox($n, $_[0]->{'value'}, 60, $text{'mod_tls_none'})." ".
&file_chooser_button($n));
}
sub save_TLSECCertificateFile
{
my $n = $_[0]->{'name'};
if ($in{$n."_def"}) {
return ( [ ] );
}
else {
-r $in{$n} || &error($text{'mod_tls_eecfile'});
return ( [ $in{$n} ] );
}
}
sub edit_TLSECCertificateKeyFile
{
my $n = $_[1]->{'name'};
return (2, $text{'mod_tls_eckey'},
&ui_opt_textbox($n, $_[0]->{'value'}, 60, $text{'mod_tls_none'})." ".
&file_chooser_button($n));
}
sub save_TLSECCertificateKeyFile
{
my $n = $_[0]->{'name'};
if ($in{$n."_def"}) {
return ( [ ] );
}
else {
-r $in{$n} || &error($text{'mod_tls_eeckey'});
return ( [ $in{$n} ] );
}
}
1;