summaryrefslogtreecommitdiffhomepage
path: root/plugins/weblog/procmail/procmail.sh
blob: bafe889a5b2f836d49072887dccca70592f5d083 (plain)
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
#!/bin/bash
#
# Mail Blog input script, to be called by procmail
#
set -e

function atexit {
	if [ "$ERRORMSG" != "" -o -s errormsg.txt ] ; then
		(echo "$ERRORMSG" ; cat errormsg.txt) | mutt -s "bloginput: Error" -- "$ADDR" >> ~/log 2>&1
	fi
	cd
	rm -rf "$DIR"
}
trap atexit EXIT

function mimedecode() {
 perl -ne 'require MIME::Head; $head = MIME::Head->read(\*STDIN); $head->decode(); print $head->get("Subject")'
}

echo "Log at `date`:" >> ~/log 2>&1

BLOGDIR=/var/www/blog

# Default: Error
ERRORMSG="General error."
USERLOG=""

DIR=`mktemp -d`

cd "$DIR"

touch body.txt
touch errormsg.txt

cat > inmail

ADDR=`grep "^From: " inmail | sed -e 's/^From: //'`
if echo "$ADDR" | grep -q -v "^[a-zA-Z0-9@._-<>\" ]\+$" ; then
	# can't send error message to unknown requester
	ERRORMSG=""
	exit 1
fi
if echo "$ADDR" | grep -q "weblog-bloginput" ; then
	# don't reply to mails from weblog-bloginput, i.e. prevent mail loops
	ERRORMSG=""
	exit 1
fi

#if grep -q "^pitch " inmail ; then
#	PITCH=`grep "^pitch " inmail|head -n1|sed -e 's/^pitch \([+-]\?[0-9]\+\(\.[0-9]\+\)\?\).*/\1/'`
#	if echo "$PITCH" | grep -q "^pitch " ; then
#		# no pitch match
#		ERRORMSG="Bad pitch syntax."
#		exit 1
#	fi
#	USERLOG="pitch $PITCH"
#else
#	PITCH=0
#fi

ALLLINES=`wc -l inmail | cut -f1 -d" "`

HEADERLINES=`cat inmail | (n=0; while read i ; do
 if [ "$i" == "" ] ; then
  echo $n
  break
 fi
 n=$(($n + 1))
done)`

HEADER=`head -n$HEADERLINES inmail`
BODY=`tail -n$(($ALLLINES - $HEADERLINES - 1)) inmail`

echo "$HEADER" > /home/weblog-bloginput/header.txt
echo "$BODY" > /home/weblog-bloginput/body.txt

SUBJECT=`echo "$HEADER" | mimedecode`
SUBJECT_PATH=`echo "$SUBJECT" | sed -e 's/[^a-zA-Z0-9]/_/g'`

ARTICLEDIR="$BLOGDIR/`date +%Y/%Y%m%d_%H%M`_$SUBJECT_PATH"

mkdir -p $ARTICLEDIR
echo "Subject: $SUBJECT" >> $ARTICLEDIR/article.data
echo "" >> $ARTICLEDIR/article.data
echo "$BODY" >> $ARTICLEDIR/article.data

echo "Processed successfully." | mutt -s "Bloginput: $SUBJECT_PATH" -- "$ADDR" >> ~/log 2>&1

echo "User log:" >> ~/log
cat body.txt >> ~/log

ERRORMSG=""
echo "Done successfully at `date`." >> ~/log 2>&1