/usr/share/roundcube/plugins/quickrules/quickrules.php is in roundcube-plugins-extra 0.7-20120110.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | <?php
/**
* QuickRules
*
* Plugin to allow the user to quickly create filters from the message list
*
* @version @package_version@
* @requires SieveRules plugin
* @author Philip Weir
*/
class quickrules extends rcube_plugin
{
public $task = 'mail|settings';
// default values: label => value
private $headers = array('subject' => 'header::Subject',
'from' => 'address::From',
'to' => 'address::To',
'cc' => 'address::Cc',
'bcc' => 'address::Bcc',
'envelopeto' => 'envelope::To',
'envelopefrom' => 'envelope::From'
);
private $operators = array('filtercontains' => 'contains',
'filternotcontains' => 'notcontains',
'filteris' => 'is',
'filterisnot' => 'notis',
'filterexists' => 'exists',
'filternotexists' => 'notexists'
);
private $flags = array('flagread' => '\\Seen',
'flagdeleted' => '\\Deleted',
'flaganswered' => '\\Answered',
'flagdraft' => '\\Draft',
'flagflagged' => '\\\\Flagged'
);
private $additional_headers = array('List-Id');
function init()
{
// load required plugin
$this->require_plugin('sieverules');
$rcmail = rcmail::get_instance();
$this->register_action('plugin.quickrules.add', array($this, 'init_rule'));
if ($rcmail->task == 'mail' && ($rcmail->action == '' || $rcmail->action == 'show')) {
$this->add_texts('localization', true);
$this->include_script('quickrules.js');
$this->include_stylesheet($this->local_skin_path() .'/quickrules.css');
if ($rcmail->output->browser->ie && $rcmail->output->browser->ver == 6)
$this->include_stylesheet($this->local_skin_path() . '/ie6hacks.css');
$this->add_button(array('command' => 'plugin.quickrules.create', 'type' => 'link', 'class' => 'buttonPas quickrules', 'classact' => 'button quickrules', 'classsel' => 'button quickrulesSel', 'title' => 'quickrules.createfilter', 'content' => ' '), 'toolbar');
}
if ($_SESSION['plugin.quickrules']) {
$this->add_hook('imap_init', array($this, 'fetch_headers'));
$this->_create_rule();
}
}
function init_rule()
{
$_SESSION['plugin.quickrules'] = true;
$_SESSION['plugin.quickrules.uids'] = get_input_value('_uid', RCUBE_INPUT_POST);
$_SESSION['plugin.quickrules.mbox'] = get_input_value('_mbox', RCUBE_INPUT_POST);
rcmail::get_instance()->output->redirect(array('task' => 'settings', 'action' => 'plugin.sieverules'));
}
function fetch_headers($attr)
{
$attr['fetch_headers'] .= trim($attr['fetch_headers'] . join(' ', $this->additional_headers));
return($attr);
}
private function _create_rule()
{
$rcmail = rcmail::get_instance();
if ($rcmail->action == 'plugin.sieverules' || $rcmail->action == 'plugin.sieverules.add') {
$this->include_script('quickrules.js');
if ($rcmail->action == 'plugin.sieverules.add') {
$uids = $_SESSION['plugin.quickrules.uids'];
$mbox = $_SESSION['plugin.quickrules.mbox'];
$rcmail->imap_connect();
$rules = array();
$actions = array();
foreach (explode(",", $uids) as $uid) {
$message = new rcube_message($uid);
$rules[] = json_serialize(array('header' => $this->headers['from'], 'op' => $this->operators['filteris'], 'target' => $message->sender['mailto']));
$recipients = array();
$recipients_array = $rcmail->imap->decode_address_list($message->headers->to);
foreach ($recipients_array as $recipient)
$recipients[] = $recipient['mailto'];
$identity = $rcmail->user->get_identity();
$recipient_str = join(', ', $recipients);
if ($recipient_str != $identity['email'])
$rules[] = json_serialize(array('header' => $this->headers['to'], 'op' => $this->operators['filteris'], 'target' => $recipient_str));
if (strlen($message->subject) > 0)
$rules[] = json_serialize(array('header' => $this->headers['subject'], 'op' => $this->operators['filtercontains'], 'target' => $message->subject));
foreach ($this->additional_headers as $header) {
if (strlen($message->headers->others[strtolower($header)]) > 0)
$rules[] = json_serialize(array('header' => 'other::' . $header, 'op' => $this->operators['filteris'], 'target' => $message->headers->others[strtolower($header)]));
}
if ($mbox != 'INBOX')
$actions[] = json_serialize(array('act' => 'fileinto', 'props' => $mbox));
foreach ($message->headers->flags as $flag) {
if ($flag == 'Flagged')
$actions[] = json_serialize(array('act' => 'imapflags', 'props' => $this->flags['flagflagged']));
}
}
$this->api->output->add_script(JS_OBJECT_NAME . "_quickrules_rules = [" . implode(',', $rules) . "];");
$this->api->output->add_script(JS_OBJECT_NAME . "_quickrules_actions = [" . implode(',', $actions) . "];");
$_SESSION['plugin.quickrules'] = false;
$_SESSION['plugin.quickrules.uids'] = '';
$_SESSION['plugin.quickrules.mbox'] = '';
}
}
}
}
?>
|