Add vacation-seconds extension support (RFC 6131)

pull/62/head
Aleksander Machniak 12 years ago
parent bb080af14d
commit b6fa7d54b8

@ -1,3 +1,5 @@
- Add vacation-seconds extension support (RFC 6131)
* version 6.2 [2013-02-17] * version 6.2 [2013-02-17]
----------------------------------------------------------- -----------------------------------------------------------
- Support tls:// prefix in managesieve_host option - Support tls:// prefix in managesieve_host option

@ -84,7 +84,7 @@ class rcube_sieve
return $this->_set_error(SIEVE_ERROR_LOGIN); return $this->_set_error(SIEVE_ERROR_LOGIN);
} }
$this->exts = $this->get_extensions(); $this->exts = $this->get_extensions();
// disable features by config // disable features by config
if (!empty($disabled)) { if (!empty($disabled)) {

@ -33,6 +33,7 @@ class rcube_sieve_script
'ereject', // RFC5429 'ereject', // RFC5429
'copy', // RFC3894 'copy', // RFC3894
'vacation', // RFC5230 'vacation', // RFC5230
'vacation-seconds', // RFC6131
'relational', // RFC3431 'relational', // RFC3431
'regex', // draft-ietf-sieve-regex-01 'regex', // draft-ietf-sieve-regex-01
'imapflags', // draft-melnikov-sieve-imapflags-06 'imapflags', // draft-melnikov-sieve-imapflags-06
@ -447,8 +448,13 @@ class rcube_sieve_script
case 'vacation': case 'vacation':
array_push($exts, 'vacation'); array_push($exts, 'vacation');
$action_script .= 'vacation'; $action_script .= 'vacation';
if (!empty($action['days'])) if (isset($action['seconds'])) {
$action_script .= " :days " . $action['days']; array_push($exts, 'vacation-seconds');
$action_script .= " :seconds " . intval($action['seconds']);
}
else if (!empty($action['days'])) {
$action_script .= " :days " . intval($action['days']);
}
if (!empty($action['addresses'])) if (!empty($action['addresses']))
$action_script .= " :addresses " . self::escape_string($action['addresses']); $action_script .= " :addresses " . self::escape_string($action['addresses']);
if (!empty($action['subject'])) if (!empty($action['subject']))
@ -477,8 +483,15 @@ class rcube_sieve_script
} }
// requires // requires
if (!empty($exts)) if (!empty($exts)) {
$output = 'require ["' . implode('","', array_unique($exts)) . "\"];\n" . $output; $exts = array_unique($exts);
if (in_array('vacation-seconds', $exts) && ($key = array_search('vacation', $exts)) !== false) {
unset($exts[$key]);
}
$output = 'require ["' . implode('","', $exts) . "\"];\n" . $output;
}
if (!empty($this->prefix)) { if (!empty($this->prefix)) {
$output = $this->prefix . "\n\n" . $output; $output = $this->prefix . "\n\n" . $output;
@ -816,24 +829,12 @@ class rcube_sieve_script
for ($i=0, $len=count($tokens); $i<$len; $i++) { for ($i=0, $len=count($tokens); $i<$len; $i++) {
$tok = strtolower($tokens[$i]); $tok = strtolower($tokens[$i]);
if ($tok == ':days') { if ($tok == ':mime') {
$vacation['days'] = $tokens[++$i];
}
else if ($tok == ':subject') {
$vacation['subject'] = $tokens[++$i];
}
else if ($tok == ':addresses') {
$vacation['addresses'] = $tokens[++$i];
}
else if ($tok == ':handle') {
$vacation['handle'] = $tokens[++$i];
}
else if ($tok == ':from') {
$vacation['from'] = $tokens[++$i];
}
else if ($tok == ':mime') {
$vacation['mime'] = true; $vacation['mime'] = true;
} }
else if ($tok[0] == ':') {
$vacation[substr($tok, 1)] = $tokens[++$i];
}
} }
$result[] = $vacation; $result[] = $vacation;

@ -57,6 +57,9 @@ $labels['sender'] = 'Sender';
$labels['recipient'] = 'Recipient'; $labels['recipient'] = 'Recipient';
$labels['vacationaddresses'] = 'My additional e-mail addresse(s) (comma-separated):'; $labels['vacationaddresses'] = 'My additional e-mail addresse(s) (comma-separated):';
$labels['vacationdays'] = 'How often send messages (in days):'; $labels['vacationdays'] = 'How often send messages (in days):';
$labels['vacationinterval'] = 'How often send messages:';
$labels['days'] = 'days';
$labels['seconds'] = 'seconds';
$labels['vacationreason'] = 'Message body (vacation reason):'; $labels['vacationreason'] = 'Message body (vacation reason):';
$labels['vacationsubject'] = 'Message subject:'; $labels['vacationsubject'] = 'Message subject:';
$labels['rulestop'] = 'Stop evaluating rules'; $labels['rulestop'] = 'Stop evaluating rules';

@ -663,7 +663,8 @@ class managesieve extends rcube_plugin
$area_targets = rcube_utils::get_input_value('_action_target_area', rcube_utils::INPUT_POST, true); $area_targets = rcube_utils::get_input_value('_action_target_area', rcube_utils::INPUT_POST, true);
$reasons = rcube_utils::get_input_value('_action_reason', rcube_utils::INPUT_POST, true); $reasons = rcube_utils::get_input_value('_action_reason', rcube_utils::INPUT_POST, true);
$addresses = rcube_utils::get_input_value('_action_addresses', rcube_utils::INPUT_POST, true); $addresses = rcube_utils::get_input_value('_action_addresses', rcube_utils::INPUT_POST, true);
$days = rcube_utils::get_input_value('_action_days', rcube_utils::INPUT_POST); $intervals = rcube_utils::get_input_value('_action_interval', rcube_utils::INPUT_POST);
$interval_types = rcube_utils::get_input_value('_action_interval_type', rcube_utils::INPUT_POST);
$subject = rcube_utils::get_input_value('_action_subject', rcube_utils::INPUT_POST, true); $subject = rcube_utils::get_input_value('_action_subject', rcube_utils::INPUT_POST, true);
$flags = rcube_utils::get_input_value('_action_flags', rcube_utils::INPUT_POST); $flags = rcube_utils::get_input_value('_action_flags', rcube_utils::INPUT_POST);
$varnames = rcube_utils::get_input_value('_action_varname', rcube_utils::INPUT_POST); $varnames = rcube_utils::get_input_value('_action_varname', rcube_utils::INPUT_POST);
@ -883,11 +884,12 @@ class managesieve extends rcube_plugin
break; break;
case 'vacation': case 'vacation':
$reason = $this->strip_value($reasons[$idx]); $reason = $this->strip_value($reasons[$idx]);
$interval_type = $interval_types[$idx] == 'seconds' ? 'seconds' : 'days';
$this->form['actions'][$i]['reason'] = str_replace("\r\n", "\n", $reason); $this->form['actions'][$i]['reason'] = str_replace("\r\n", "\n", $reason);
$this->form['actions'][$i]['days'] = $days[$idx];
$this->form['actions'][$i]['subject'] = $subject[$idx]; $this->form['actions'][$i]['subject'] = $subject[$idx];
$this->form['actions'][$i]['addresses'] = explode(',', $addresses[$idx]); $this->form['actions'][$i]['addresses'] = explode(',', $addresses[$idx]);
$this->form['actions'][$i][$interval_type] = $intervals[$idx];
// @TODO: vacation :mime, :from, :handle // @TODO: vacation :mime, :from, :handle
if ($this->form['actions'][$i]['addresses']) { if ($this->form['actions'][$i]['addresses']) {
@ -905,8 +907,8 @@ class managesieve extends rcube_plugin
if ($this->form['actions'][$i]['reason'] == '') if ($this->form['actions'][$i]['reason'] == '')
$this->errors['actions'][$i]['reason'] = $this->gettext('cannotbeempty'); $this->errors['actions'][$i]['reason'] = $this->gettext('cannotbeempty');
if ($this->form['actions'][$i]['days'] && !preg_match('/^[0-9]+$/', $this->form['actions'][$i]['days'])) if ($this->form['actions'][$i][$interval_type] && !preg_match('/^[0-9]+$/', $this->form['actions'][$i][$interval_type]))
$this->errors['actions'][$i]['days'] = $this->gettext('forbiddenchars'); $this->errors['actions'][$i]['interval'] = $this->gettext('forbiddenchars');
break; break;
case 'set': case 'set':
@ -1411,14 +1413,14 @@ class managesieve extends rcube_plugin
$tout .= $select_size_op->show($rule['test']=='size' ? $rule['type'] : ''); $tout .= $select_size_op->show($rule['test']=='size' ? $rule['type'] : '');
$tout .= '<input type="text" name="_rule_size_target[]" id="rule_size_i'.$id.'" value="'.$sizetarget.'" size="10" ' $tout .= '<input type="text" name="_rule_size_target[]" id="rule_size_i'.$id.'" value="'.$sizetarget.'" size="10" '
. $this->error_class($id, 'test', 'sizetarget', 'rule_size_i') .' /> . $this->error_class($id, 'test', 'sizetarget', 'rule_size_i') .' />
<input type="radio" name="_rule_size_item['.$id.']" value=""' <label><input type="radio" name="_rule_size_item['.$id.']" value=""'
. (!$sizeitem ? ' checked="checked"' : '') .' class="radio" />'.$this->rc->gettext('B').' . (!$sizeitem ? ' checked="checked"' : '') .' class="radio" />'.$this->rc->gettext('B').'</label>
<input type="radio" name="_rule_size_item['.$id.']" value="K"' <label><input type="radio" name="_rule_size_item['.$id.']" value="K"'
. ($sizeitem=='K' ? ' checked="checked"' : '') .' class="radio" />'.$this->rc->gettext('KB').' . ($sizeitem=='K' ? ' checked="checked"' : '') .' class="radio" />'.$this->rc->gettext('KB').'</label>
<input type="radio" name="_rule_size_item['.$id.']" value="M"' <label><input type="radio" name="_rule_size_item['.$id.']" value="M"'
. ($sizeitem=='M' ? ' checked="checked"' : '') .' class="radio" />'.$this->rc->gettext('MB').' . ($sizeitem=='M' ? ' checked="checked"' : '') .' class="radio" />'.$this->rc->gettext('MB').'</label>
<input type="radio" name="_rule_size_item['.$id.']" value="G"' <label><input type="radio" name="_rule_size_item['.$id.']" value="G"'
. ($sizeitem=='G' ? ' checked="checked"' : '') .' class="radio" />'.$this->rc->gettext('GB'); . ($sizeitem=='G' ? ' checked="checked"' : '') .' class="radio" />'.$this->rc->gettext('GB').'</label>';
$tout .= '</div>'; $tout .= '</div>';
// Advanced modifiers (address, envelope) // Advanced modifiers (address, envelope)
@ -1572,6 +1574,7 @@ class managesieve extends rcube_plugin
. "</textarea>\n"; . "</textarea>\n";
// vacation // vacation
$vsec = in_array('vacation-seconds', $this->exts);
$out .= '<div id="action_vacation' .$id.'" style="display:' .($action['type']=='vacation' ? 'inline' : 'none') .'">'; $out .= '<div id="action_vacation' .$id.'" style="display:' .($action['type']=='vacation' ? 'inline' : 'none') .'">';
$out .= '<span class="label">'. rcube::Q($this->gettext('vacationreason')) .'</span><br />' $out .= '<span class="label">'. rcube::Q($this->gettext('vacationreason')) .'</span><br />'
.'<textarea name="_action_reason['.$id.']" id="action_reason' .$id. '" ' .'<textarea name="_action_reason['.$id.']" id="action_reason' .$id. '" '
@ -1585,10 +1588,16 @@ class managesieve extends rcube_plugin
.'<input type="text" name="_action_addresses['.$id.']" id="action_addr'.$id.'" ' .'<input type="text" name="_action_addresses['.$id.']" id="action_addr'.$id.'" '
.'value="' . (is_array($action['addresses']) ? rcube::Q(implode(', ', $action['addresses']), 'strict', false) : $action['addresses']) . '" size="35" ' .'value="' . (is_array($action['addresses']) ? rcube::Q(implode(', ', $action['addresses']), 'strict', false) : $action['addresses']) . '" size="35" '
. $this->error_class($id, 'action', 'addresses', 'action_addr') .' />'; . $this->error_class($id, 'action', 'addresses', 'action_addr') .' />';
$out .= '<br /><span class="label">' . rcube::Q($this->gettext('vacationdays')) . '</span><br />' $out .= '<br /><span class="label">' . rcube::Q($this->gettext($vsec ? 'vacationinterval' : 'vacationdays')) . '</span><br />'
.'<input type="text" name="_action_days['.$id.']" id="action_days'.$id.'" ' .'<input type="text" name="_action_interval['.$id.']" id="action_interval'.$id.'" '
.'value="' .rcube::Q($action['days'], 'strict', false) . '" size="2" ' .'value="' .rcube::Q(isset($action['seconds']) ? $action['seconds'] : $action['days'], 'strict', false) . '" size="2" '
. $this->error_class($id, 'action', 'days', 'action_days') .' />'; . $this->error_class($id, 'action', 'interval', 'action_interval') .' />';
if ($vsec) {
$out .= '&nbsp;<label><input type="radio" name="_action_interval_type['.$id.']" value="days"'
. (!isset($action['seconds']) ? ' checked="checked"' : '') .' class="radio" />'.$this->gettext('days').'</label>'
. '&nbsp;<label><input type="radio" name="_action_interval_type['.$id.']" value="seconds"'
. (isset($action['seconds']) ? ' checked="checked"' : '') .' class="radio" />'.$this->gettext('seconds').'</label>';
}
$out .= '</div>'; $out .= '</div>';
// flags // flags

@ -236,6 +236,11 @@ span.label
white-space: nowrap; white-space: nowrap;
} }
td.rowtargets label
{
color: black;
}
#footer #footer
{ {
padding-top: 5px; padding-top: 5px;

@ -197,6 +197,11 @@ input.radio
margin-top: 0; margin-top: 0;
} }
input.radio
{
vertical-align: middle;
}
select.operator_selector select.operator_selector
{ {
width: 200px; width: 200px;
@ -210,6 +215,11 @@ span.label
white-space: nowrap; white-space: nowrap;
} }
td.rowtargets label
{
color: black;
}
#footer #footer
{ {
padding-top: 5px; padding-top: 5px;

@ -0,0 +1,12 @@
require ["vacation-seconds"];
# rule:[test-vacation]
if header :contains "Subject" "vacation"
{
vacation :seconds 0 text:
# test
test test /* test */
test
.
;
stop;
}
Loading…
Cancel
Save