1
0
mirror of https://blitiri.com.ar/repos/chasquid synced 2025-12-17 14:37:02 +00:00

queue: Support sending to pipes

With the introduction of aliases, the queue may now be delivering mail to
pipes. This patch implements pipe delivery.

It uses a fixed 30s timeout for now, as these commands should really not take
much time, and we don't want to overly complicate the configuration for now.
This commit is contained in:
Alberto Bertogli
2016-09-22 02:18:35 +01:00
parent a531092f8b
commit bab8a8083c
4 changed files with 76 additions and 33 deletions

View File

@@ -25,6 +25,7 @@ message Recipient {
enum Type {
EMAIL = 0;
PIPE = 1;
}
Type type = 2;