Christopher Bachmann <[EMAIL PROTECTED]> writes: > dornier# cat /home/cbachman/.procmailrc > # Uncomment this for users without valid shells. > VERBOSE=yes > MAILDIR=$TMPDIR/procmail.out > DEFAULT=$MAILDIR/$USER > # Set the necessary environment variables. > EXTENSION="$1" > :0 > * EXTENSION ?? . > { > DELIMITER="+" > } > RECIPIENT="[EMAIL PROTECTED]" > SENDER=`formail -x Return-Path | sed 's/[<>]//g;s/^[ ]*//'`
Ugh, it looks like the documentation on the wiki had a broken sed string in it. The "<>" are HTML escapes, not sed commands. Try this instead and it should work: SENDER=`formail -x Return-Path | sed 's/[<>]//g;s/^[ ]*//'` _____________________________________________ tmda-users mailing list (tmda-users@tmda.net) http://tmda.net/lists/listinfo/tmda-users