⚝
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 :
~
/
usr
/
share
/
webmin
/
qmailadmin
/
View File Name :
save_rcpts.cgi
#!/usr/bin/perl # save_rcpts.cgi # Save the list of accepted domains require './qmail-lib.pl'; &ReadParseMime(); if ($in{'rcpts_def'}) { &save_control_file("rcpthosts", undef); } else { $in{'rcpts'} =~ s/\r//g; @dlist = split(/\s+/, $in{'rcpts'}); &save_control_file("rcpthosts", \@dlist); } $in{'rcpts2'} =~ s/\r//g; if ($in{'rcpts2'}) { @dlist2 = split(/\s+/, $in{'rcpts2'}); &save_control_file("morercpthosts", \@dlist2); &system_logged("$qmail_bin_dir/qmail-newmrh >/dev/null 2>&1"); } else { &save_control_file("morercpthosts", undef); } &webmin_log("rcpts", undef, undef, \%in); &redirect("");