Server : Apache System : Linux server.lienzindia.com 4.18.0-348.7.1.el8_5.x86_64 #1 SMP Wed Dec 22 13:25:12 UTC 2021 x86_64 User : plutus ( 1007) PHP Version : 7.4.33 Disable Function : NONE Directory : /var/webuzo-data/roundcube/plugins/markasjunk/drivers/ |
Upload File : |
<?php /** * Command line learn driver * * @version 3.1 * * @author Philip Weir * Patched by Julien Vehent to support DSPAM * Enhanced support for DSPAM by Stevan Bajic <stevan@bajic.ch> * * Copyright (C) 2009-2018 Philip Weir * * This driver is part of the MarkASJunk plugin for Roundcube. * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Roundcube. If not, see https://www.gnu.org/licenses/. */ class markasjunk_cmd_learn { public function spam($uids, $src_mbox, $dst_mbox) { $this->_do_salearn($uids, true, $src_mbox); } public function ham($uids, $src_mbox, $dst_mbox) { $this->_do_salearn($uids, false, $src_mbox); } private function _do_salearn($uids, $spam, $src_mbox) { $rcube = rcube::get_instance(); $temp_dir = realpath($rcube->config->get('temp_dir')); $command = $rcube->config->get($spam ? 'markasjunk_spam_cmd' : 'markasjunk_ham_cmd'); $debug = $rcube->config->get('markasjunk_debug'); if (!$command) { return; } if (strpos($command, '%h') !== false) { preg_match_all('/%h:([\w_-]+)/', $command, $header_names, PREG_SET_ORDER); $header_names = array_column($header_names, 1); } // backwards compatibility %xds removed in markasjunk v1.12 $command = str_replace('%xds', '%h:x-dspam-signature', $command); $command = str_replace('%u', escapeshellarg($_SESSION['username']), $command); $command = str_replace('%l', escapeshellarg($rcube->user->get_username('local')), $command); $command = str_replace('%d', escapeshellarg($rcube->user->get_username('domain')), $command); if (strpos($command, '%i') !== false) { $identity = $rcube->user->get_identity(); $command = str_replace('%i', escapeshellarg($identity['email']), $command); } foreach ($uids as $uid) { // reset command for next message $tmp_command = $command; if (strpos($tmp_command, '%s') !== false) { $message = new rcube_message($uid); $tmp_command = str_replace('%s', escapeshellarg($message->sender['mailto']), $tmp_command); } if (!empty($header_names)) { $storage = $rcube->get_storage(); $storage->check_connection(); $headers = $storage->conn->fetchHeader($src_mbox, $uid, true, false, $header_names); foreach ($header_names as $header) { $val = null; if ($headers) { $val = $headers->get($header); $val = is_array($val) ? array_first($val) : $val; } if (!empty($val)) { $tmp_command = str_replace('%h:' . $header, escapeshellarg($val), $tmp_command); } else { if ($debug) { rcube::write_log('markasjunk', "header {$header} not found in message {$src_mbox}/{$uid}"); } continue 2; } } } if (strpos($command, '%f') !== false) { $tmpfname = tempnam($temp_dir, 'rcmSALearn'); file_put_contents($tmpfname, $rcube->storage->get_raw_body($uid)); $tmp_command = str_replace('%f', escapeshellarg($tmpfname), $tmp_command); } $output = shell_exec($tmp_command); if ($debug) { if ($output) { $tmp_command .= "\n$output"; } rcube::write_log('markasjunk', $tmp_command); } if (isset($tmpfname)) { unlink($tmpfname); } } } }