sed -e '/^Lines:/d' $inhdrs # emit the headers, minus any previous Lines: header

# generate Lines: header
lines="`
(sed 1d $inbody;		# take out the first (blank) line
 if test -r $HOME/.signature; then
	echo '-- '
	sed 4q $HOME/.signature
 fi) | wc -l `"
echo Lines: $lines

cat $inbody			# emit the article body
