pipeact.at
3.82 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
# This file is part of GNU Mailutils. -*- Autotest -*-
# Copyright (C) 2010-2012 Free Software Foundation, Inc.
#
# GNU Mailutils is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 3, or (at
# your option) any later version.
#
# GNU Mailutils is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNU Mailutils. If not, see <http://www.gnu.org/licenses/>.
m4_pushdef([MUT_SIEVE_EXT_NAME],[pipe action])
m4_pushdef([make_savemsg],[
AT_DATA([savemsg],[#! /bin/sh
echo "Message begin" >> $[]1
cat - >> $[]1
echo "Message end" >> $[]1
])
chmod +x savemsg
])
MUT_SIEVE_EXT_TEST([pipe entire message],[pipe00],
[require "pipe";
if header :is "Subject" "Coffee"
{
pipe "$cwd/savemsg $cwd/sieve.out";
}
],
[MUT_MBCOPY($abs_top_srcdir/testsuite/spool/sieve.mbox,mailbox)
make_savemsg
sieve MUT_SIEVE_CMDLINE MUT_SIEVE_OPTIONS -f ./mailbox prog
cat sieve.out
],
[Message begin
From bar@dontmailme.org Fri Dec 28 23:28:09 2001
Received: (from bar@dontmailme.org)
by dontmailme.org id fERKR9N16790
for foobar@nonexistent.net; Fri, 28 Dec 2001 22:18:08 +0200
Date: Fri, 28 Dec 2001 23:28:08 +0200
From: Bar <bar@dontmailme.org>
To: Foo Bar <foobar@nonexistent.net>
Message-Id: <200112232808.fERKR9N16790@dontmailme.org>
Subject: Coffee
How about some coffee?
Message end
],
[IMPLICIT KEEP on msg uid 1
IMPLICIT KEEP on msg uid 2
PIPE on msg uid 3
])
MUT_SIEVE_EXT_TEST([pipe envelope],[pipe01],
[require "pipe";
if header :is "Subject" "Coffee"
{
pipe :envelope "$cwd/savemsg $cwd/sieve.out";
}
],
[MUT_MBCOPY($abs_top_srcdir/testsuite/spool/sieve.mbox,mailbox)
make_savemsg
sieve MUT_SIEVE_CMDLINE MUT_SIEVE_OPTIONS -f ./mailbox prog
cat sieve.out
],
[Message begin
From bar@dontmailme.org Fri Dec 28 23:28:09 2001
Message end
],
[IMPLICIT KEEP on msg uid 1
IMPLICIT KEEP on msg uid 2
PIPE on msg uid 3
])
MUT_SIEVE_EXT_TEST([pipe header],[pipe02],
[require "pipe";
if header :is "Subject" "Coffee"
{
pipe :header "$cwd/savemsg $cwd/sieve.out";
}
],
[MUT_MBCOPY($abs_top_srcdir/testsuite/spool/sieve.mbox,mailbox)
make_savemsg
sieve MUT_SIEVE_CMDLINE MUT_SIEVE_OPTIONS -f ./mailbox prog
cat sieve.out
],
[Message begin
Received: (from bar@dontmailme.org)
by dontmailme.org id fERKR9N16790
for foobar@nonexistent.net; Fri, 28 Dec 2001 22:18:08 +0200
Date: Fri, 28 Dec 2001 23:28:08 +0200
From: Bar <bar@dontmailme.org>
To: Foo Bar <foobar@nonexistent.net>
Message-Id: <200112232808.fERKR9N16790@dontmailme.org>
Subject: Coffee
Message end
],
[IMPLICIT KEEP on msg uid 1
IMPLICIT KEEP on msg uid 2
PIPE on msg uid 3
])
MUT_SIEVE_EXT_TEST([pipe body],[pipe03],
[require "pipe";
if header :is "Subject" "Coffee"
{
pipe :body "$cwd/savemsg $cwd/sieve.out";
}
],
[MUT_MBCOPY($abs_top_srcdir/testsuite/spool/sieve.mbox,mailbox)
make_savemsg
sieve MUT_SIEVE_CMDLINE MUT_SIEVE_OPTIONS -f ./mailbox prog
cat sieve.out
],
[Message begin
How about some coffee?
Message end
],
[IMPLICIT KEEP on msg uid 1
IMPLICIT KEEP on msg uid 2
PIPE on msg uid 3
])
MUT_SIEVE_EXT_TEST([pipe combined],[pipe04],
[require "pipe";
if header :is "Subject" "Coffee"
{
pipe :envelope :body "$cwd/savemsg $cwd/sieve.out";
}
],
[MUT_MBCOPY($abs_top_srcdir/testsuite/spool/sieve.mbox,mailbox)
make_savemsg
sieve MUT_SIEVE_CMDLINE MUT_SIEVE_OPTIONS -f ./mailbox prog
cat sieve.out
],
[Message begin
From bar@dontmailme.org Fri Dec 28 23:28:09 2001
How about some coffee?
Message end
],
[IMPLICIT KEEP on msg uid 1
IMPLICIT KEEP on msg uid 2
PIPE on msg uid 3
])
m4_popdef([make_savemsg])
m4_popdef([MUT_SIEVE_EXT_NAME])