You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Events with values like `8.8.8.8` or `8.8.4.4` will match, as they are always unequal to the other value.
2558
2558
The result is *not* that the field must be unequal to all given values.
@@ -2567,27 +2567,27 @@ in the sieve file will be forwarded to the next bot in the pipeline, unless the
2567
2567
2568
2568
* `add` adds a key value pair to the event. This action only applies if the key is not yet defined in the event. If the key is already defined, the action is ignored. Example:
2569
2569
2570
-
```add comment = 'hello, world'```
2570
+
``add comment = 'hello, world'``
2571
2571
2572
2572
* `add!` same as above, but will force overwrite the key in the event.
2573
2573
2574
2574
* `update` modifies an existing value for a key. Only applies if the key is already defined. If the key is not defined in the event, this action is ignored. Example:
2575
2575
2576
-
```update feed.accuracy = 50```
2576
+
``update feed.accuracy = 50``
2577
2577
2578
2578
* `remove` removes a key/value from the event. Action is ignored if the key is not defined in the event. Example:
2579
2579
2580
-
```remove extra.comments```
2580
+
``remove extra.comments``
2581
2581
2582
2582
* `keep` sends the message to the next bot in the pipeline (same as the default behaviour), and stops sieve file processing.
2583
2583
2584
-
```keep```
2584
+
``keep``
2585
2585
2586
2586
* `path` sets the path (named queue) the message should be sent to (implicitly
2587
2587
or with the command `keep`. The named queue needs to configured in the
2588
2588
pipeline, see the User Guide for more information.
2589
2589
2590
-
```path 'named-queue'```
2590
+
``path 'named-queue'``
2591
2591
2592
2592
* `drop` marks the event to be dropped. The event will not be forwarded to the next bot in the pipeline. The sieve file processing is interrupted upon
2593
2593
reaching this action. No other actions may be specified besides the `drop` action within `{` and `}`.
0 commit comments