diff --git a/interface/lib/classes/remote.d/mail.inc.php b/interface/lib/classes/remote.d/mail.inc.php index 1e94dcd85f4a387e94f0fcca34b174cbce33036e..2d26b1969f95227916efca86e6a341ae27c896a1 100644 --- a/interface/lib/classes/remote.d/mail.inc.php +++ b/interface/lib/classes/remote.d/mail.inc.php @@ -692,6 +692,8 @@ class remoting_mail extends remoting { public function mail_relay_domain_get($session_id, $primary_id) { + global $app; + if(!$this->checkPerm($session_id, 'mail_relay_get')) { throw new SoapFault('permission_denied', 'You do not have the permissions to access this function.'); @@ -702,6 +704,17 @@ class remoting_mail extends remoting { return $app->remoting_lib->getDataRecord($primary_id); } + public function mail_relay_domain_update($session_id, $client_id, $primary_id, $params) + { + if(!$this->checkPerm($session_id, 'mail_relay_update')) + { + throw new SoapFault('permission_denied', 'You do not have the permissions to access this function.'); + return false; + } + $affected_rows = $this->updateQuery('../mail/form/mail_relay_domain.tform.php', $client_id, $primary_id, $params); + return $affected_rows; + } + //* Get spamfilter whitelist details public function mail_spamfilter_whitelist_get($session_id, $primary_id) {