]> 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:

Merge branch 'master' of ssh://git.madduck.net/~/git/pub/etc/mailfilter
[etc/mailfilter.git] / procmail / delay-delivery
1 #TODO: create config/delay-(disabled|tonight|weekend)
2
3 :0
4 * DELAY ?? .
5 * ! DELAYED ?? .
6 {
7   :0
8   * DELAY ?? ^[0-9]
9   { DELAY="now + $DELAY" }
10
11   #TODO: for tickling, use header date
12   RELEASE="`$BIN_DATE -d \"$DELAY\" +'%s %c'`"
13
14   :0
15   *$ RELEASE ?? ^\/${RE_NOT_SPACE}+
16   { RELEASE_TS=$MATCH }
17
18   :0
19   *$  $RELEASE_TS ^0
20   *$ -$OURDATE_TS ^0
21   {
22     :0
23     *$ RELEASE ?? ^[0-9]+${RE_SPACE}+\/.+
24     { RELEASE_TIME="$MATCH" }
25
26     LOG="delay:       delay delivery of $MSGID until $RELEASE_TIME$NL"
27
28     :0 fw
29     |$FORMAIL -I "X-Delayed: $RELEASE_TS ($RELEASE_TIME)"
30
31     INCLUDERC=$PMDIR/record-delayed-mail
32
33     :0
34     $DELAYED_QUEUE
35   }
36 }