On Fri, Jun 12, 2015 at 12:03:11PM -0400, Jon LaBadie wrote: > > I've created about 300 aliases that my mta will accept > and deliver to my mail box. For example, each time I > use an online service, I assign them give them a unique > address for our communications. These are not listed as > mutt aliases, perhaps they should be. Plus I have several > general purpose addresses and several actual email accounts > including my primary "[email protected]".
Define them in $alternates regexp (e.g., alternates '.*@jgcomp\.com') If you then put: set reverse_name mutt will reply to the message using the address in $alternates that the message was addressed to. For creating new messages (e.g., to a mailing list), you would need to use hooks, e.g., send-hook . 'unmy_hdr From:' send-hook '~C ^mutt-users@mutt\.org$' 'my_hdr From: Your Name <[email protected]>' w
