blob: 06db9cea31870af4e469bbedf6222fa6ce2e6e39 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
I have a simple procmail recipe that extracts the subjects of the buildd emails into a logfile. With some additional work I am sure this can be useful as input to a status system/script.
----- Begin Procmail recipe -----
# appends subject to log
:0 cWh: buildd.lock
* ^TO_buildd-porters
| formail -x Subject >> buildd-porters.log
# stores raw email into a maildir folder
:0:
* ^TO_buildd-porters
buildd-porters/
----- End Procmail recipe -----
Ideally I would like to see the results processed and posted to the twiki pages where people can comment on them (hopefully without interrupting any automated status updating).
-- [[Main/GrantBow]] - 08 Jun 2002
|