123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389 |
- <?php
- function quarantine($_action, $_data = null) {
- global $pdo;
- global $redis;
- global $lang;
- $_data_log = $_data;
- switch ($_action) {
- case 'delete':
- if (!is_array($_data['id'])) {
- $ids = array();
- $ids[] = $_data['id'];
- }
- else {
- $ids = $_data['id'];
- }
- if (!isset($_SESSION['acl']['quarantine']) || $_SESSION['acl']['quarantine'] != "1" ) {
- $_SESSION['return'][] = array(
- 'type' => 'danger',
- 'log' => array(__FUNCTION__, $_action, $_data_log),
- 'msg' => 'access_denied'
- );
- return false;
- }
- foreach ($ids as $id) {
- if (!is_numeric($id)) {
- $_SESSION['return'][] = array(
- 'type' => 'danger',
- 'log' => array(__FUNCTION__, $_action, $_data_log),
- 'msg' => 'access_denied'
- );
- continue;
- }
- $stmt = $pdo->prepare('SELECT `rcpt` FROM `quarantine` WHERE `id` = :id');
- $stmt->execute(array(':id' => $id));
- $row = $stmt->fetch(PDO::FETCH_ASSOC);
- if (!hasMailboxObjectAccess($_SESSION['mailcow_cc_username'], $_SESSION['mailcow_cc_role'], $row['rcpt']) && $_SESSION['mailcow_cc_role'] != 'admin') {
- $_SESSION['return'][] = array(
- 'type' => 'danger',
- 'log' => array(__FUNCTION__, $_action, $_data_log),
- 'msg' => 'access_denied'
- );
- continue;
- }
- else {
- $stmt = $pdo->prepare("DELETE FROM `quarantine` WHERE `id` = :id");
- $stmt->execute(array(
- ':id' => $id
- ));
- }
- $_SESSION['return'][] = array(
- 'type' => 'success',
- 'log' => array(__FUNCTION__, $_action, $_data_log),
- 'msg' => array('item_deleted', $id)
- );
- }
- break;
- case 'edit':
- if (!isset($_SESSION['acl']['quarantine']) || $_SESSION['acl']['quarantine'] != "1" ) {
- $_SESSION['return'][] = array(
- 'type' => 'danger',
- 'log' => array(__FUNCTION__, $_action, $_data_log),
- 'msg' => 'access_denied'
- );
- return false;
- }
- // Edit settings
- if ($_data['action'] == 'settings') {
- if ($_SESSION['mailcow_cc_role'] != "admin") {
- $_SESSION['return'][] = array(
- 'type' => 'danger',
- 'log' => array(__FUNCTION__, $_action, $_data_log),
- 'msg' => 'access_denied'
- );
- return false;
- }
- $retention_size = $_data['retention_size'];
- $max_size = $_data['max_size'];
- $exclude_domains = (array)$_data['exclude_domains'];
- try {
- $redis->Set('Q_RETENTION_SIZE', intval($retention_size));
- $redis->Set('Q_MAX_SIZE', intval($max_size));
- $redis->Set('Q_EXCLUDE_DOMAINS', json_encode($exclude_domains));
- }
- catch (RedisException $e) {
- $_SESSION['return'][] = array(
- 'type' => 'danger',
- 'log' => array(__FUNCTION__, $_action, $_data_log),
- 'msg' => array('redis_error', $e)
- );
- return false;
- }
- $_SESSION['return'][] = array(
- 'type' => 'success',
- 'log' => array(__FUNCTION__, $_action, $_data_log),
- 'msg' => 'saved_settings'
- );
- }
- // Release item
- elseif ($_data['action'] == 'release') {
- if (!is_array($_data['id'])) {
- $ids = array();
- $ids[] = $_data['id'];
- }
- else {
- $ids = $_data['id'];
- }
- foreach ($ids as $id) {
- if (!is_numeric($id)) {
- $_SESSION['return'][] = array(
- 'type' => 'danger',
- 'log' => array(__FUNCTION__, $_action, $_data_log),
- 'msg' => 'access_denied'
- );
- continue;
- }
- $stmt = $pdo->prepare('SELECT `msg`, `qid`, `sender`, `rcpt` FROM `quarantine` WHERE `id` = :id');
- $stmt->execute(array(':id' => $id));
- $row = $stmt->fetch(PDO::FETCH_ASSOC);
- if (!hasMailboxObjectAccess($_SESSION['mailcow_cc_username'], $_SESSION['mailcow_cc_role'], $row['rcpt'])) {
- $_SESSION['return'][] = array(
- 'type' => 'danger',
- 'msg' => 'access_denied'
- );
- continue;
- }
- $sender = (isset($row['sender'])) ? $row['sender'] : 'sender-unknown@rspamd';
- try {
- $mail = new PHPMailer(true);
- $mail->isSMTP();
- $mail->SMTPDebug = 0;
- $mail->SMTPOptions = array(
- 'ssl' => array(
- 'verify_peer' => false,
- 'verify_peer_name' => false,
- 'allow_self_signed' => true
- )
- );
- if (!empty(gethostbynamel('postfix-mailcow'))) {
- $postfix = 'postfix-mailcow';
- }
- if (!empty(gethostbynamel('postfix'))) {
- $postfix = 'postfix';
- }
- else {
- $_SESSION['return'][] = array(
- 'type' => 'warning',
- 'log' => array(__FUNCTION__, $_action, $_data_log),
- 'msg' => array('release_send_failed', 'Cannot determine Postfix host')
- );
- continue;
- }
- $mail->Host = $postfix;
- $mail->Port = 590;
- $mail->setFrom($sender);
- $mail->CharSet = 'UTF-8';
- $mail->Subject = sprintf($lang['quarantine']['release_subject'], $row['qid']);
- $mail->addAddress($row['rcpt']);
- $mail->IsHTML(false);
- $msg_tmpf = tempnam("/tmp", $row['qid']);
- file_put_contents($msg_tmpf, $row['msg']);
- $mail->addAttachment($msg_tmpf, $row['qid'] . '.eml');
- $mail->Body = sprintf($lang['quarantine']['release_body']);
- $mail->send();
- unlink($msg_tmpf);
- }
- catch (phpmailerException $e) {
- unlink($msg_tmpf);
- $_SESSION['return'][] = array(
- 'type' => 'warning',
- 'log' => array(__FUNCTION__, $_action, $_data_log),
- 'msg' => array('release_send_failed', $e->errorMessage())
- );
- continue;
- }
- try {
- $stmt = $pdo->prepare("DELETE FROM `quarantine` WHERE `id` = :id");
- $stmt->execute(array(
- ':id' => $id
- ));
- }
- catch (PDOException $e) {
- $_SESSION['return'][] = array(
- 'type' => 'danger',
- 'log' => array(__FUNCTION__, $_action, $_data_log),
- 'msg' => array('mysql_error', $e)
- );
- continue;
- }
- $_SESSION['return'][] = array(
- 'type' => 'success',
- 'log' => array(__FUNCTION__, $_action, $_data_log),
- 'msg' => array('item_released', $id)
- );
- }
- }
- elseif ($_data['action'] == 'learnspam') {
- if (!is_array($_data['id'])) {
- $ids = array();
- $ids[] = $_data['id'];
- }
- else {
- $ids = $_data['id'];
- }
- foreach ($ids as $id) {
- if (!is_numeric($id)) {
- $_SESSION['return'][] = array(
- 'type' => 'danger',
- 'log' => array(__FUNCTION__, $_action, $_data_log),
- 'msg' => 'access_denied'
- );
- continue;
- }
- $stmt = $pdo->prepare('SELECT `msg`, `rcpt` FROM `quarantine` WHERE `id` = :id');
- $stmt->execute(array(':id' => $id));
- $row = $stmt->fetch(PDO::FETCH_ASSOC);
- if (!hasMailboxObjectAccess($_SESSION['mailcow_cc_username'], $_SESSION['mailcow_cc_role'], $row['rcpt']) && $_SESSION['mailcow_cc_role'] != 'admin') {
- $_SESSION['return'][] = array(
- 'type' => 'danger',
- 'msg' => 'access_denied'
- );
- continue;
- }
- $curl = curl_init();
- curl_setopt($curl, CURLOPT_UNIX_SOCKET_PATH, '/rspamd-sock/rspamd.sock');
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($curl, CURLOPT_POST, 1);
- curl_setopt($curl, CURLOPT_TIMEOUT, 30);
- curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-Type: text/plain'));
- curl_setopt($curl, CURLOPT_URL,"http://rspamd/learnspam");
- curl_setopt($curl, CURLOPT_POSTFIELDS, $row['msg']);
- $response = curl_exec($curl);
- if (!curl_errno($curl)) {
- $response = json_decode($response, true);
- if (isset($response['error'])) {
- if (stripos($response['error'], 'already learned') === false) {
- $_SESSION['return'][] = array(
- 'type' => 'danger',
- 'log' => array(__FUNCTION__),
- 'msg' => array('spam_learn_error', $response['error'])
- );
- continue;
- }
- }
- curl_close($curl);
- $curl = curl_init();
- curl_setopt($curl, CURLOPT_UNIX_SOCKET_PATH, '/rspamd-sock/rspamd.sock');
- curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($curl, CURLOPT_POST, 1);
- curl_setopt($curl, CURLOPT_TIMEOUT, 30);
- curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-Type: text/plain', 'Flag: 11'));
- curl_setopt($curl, CURLOPT_URL,"http://rspamd/fuzzyadd");
- curl_setopt($curl, CURLOPT_POSTFIELDS, $row['msg']);
- $response = curl_exec($curl);
- if (!curl_errno($curl)) {
- $response = json_decode($response, true);
- if (isset($response['error'])) {
- $_SESSION['return'][] = array(
- 'type' => 'danger',
- 'log' => array(__FUNCTION__),
- 'msg' => array('fuzzy_learn_error', $response['error'])
- );
- continue;
- }
- curl_close($curl);
- try {
- $stmt = $pdo->prepare("DELETE FROM `quarantine` WHERE `id` = :id");
- $stmt->execute(array(
- ':id' => $id
- ));
- }
- catch (PDOException $e) {
- $_SESSION['return'][] = array(
- 'type' => 'danger',
- 'log' => array(__FUNCTION__, $_action, $_data_log),
- 'msg' => array('mysql_error', $e)
- );
- continue;
- }
- $_SESSION['return'][] = array(
- 'type' => 'success',
- 'log' => array(__FUNCTION__),
- 'msg' => 'qlearn_spam'
- );
- continue;
- }
- else {
- curl_close($curl);
- $_SESSION['return'][] = array(
- 'type' => 'danger',
- 'log' => array(__FUNCTION__),
- 'msg' => array('spam_learn_error', 'curl error ' . curl_errno($curl))
- );
- continue;
- }
- curl_close($curl);
- $_SESSION['return'][] = array(
- 'type' => 'danger',
- 'log' => array(__FUNCTION__),
- 'msg' => array('learn_spam_error', 'unknown')
- );
- continue;
- }
- else {
- curl_close($curl);
- $_SESSION['return'][] = array(
- 'type' => 'danger',
- 'log' => array(__FUNCTION__),
- 'msg' => array('spam_learn_error', 'curl error ' . curl_errno($curl))
- );
- continue;
- }
- curl_close($curl);
- $_SESSION['return'][] = array(
- 'type' => 'danger',
- 'log' => array(__FUNCTION__),
- 'msg' => array('learn_spam_error', 'unknown')
- );
- continue;
- }
- }
- return true;
- break;
- case 'get':
- if ($_SESSION['mailcow_cc_role'] == "user") {
- $stmt = $pdo->prepare('SELECT `id`, `qid`, `rcpt`, `sender`, UNIX_TIMESTAMP(`created`) AS `created` FROM `quarantine` WHERE `rcpt` = :mbox');
- $stmt->execute(array(':mbox' => $_SESSION['mailcow_cc_username']));
- $rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
- while($row = array_shift($rows)) {
- $q_meta[] = $row;
- }
- }
- elseif ($_SESSION['mailcow_cc_role'] == "admin") {
- $stmt = $pdo->query('SELECT `id`, `qid`, `rcpt`, `sender`, UNIX_TIMESTAMP(`created`) AS `created` FROM `quarantine`');
- $rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
- while($row = array_shift($rows)) {
- $q_meta[] = $row;
- }
- }
- else {
- $domains = array_merge(mailbox('get', 'domains'), mailbox('get', 'alias_domains'));
- foreach ($domains as $domain) {
- $stmt = $pdo->prepare('SELECT `id`, `qid`, `rcpt`, `sender`, UNIX_TIMESTAMP(`created`) AS `created` FROM `quarantine` WHERE `rcpt` REGEXP :domain');
- $stmt->execute(array(':domain' => '@' . $domain . '$'));
- $rows = $stmt->fetchAll(PDO::FETCH_ASSOC);
- while($row = array_shift($rows)) {
- $q_meta[] = $row;
- }
- }
- }
- return $q_meta;
- break;
- case 'settings':
- if ($_SESSION['mailcow_cc_role'] != "admin") {
- $_SESSION['return'][] = array(
- 'type' => 'danger',
- 'log' => array(__FUNCTION__, $_action, $_data_log),
- 'msg' => 'access_denied'
- );
- return false;
- }
- try {
- $settings['exclude_domains'] = json_decode($redis->Get('Q_EXCLUDE_DOMAINS'), true);
- $settings['max_size'] = $redis->Get('Q_MAX_SIZE');
- $settings['retention_size'] = $redis->Get('Q_RETENTION_SIZE');
- }
- catch (RedisException $e) {
- $_SESSION['return'][] = array(
- 'type' => 'danger',
- 'log' => array(__FUNCTION__, $_action, $_data_log),
- 'msg' => array('redis_error', $e)
- );
- return false;
- }
- return $settings;
- break;
- case 'details':
- if (!is_numeric($_data) || empty($_data)) {
- return false;
- }
- $stmt = $pdo->prepare('SELECT `rcpt`, `symbols`, `msg`, `domain` FROM `quarantine` WHERE `id`= :id');
- $stmt->execute(array(':id' => $_data));
- $row = $stmt->fetch(PDO::FETCH_ASSOC);
- if (hasMailboxObjectAccess($_SESSION['mailcow_cc_username'], $_SESSION['mailcow_cc_role'], $row['rcpt'])) {
- return $row;
- }
- return false;
- break;
- }
- }
|