]> git.madduck.net Git - etc/mailfilter.git/blob - procmail/delay-delivery

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

6a4717c3227479caba0b5f8922bfbfad885504ff
[etc/mailfilter.git] / procmail / delay-delivery
1 #TODO: create config/delay-(disabled|tonight|weekend)
2
3 :0
4 * POSTPONED ?? .
5 {
6   LOG="delay:       not delaying already-postponed message$NL"
7   :0 fw
8   |$FORMAIL -R X-Postponed X-Was-Postponed
9 }
10
11 :0 E
12 * DISABLE_DELAYS ?? .
13 {
14   LOG="delay:       delays disabled, thus not delaying$NL"
15 }
16
17 :0 E
18 * DELAY ?? .
19 {
20   #TODO: for tickling, use header date
21   RELEASE="`$BIN_DATE -d \"$DELAY\" +'%s %c'`"
22
23   :0
24   *$ RELEASE ?? ^\/${RE_NOT_SPACE}+
25   { RELEASE_TS=$MATCH }
26
27   :0
28   *$  $RELEASE_TS ^0
29   *$ -$OURDATE_TS ^0
30   {
31     :0
32     *$ RELEASE ?? ^[0-9]+${RE_SPACE}+\/.+
33     { RELEASE_TIME="$MATCH" }
34
35     LOG="delay:       delay delivery of $MSGID until $RELEASE_TIME$NL"
36     POSTPONED="$RELEASE_TS ($RELEASE_TIME)"
37
38     INCLUDERC=$PMDIR/record-delayed-mail
39     INCLUDERC=$PMDIR/addheaders
40
41     :0
42     $DELAYED_QUEUE
43   }
44 }