head	1.2;
access;
symbols
	4-7-4:1.2
	4-7-3:1.2
	4-7-2:1.2
	4-7-1:1.2
	4-7-0:1.2
	4-6-9:1.2
	4-6-8:1.2
	4-6-7:1.2
	4-6-6:1.2
	4-6-5:1.2
	4-6-4:1.2
	4-6-3:1.2
	4-6-2:1.2
	4-6-1:1.2;
locks; strict;
comment	@# @;


1.2
date	98.10.14.22.36.43;	author esr;	state Exp;
branches;
next	1.1;

1.1
date	98.10.14.20.29.04;	author esr;	state Exp;
branches;
next	;


desc
@@


1.2
log
@Updated fetchspool.
@
text
@#!/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

@


1.1
log
@Initial revision
@
text
@d6 1
a6 1
#     fetchmail -mda "fetchspool -t %T"
d10 3
a12 1
# If you try it mail me - I've never tested it ...
d14 8
a21 1
# Robert de Bath  <robert@@mayday.cix.co.uk>
d23 1
a23 1
MAILSPOOL=/var/spool/mailspool
d28 6
a33 2
   then ADDR="$2"
   else ADDR="$1"
d37 1
a37 1
   mv tmp.$$ "$MAILSPOOL/msg.`date +%j%H%M%S`$$.to.$ADDR"  || exit 1
d44 6
a49 2
      TO="echo \"$i\" | sed 's/^msg.[^.]*.to.//'"
      /usr/lib/sendmail -oem "$TO" << "$i" ||
d58 1
@
