You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
322 lines
12 KiB
PHP
322 lines
12 KiB
PHP
<?php
|
|
|
|
/**
|
|
* MarkAsJunk
|
|
*
|
|
* A plugin that adds a new button to the mailbox toolbar
|
|
* to mark the selected messages as Junk and move them to the Junk folder
|
|
* or to move messages in the Junk folder to the inbox - moving only the
|
|
* attachment if it is a Spamassassin spam report email
|
|
*
|
|
* @author Philip Weir
|
|
* @author Thomas Bruederli
|
|
*
|
|
* Copyright (C) 2009-2018 The Roundcube Dev Team
|
|
* Copyright (C) 2009-2018 Philip Weir
|
|
*
|
|
* This program is a Roundcube (https://roundcube.net) plugin.
|
|
* For more information see README.md.
|
|
* For configuration see config.inc.php.dist.
|
|
*
|
|
* 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 extends rcube_plugin
|
|
{
|
|
public $task = 'mail';
|
|
|
|
private $rcube;
|
|
private $spam_mbox;
|
|
private $ham_mbox;
|
|
private $flags = array(
|
|
'JUNK' => 'Junk',
|
|
'NONJUNK' => 'NonJunk'
|
|
);
|
|
|
|
|
|
public function init()
|
|
{
|
|
$this->register_action('plugin.markasjunk.junk', array($this, 'mark_message'));
|
|
$this->register_action('plugin.markasjunk.not_junk', array($this, 'mark_message'));
|
|
|
|
$this->rcube = rcube::get_instance();
|
|
$this->load_config();
|
|
$this->_load_host_config();
|
|
|
|
// Host exceptions
|
|
$hosts = $this->rcube->config->get('markasjunk_allowed_hosts');
|
|
if (!empty($hosts) && !in_array($_SESSION['storage_host'], (array) $hosts)) {
|
|
return;
|
|
}
|
|
|
|
$this->ham_mbox = $this->rcube->config->get('markasjunk_ham_mbox', 'INBOX');
|
|
$this->spam_mbox = $this->rcube->config->get('markasjunk_spam_mbox', $this->rcube->config->get('junk_mbox'));
|
|
$toolbar = $this->rcube->config->get('markasjunk_toolbar', true);
|
|
$this->_init_flags();
|
|
|
|
if ($this->rcube->action == '' || $this->rcube->action == 'show') {
|
|
$this->include_script('markasjunk.js');
|
|
$this->add_texts('localization', true);
|
|
$this->include_stylesheet($this->local_skin_path() . '/markasjunk.css');
|
|
|
|
if ($toolbar) {
|
|
// add the buttons to the main toolbar
|
|
$this->add_button(array(
|
|
'command' => 'plugin.markasjunk.junk',
|
|
'type' => 'link',
|
|
'class' => 'button buttonPas junk disabled',
|
|
'classact' => 'button junk',
|
|
'classsel' => 'button junk pressed',
|
|
'title' => 'markasjunk.buttonjunk',
|
|
'innerclass' => 'inner',
|
|
'label' => 'junk'
|
|
), 'toolbar');
|
|
|
|
$this->add_button(array(
|
|
'command' => 'plugin.markasjunk.not_junk',
|
|
'type' => 'link',
|
|
'class' => 'button buttonPas notjunk disabled',
|
|
'classact' => 'button notjunk',
|
|
'classsel' => 'button notjunk pressed',
|
|
'title' => 'markasjunk.buttonnotjunk',
|
|
'innerclass' => 'inner',
|
|
'label' => 'markasjunk.notjunk'
|
|
), 'toolbar');
|
|
}
|
|
else {
|
|
// add the buttons to the mark message menu
|
|
$this->add_button(array(
|
|
'command' => 'plugin.markasjunk.junk',
|
|
'type' => 'link-menuitem',
|
|
'label' => 'markasjunk.asjunk',
|
|
'id' => 'markasjunk',
|
|
'class' => 'icon junk',
|
|
'classact' => 'icon junk active',
|
|
'innerclass' => 'icon junk'
|
|
), 'markmenu');
|
|
|
|
$this->add_button(array(
|
|
'command' => 'plugin.markasjunk.not_junk',
|
|
'type' => 'link-menuitem',
|
|
'label' => 'markasjunk.asnotjunk',
|
|
'id' => 'markasnotjunk',
|
|
'class' => 'icon notjunk',
|
|
'classact' => 'icon notjunk active',
|
|
'innerclass' => 'icon notjunk'
|
|
), 'markmenu');
|
|
}
|
|
|
|
// add markasjunk folder settings to the env for JS
|
|
$this->rcube->output->set_env('markasjunk_ham_mailbox', $this->ham_mbox);
|
|
$this->rcube->output->set_env('markasjunk_spam_mailbox', $this->spam_mbox);
|
|
$this->rcube->output->set_env('markasjunk_move_spam', $this->rcube->config->get('markasjunk_move_spam', false));
|
|
$this->rcube->output->set_env('markasjunk_move_ham', $this->rcube->config->get('markasjunk_move_ham', false));
|
|
$this->rcube->output->set_env('markasjunk_permanently_remove', $this->rcube->config->get('markasjunk_permanently_remove', false));
|
|
$this->rcube->output->set_env('markasjunk_spam_only', $this->rcube->config->get('markasjunk_spam_only', false));
|
|
|
|
// check for init method from driver
|
|
$this->_call_driver('init');
|
|
}
|
|
}
|
|
|
|
public function mark_message()
|
|
{
|
|
$this->add_texts('localization');
|
|
|
|
$is_spam = $this->rcube->action == 'plugin.markasjunk.junk' ? true : false;
|
|
$messageset = rcmail::get_uids(null, null, $multifolder, rcube_utils::INPUT_POST);
|
|
$mbox_name = rcube_utils::get_input_value('_mbox', rcube_utils::INPUT_POST);
|
|
$dest_mbox = $is_spam ? $this->spam_mbox : $this->ham_mbox;
|
|
$result = $is_spam ? $this->_spam($messageset, $dest_mbox) : $this->_ham($messageset, $dest_mbox);
|
|
|
|
if ($result) {
|
|
if ($dest_mbox && ($mbox_name !== $dest_mbox || $multifolder)) {
|
|
$this->rcube->output->command('rcmail_markasjunk_move', $dest_mbox, $this->_messageset_to_uids($messageset, $multifolder));
|
|
}
|
|
else {
|
|
$this->rcube->output->command('command', 'list', $mbox_name);
|
|
}
|
|
|
|
$this->rcube->output->command('display_message', $is_spam ? $this->gettext('reportedasjunk') : $this->gettext('reportedasnotjunk'), 'confirmation');
|
|
}
|
|
|
|
$this->rcube->output->send();
|
|
}
|
|
|
|
public function set_flags($p)
|
|
{
|
|
$p['message_flags'] = array_merge((array) $p['message_flags'], $this->flags);
|
|
|
|
return $p;
|
|
}
|
|
|
|
private function _spam(&$messageset, $dest_mbox = null)
|
|
{
|
|
$storage = $this->rcube->get_storage();
|
|
$result = true;
|
|
|
|
foreach ($messageset as $source_mbox => &$uids) {
|
|
$storage->set_folder($source_mbox);
|
|
|
|
$result = $this->_call_driver('spam', $uids, $source_mbox, $dest_mbox);
|
|
|
|
// abort function of the driver says so
|
|
if (!$result) {
|
|
break;
|
|
}
|
|
|
|
if ($this->rcube->config->get('markasjunk_read_spam', false)) {
|
|
$storage->set_flag($uids, 'SEEN', $source_mbox);
|
|
}
|
|
|
|
if (array_key_exists('JUNK', $this->flags)) {
|
|
$storage->set_flag($uids, 'JUNK', $source_mbox);
|
|
}
|
|
|
|
if (array_key_exists('NONJUNK', $this->flags)) {
|
|
$storage->unset_flag($uids, 'NONJUNK', $source_mbox);
|
|
}
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
private function _ham(&$messageset, $dest_mbox = null)
|
|
{
|
|
$storage = $this->rcube->get_storage();
|
|
$result = true;
|
|
|
|
foreach ($messageset as $source_mbox => &$uids) {
|
|
$storage->set_folder($source_mbox);
|
|
|
|
$result = $this->_call_driver('ham', $uids, $source_mbox, $dest_mbox);
|
|
|
|
// abort function of the driver says so
|
|
if (!$result) {
|
|
break;
|
|
}
|
|
|
|
if ($this->rcube->config->get('markasjunk_unread_ham', false)) {
|
|
$storage->unset_flag($uids, 'SEEN', $source_mbox);
|
|
}
|
|
|
|
if (array_key_exists('JUNK', $this->flags)) {
|
|
$storage->unset_flag($uids, 'JUNK', $source_mbox);
|
|
}
|
|
|
|
if (array_key_exists('NONJUNK', $this->flags)) {
|
|
$storage->set_flag($uids, 'NONJUNK', $source_mbox);
|
|
}
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
|
|
private function _call_driver($action, &$uids = null, $source_mbox = null, $dest_mbox = null)
|
|
{
|
|
$driver_name = $this->rcube->config->get('markasjunk_learning_driver');
|
|
|
|
if (empty($driver_name)) {
|
|
return true;
|
|
}
|
|
|
|
$driver = $this->home . "/drivers/$driver_name.php";
|
|
$class = "markasjunk_$driver_name";
|
|
|
|
if (!is_readable($driver)) {
|
|
rcube::raise_error(array(
|
|
'code' => 600,
|
|
'type' => 'php',
|
|
'file' => __FILE__,
|
|
'line' => __LINE__,
|
|
'message' => "markasjunk plugin: Unable to open driver file $driver"
|
|
), true, false);
|
|
}
|
|
|
|
include_once $driver;
|
|
|
|
if (!class_exists($class, false) || !method_exists($class, 'spam') || !method_exists($class, 'ham')) {
|
|
rcube::raise_error(array(
|
|
'code' => 600,
|
|
'type' => 'php',
|
|
'file' => __FILE__,
|
|
'line' => __LINE__,
|
|
'message' => "markasjunk plugin: Broken driver: $driver"
|
|
), true, false);
|
|
}
|
|
|
|
// call the relevant function from the driver
|
|
$object = new $class();
|
|
if ($action == 'spam') {
|
|
$object->spam($uids, $source_mbox, $dest_mbox);
|
|
}
|
|
elseif ($action == 'ham') {
|
|
$object->ham($uids, $source_mbox, $dest_mbox);
|
|
}
|
|
elseif ($action == 'init' && method_exists($object, 'init')) { // method_exists check here for backwards compatibility
|
|
$object->init();
|
|
}
|
|
|
|
return $object->is_error ? false : true;
|
|
}
|
|
|
|
private function _messageset_to_uids($messageset, $multifolder)
|
|
{
|
|
$a_uids = array();
|
|
|
|
foreach ($messageset as $mbox => $uids) {
|
|
foreach ($uids as $uid) {
|
|
$a_uids[] = $multifolder ? $uid . '-' . $mbox : $uid;
|
|
}
|
|
}
|
|
|
|
return $a_uids;
|
|
}
|
|
|
|
private function _load_host_config()
|
|
{
|
|
$configs = $this->rcube->config->get('markasjunk_host_config');
|
|
if (empty($configs) || !array_key_exists($_SESSION['storage_host'], (array) $configs)) {
|
|
return;
|
|
}
|
|
|
|
$file = $configs[$_SESSION['storage_host']];
|
|
$this->load_config($file);
|
|
}
|
|
|
|
private function _init_flags()
|
|
{
|
|
$spam_flag = $this->rcube->config->get('markasjunk_spam_flag');
|
|
$ham_flag = $this->rcube->config->get('markasjunk_ham_flag');
|
|
|
|
if ($spam_flag === false) {
|
|
unset($this->flags['JUNK']);
|
|
}
|
|
elseif (!empty($spam_flag)) {
|
|
$this->flags['JUNK'] = $spam_flag;
|
|
}
|
|
|
|
if ($ham_flag === false) {
|
|
unset($this->flags['NONJUNK']);
|
|
}
|
|
elseif (!empty($ham_flag)) {
|
|
$this->flags['NONJUNK'] = $ham_flag;
|
|
}
|
|
|
|
if (count($this->flags) > 0) {
|
|
// register the ham/spam flags with the core
|
|
$this->add_hook('storage_init', array($this, 'set_flags'));
|
|
}
|
|
}
|
|
}
|