Difference between revisions of "Pipe"
From Mailutils
Jump to navigationJump to search (Initial revision) |
m (→See also) |
||
(2 intermediate revisions by the same user not shown) | |||
Line 3: | Line 3: | ||
==Syntax== | ==Syntax== | ||
− | pipe [:envelope] <''program'': string> | + | pipe [:envelope] [:header] [:body] <''program'': string> |
− | The ''pipe'' action executes a shell command specified by its argument and pipes the entire message to its standard input. | + | The ''pipe'' action executes a shell command specified by its argument and pipes the entire message, including its envelope, to its standard input. |
− | + | Piping only certain parts of the message can be requested by supplying corresponding tagged arguments. For example | |
+ | |||
+ | pipe :envelope :body "prog" | ||
+ | |||
+ | will send to <tt>prog</tt> only envelope and body of each message. | ||
+ | |||
+ | ==See also== | ||
+ | |||
+ | * [[pipe test]] | ||
+ | |||
+ | [[Category:Sieve]] | ||
+ | [[Category:Sieve Actions]] | ||
+ | [[Category:Sieve Extensions]] |
Latest revision as of 00:03, 19 December 2010
Pipe is a Sieve extension action.
Syntax
pipe [:envelope] [:header] [:body] <program: string>
The pipe action executes a shell command specified by its argument and pipes the entire message, including its envelope, to its standard input.
Piping only certain parts of the message can be requested by supplying corresponding tagged arguments. For example
pipe :envelope :body "prog"
will send to prog only envelope and body of each message.