mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 20:19:22 +03:00
added Sieve getMatchTypes() for easy valid match-types
This commit is contained in:
parent
e4bd24b4e8
commit
37bb9a9a97
3 changed files with 13 additions and 12 deletions
|
|
@ -2,7 +2,7 @@
|
|||
* https://tools.ietf.org/html/rfc5228#section-8
|
||||
*/
|
||||
|
||||
import { capa } from 'Sieve/Utils';
|
||||
import { capa, getMatchTypes } from 'Sieve/Utils';
|
||||
|
||||
import {
|
||||
BRACKET_COMMENT,
|
||||
|
|
@ -213,11 +213,7 @@ export const parseScript = (script, name = 'script.sieve') => {
|
|||
pushArg = arg => {
|
||||
command || error('Argument not part of command');
|
||||
let prev_arg = args[args.length-1];
|
||||
/*
|
||||
// https://datatracker.ietf.org/doc/html/rfc6134#section-2.3
|
||||
if (':is' === arg || ':contains' === arg || ':matches' === arg || (capa.includes('extlists') && ':list')) {
|
||||
*/
|
||||
if (':is' === arg || ':contains' === arg || ':matches' === arg) {
|
||||
if (getMatchTypes(0).includes(arg)) {
|
||||
command.match_type = arg;
|
||||
} else if (':value' === prev_arg || ':count' === prev_arg) {
|
||||
// Sieve relational [RFC5231] match types
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue