1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145
|
<?php
/////////////////////////////////////////////////////////////
// Submit a new DNS and MX config for a domain to database //
/////////////////////////////////////////////////////////////
// adm_login=test&adm_pass=test&edit_domain=toto.com&addrlink=test.com&new_dns_1=default&new_dns_2=t0x.aegis-corp.org&new_dns_3=ns1.namebay.com&new_dns_4=ns2.namebay.com&new_dns_5=&new_mx_1=default&new_mx_2=mx1.anotherlight.com&new_mx_3=mx1.namebay.com&new_mx_4=mx2.namebay.com&new_mx_5=&new_dns_and_mx_config=Ok
if(isset($_REQUEST["new_dns_and_mx_config"]) && $_REQUEST["new_dns_and_mx_config"] == "Ok"){
checkLoginPassAndDomain($adm_login,$adm_pass,$edit_domain);
if(isset($_REQUEST["new_dns_1"]) && isHostnameOrIP($_REQUEST["new_dns_1"])){
$new_dns_1 = $_REQUEST["new_dns_1"];
}else{
$new_dns_1 = "default";
}
if(isset($_REQUEST["new_dns_2"]) && isHostnameOrIP($_REQUEST["new_dns_2"])){
$new_dns_2 = $_REQUEST["new_dns_2"];
}else{
$new_dns_2 = $new_dns_2 = "default";
}
if(isset($_REQUEST["new_dns_3"]) && isHostnameOrIP($_REQUEST["new_dns_3"])){
$new_dns_3 = $_REQUEST["new_dns_3"];
}else{
$new_dns_3 = $new_dns_3 = "";
}
if(isset($_REQUEST["new_dns_4"]) && isHostnameOrIP($_REQUEST["new_dns_4"])){
$new_dns_4 = $_REQUEST["new_dns_4"];
}else{
$new_dns_4 = $new_dns_4 = "";
}
if(isset($_REQUEST["new_dns_5"]) && isHostnameOrIP($_REQUEST["new_dns_5"])){
$new_dns_5 = $_REQUEST["new_dns_5"];
}else{
$new_dns_5 = $new_dns_5 = "";
}
if(isset($_REQUEST["new_dns_6"]) && isHostnameOrIP($_REQUEST["new_dns_6"])){
$new_dns_6 = $_REQUEST["new_dns_6"];
}else{
$new_dns_6 = $new_dns_6 = "";
}
if(isset($_REQUEST["new_mx_1"]) && isHostnameOrIP( strtolower($_REQUEST["new_mx_1"]) )){
$new_mx_1 = strtolower($_REQUEST["new_mx_1"]);
}else{
$new_mx_1 = "default";
}
if(isset($_REQUEST["new_mx_2"]) && isHostnameOrIP( strtolower($_REQUEST["new_mx_2"]) )){
$new_mx_2 = strtolower($_REQUEST["new_mx_2"]);
}else{
$new_mx_2 = "default";
}
if(isset($_REQUEST["new_mx_3"]) && isHostnameOrIP( strtolower($_REQUEST["new_mx_3"]) )){
$new_mx_3 = strtolower($_REQUEST["new_mx_3"]) ;
}else{
$new_mx_3 = "";
}
if(isset($_REQUEST["new_mx_4"]) && isHostnameOrIP( strtolower($_REQUEST["new_mx_4"]) )){
$new_mx_4 = strtolower($_REQUEST["new_mx_4"]);
}else{
$new_mx_4 = "";
}
if(isset($_REQUEST["new_mx_5"]) && isHostnameOrIP( strtolower($_REQUEST["new_mx_5"]) )){
$new_mx_5 = strtolower($_REQUEST["new_mx_5"]);
}else{
$new_mx_5 = "";
}
if(isset($_REQUEST["new_mx_6"]) && isHostnameOrIP( strtolower($_REQUEST["new_mx_6"]) )){
$new_mx_6 = strtolower($_REQUEST["new_mx_6"]);
}else{
$new_mx_6 = "";
}
// Trims the eventual last . of the string for MX, as this is a common mistake
if( substr($new_mx_1, strlen($new_mx_1)-1 ) == "."){
$new_mx_1 = substr($new_mx_1,0,strlen($new_mx_1)-1);
}
if( substr($new_mx_2, strlen($new_mx_2)-1 ) == "."){
$new_mx_2 = substr($new_mx_2,0,strlen($new_mx_2)-1);
}
if( substr($new_mx_3, strlen($new_mx_3)-1 ) == "."){
$new_mx_3 = substr($new_mx_3,0,strlen($new_mx_3)-1);
}
if( substr($new_mx_4, strlen($new_mx_4)-1 ) == "."){
$new_mx_4 = substr($new_mx_4,0,strlen($new_mx_4)-1);
}
if( substr($new_mx_5, strlen($new_mx_5)-1 ) == "."){
$new_mx_5 = substr($new_mx_5,0,strlen($new_mx_5)-1);
}
if( substr($new_mx_6, strlen($new_mx_6)-1 ) == "."){
$new_mx_6 = substr($new_mx_6,0,strlen($new_mx_6)-1);
}
if($new_dns_2 != "default" && isset($new_dns_2) && $new_dns_2 != ""){
if(isset($new_dns_3) && $new_dns_3 != ""){
$new_dns_2 .= "|".$new_dns_3;
}
if(isset($new_dns_4) && $new_dns_4 != ""){
$new_dns_2 .= "|".$new_dns_4;
}
if(isset($new_dns_5) && $new_dns_5 != ""){
$new_dns_2 .= "|".$new_dns_5;
}
if(isset($new_dns_6) && $new_dns_6 != ""){
$new_dns_2 .= "|".$new_dns_6;
}
}
if($new_mx_2 != "default" && isset($new_mx_2) && $new_mx_2 != ""){
if(isset($new_mx_3) && $new_mx_3 != ""){
$new_mx_2 .= "|".$new_mx_3;
}
if(isset($new_mx_4) && $new_mx_4 != ""){
$new_mx_2 .= "|".$new_mx_4;
}
if(isset($new_mx_5) && $new_mx_5 != ""){
$new_mx_2 .= "|".$new_mx_5;
}
if(isset($new_mx_6) && $new_mx_6 != ""){
$new_mx_2 .= "|".$new_mx_6;
}
}
// If domain whois is hosted here, change the whois value using a registry call.
if(file_exists($dtcshared_path."/dtcrm")){
$query = "SELECT * FROM $pro_mysql_domain_table WHERE name='$edit_domain';";
$result = mysql_query($query)or die("Cannot execute query \"$query\" !!!".mysql_error());
$row = mysql_fetch_array($result);
if($row["whois"] == "here"){
$regz = registry_update_whois_dns($adm_login,$adm_pass,$edit_domain,"$new_dns_1|$new_dns_2");
if($regz["is_success"] != 1){
die("<font color=\"red\"><b>Whois update failed</b></font><br>
Server said: <i>" . $regz["response_text"] . "</i>");
}
}
}
$query = "UPDATE $pro_mysql_domain_table SET primary_dns='$new_dns_1',other_dns='$new_dns_2',primary_mx='$new_mx_1',other_mx='$new_mx_2',txt_root_entry='".mysql_real_escape_string($_REQUEST["txt_root_entry"])."',txt_root_entry2='".mysql_real_escape_string($_REQUEST["txt_root_entry2"])."' WHERE owner='$adm_login' AND name='$edit_domain';";
mysql_query($query)or die("Cannot execute query \"$query\" !!!".mysql_error());
$domupdate_query = "UPDATE $pro_mysql_domain_table SET generate_flag='yes' WHERE name='$edit_domain' LIMIT 1;";
$domupdate_result = mysql_query ($domupdate_query)or die("Cannot execute query \"$domupdate_query\"");
updateUsingCron("gen_vhosts='yes',restart_apache='yes',gen_named='yes',reload_named ='yes',restart_qmail='yes',qmail_newu='yes',gen_qmail='yes',gen_fetchmail='yes'");
triggerDomainListUpdate();
}
?>
|