Re: mutt writes Fcc: even if the MTA fails to deliver
* Michelle Konzack <linux4michelle@xxxxxxxxxx> [2004-08-12 00:54 +0200]:
> Am 2004-08-11 22:55:57, schrieb Nicolas Rachinsky:
>
> > I think you should use a better MTA. One which does queuing, for
> > example.
>
> Not posibel somtimes...
>
> And why install "sendmail", "exim", "postfix" or "courier-mta"
> if I do not need the perfomance (they are 100 times overkill)
If you don't care about performance.
#!/bin/sh UNTESTED
# set sendmail_wait=-1
tempfoo="`basename "$0"`"
TMP="`mktemp /tmp/"${tempfoo}".XXXXXX`"
cat >$TMP
while ! youroldsendmail "$@" <$TMP; do
sleep 5
done
rm $TMP
------------------
Nicolas