blob: 1118c2006f251acc354e98256b913f552c3d494f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /bin/bash
MAIL="$(cat)"
# Only execute the following script when mail receiver is mastodon@topo.tw
grep -qE "^To: .*mastodon@topo.tw[>]?$" <<<"$MAIL" || exit 0
date >>~/Downloads/mastodon.log
echo $$ >>~/Downloads/mastodon.log
awk -v RS= 'NR>1' <<<"$MAIL" >>~/Downloads/mastodon.log
#awk -v RS= 'NR>1' <<<"$MAIL" | toot post >/tmp/mastodon.log
|