SK wrote: > Is there a quick way for me to forward emails to a fixed/hardcoded > email address with say a single key press? It could work either in the > index or the pager view.
If bounce doesn't work for you, the only other thing I can think of is <pipe-message> to a script. Something like this: #!/bin/bash t=$(tempfile -s .eml) cat > $t subject=$(grep -m 1 '^Subject:' $t | sed 's/^Subject: //') mutt -s "Fwd: $subject" -a $t -- f...@bar.baz rm -f $t This won't respect any of your hooks or stuff you have going on in your normal mutt session though. -Kevin