mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-31 04:59:21 +03:00
Improved Sieve Script editor with lists of available Actions, Controls and Tests
This commit is contained in:
parent
ff9a89380c
commit
f47eb61aee
14 changed files with 269 additions and 164 deletions
|
|
@ -4,7 +4,7 @@
|
|||
*/
|
||||
|
||||
import {
|
||||
GrammarCommand,
|
||||
ControlCommand,
|
||||
GrammarStringList,
|
||||
GrammarQuotedString
|
||||
} from 'Sieve/Grammar';
|
||||
|
|
@ -16,7 +16,7 @@ import {
|
|||
* elsif <test2: test> <block2: block>
|
||||
* else <block3: block>
|
||||
*/
|
||||
export class ConditionalCommand extends GrammarCommand
|
||||
export class ConditionalCommand extends ControlCommand
|
||||
{
|
||||
constructor()
|
||||
{
|
||||
|
|
@ -61,7 +61,7 @@ export class ElseCommand extends ConditionalCommand
|
|||
/**
|
||||
* https://tools.ietf.org/html/rfc5228#section-3.2
|
||||
*/
|
||||
export class RequireCommand extends GrammarCommand
|
||||
export class RequireCommand extends ControlCommand
|
||||
{
|
||||
constructor()
|
||||
{
|
||||
|
|
@ -87,6 +87,6 @@ export class RequireCommand extends GrammarCommand
|
|||
/**
|
||||
* https://tools.ietf.org/html/rfc5228#section-3.3
|
||||
*/
|
||||
export class StopCommand extends GrammarCommand
|
||||
export class StopCommand extends ControlCommand
|
||||
{
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue