On Mon, Dec 18, 2017 at 02:16:22PM +0800, Yubin Ruan wrote:
> How can I set the Bcc: to myself when To: is not myself?
>
> I try something like this but it does not work:
> send-hook "!~t [email protected]" 'my_hdr Bcc: Yubin Ruan
> <[email protected]>'
>
> Then I try this and it work when I try to send a fresh email:
>
> send-hook "~t ablacktshirt" 'my_hdr Bcc:'
> send-hook . 'my_hdr Bcc: Yubin Ruan <[email protected]>'
>
> however when I reply to somebody, it does not work. Frustrating! ;-(
Ah I still cannot figure out why these hook only work at sometime. Maybe I
just misunderstand the meaning of each hook.
Anyway, I found a configuration option that can solve my problem neatly:
set metoo=yes
Attribute goes to this SO thread:
https://stackoverflow.com/questions/12924804/mutt-reply-hook-cant-set-cc
Yubin