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.
2554
2554
The result is *not* that the field must be unequal to all given values.
@@ -2563,27 +2563,27 @@ in the sieve file will be forwarded to the next bot in the pipeline, unless the
2563
2563
2564
2564
* `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:
2565
2565
2566
-
```add comment = 'hello, world'```
2566
+
``add comment = 'hello, world'``
2567
2567
2568
2568
* `add!` same as above, but will force overwrite the key in the event.
2569
2569
2570
2570
* `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:
2571
2571
2572
-
```update feed.accuracy = 50```
2572
+
``update feed.accuracy = 50``
2573
2573
2574
2574
* `remove` removes a key/value from the event. Action is ignored if the key is not defined in the event. Example:
2575
2575
2576
-
```remove extra.comments```
2576
+
``remove extra.comments``
2577
2577
2578
2578
* `keep` sends the message to the next bot in the pipeline (same as the default behaviour), and stops sieve file processing.
2579
2579
2580
-
```keep```
2580
+
``keep``
2581
2581
2582
2582
* `path` sets the path (named queue) the message should be sent to (implicitly
2583
2583
or with the command `keep`. The named queue needs to configured in the
2584
2584
pipeline, see the User Guide for more information.
2585
2585
2586
-
```path 'named-queue'```
2586
+
``path 'named-queue'``
2587
2587
2588
2588
* `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
2589
2589
reaching this action. No other actions may be specified besides the `drop` action within `{` and `}`.
0 commit comments