Hi David, > The problematic line looks something like: > /usr/bin/rdiff-backup $from $to 2>&1 >> $MAILFILE || exit 1 > > I've simplified that line slightly for this post but it has the same > problem. You need to redirect stderr to stdout *after* you've redirected stdout: /usr/bin/rdiff-backup $from $to >>$MAILFILE 2>&1 Cheers, Jeremy