aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/fetchspool
blob: cd6c2c81ea6c6c3d563584b98b45116575caeb31 (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
#!/bin/sh -
#
# Quick hack for fetchmail to locally spool messages.
#
# To spool:
#     fetchmail --mda "fetchspool -t %T %F"
# To de-spool
#     fetchspool -f
#
# Robert de Bath  <robert@mayday.cix.co.uk>
# updated by william boughton <bill@xencat.demon.co.uk>
# 4th/10/1998 and tested
#
# William Boughton comments:
# Still has some potential problems, with using inline from address.
# The use of _ is bad because fetchmails uses this if it notices
# shell escapes.
# 10th/11/1998
# Changed to using 3 _@@s to delimit the message, i hope this is ok.
# Whilst i have tested and used this script, with my demon account and
# SDPS, it may still have serious problems, that i've not noticed etc.

MAILSPOOL=/tmp/spool

if [ "$1" != "-f" ]
then
   if [ "$1" = "-t" ]
   then 
	ADDR="$2"
	FROM="$3"
   else 
	ADDR="$1"
	FROM="$2"
   fi

   cat - > $MAILSPOOL/tmp.$$ 				   || exit 1
   mv $MAILSPOOL/tmp.$$ "$MAILSPOOL/msg.`date +%j%H%M%S`$$.to.${ADDR}_@@${FROM}"  || exit 1

   exit 0
else
   for i in $MAILSPOOL/msg.*.to.*
   do
      [ -f "$i" ] || continue
     # TO="`echo \"$i\" | sed 's/^msg.[^.]*.to.//'`"
	TO=$(basename $i | sed -e 's/^msg.[^.]*.to.//' -e 's/_@@.*$//')
	FROM=$(basename $i | sed 's/^msg.[^.]*.to.*_@@//')
# need the \<\> so for bounces to have a proper from addr
echo the to was \<$TO\>  and the from \<$FROM\>
      /usr/lib/sendmail -f \<${FROM}\> -oem "$TO" < "$i" ||
      {
         echo "Sendmail failed on `basename \"$i\"`"
	 continue
      }
      rm -f "$i"
   done
   exit 0
fi
code from # fetchmail to it. # Command line to run fetchmail FETCHMAIL="/usr/local/bin/fetchmail" # Your procmail logfile LOG=$HOME/procmail/log # Do we want to use timer? Set to 0 to disable. TIMER=1 # Our path to sendmail with parameters SENDMAIL="/usr/bin/sendmail -oi -t" # Who am I? SELF="dmuth@ot.com" # The folders that I should check for the number of messages FOLDERS="$MAIL $HOME/mail/lists" # Number of seconds to "sleep" for while procmail finishes up, increase # this if you have a really slow system LATENT=10 # Do we want to use mailstat? Set to 0 to disable MAILSTAT=1 # Do we want to e-mail the output to myself? Set to 0 to disable. # I strongly suggest doing this so that if you lose your connection to # the net part of the way through a download, you can see how much # progess was made E_MAIL=1 ### # End of user defined variables ### # The temp file, and ensure my privacy! TMP=/tmp/fetchmail.sh.$$ # The version of this program VERSION="Runfetchmail 1.1" # Trap errors trap "rm -f $TMP; echo ""Exiting at user request"" ; \ test $TIMER -eq 1 &amp;&amp; timer -stop -id $$ &gt;/dev/null; exit 1" \ 2 3 4 15 # Source the user's rc file if it exists test -e $HOME/.runfetchmailrc &amp;&amp; . $HOME/.runfetchmailrc num_mail() { # This procedure tells me how many messages there are in each folder for D in $* do if test -f $D then echo "There are `frm $D |wc -l` messages in $D" fi done } getmail() { # Fetch the mail! test $TIMER -eq 1 &amp;&amp; timer -start -id $$ -quiet $FETCHMAIL $@ # pause for a short while echo "Now sleeping for $LATENT seconds..." echo -n "Zzz...Zzz...Zzz..." sleep $LATENT echo "wakeup time! &lt;yawn&gt;" } stats() { # Prepare the statistics # Ensure we have a log file test ! -e $LOG &amp;&amp; touch $LOG echo -e "\n\t\t\t $VERSION Statistics" test $MAILSTAT -eq 1 &amp;&amp; mailstat -k &lt;$LOG echo "" num_mail $FOLDERS test $TIMER -eq 1 &amp;&amp; echo -e "\n`timer -stop -id $$ -quiet` have elapsed." } prepmail() { # Let's prepare our e-mail cat &lt;&lt;EOF &gt;$TMP From: $LOGNAME ($VERSION) To: $LOGNAME X-Loop: $SELF Subject: Mail stats from `date "+%D %X"` EOF } ### Main Program # Let's have some initial cleanup rm -f $LOG clear # Create and secure the temporary file test $E_MAIL -eq 1 &amp;&amp; { cat /dev/null &gt;$TMP; chmod 600 $TMP } # Prepare the e-mail before the logs are added to it test $E_MAIL -eq 1 &amp;&amp; prepmail # See if we are downloading every message or not if test "$1" = "-every" then FETCHMAIL="$FETCHMAIL -a -l 0" shift fi # Fetch the mail and have the output written to stdout and (optionally) $TMP test $E_MAIL -eq 1 &amp;&amp; getmail $@ 2&gt;&amp;1 |tee -a $TMP || getmail $@ clear # Do the same thing with the statistics test $E_MAIL -eq 1 &amp;&amp; stats $@ 2&gt;&amp;1 |tee -a $TMP || stats $@ # Now send $TMP to myself and clean up the mess test $E_MAIL -eq 1 &amp;&amp; { cat $TMP |$SENDMAIL; rm -f $TMP } # cleanup the log file for next time rm -f $LOG # The End