Created
August 2, 2012 23:40
-
-
Save iagox86/3242088 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file does everything relatd to accounts and switching accounts | |
# Load the default account information | |
source ~/.mutt/accounts/ron-at-skullsecurity.net | |
# Create some macros to switch between accounts | |
macro generic,index,pager 1 ":source ~/.mutt/accounts/ron-at-skullsecurity.net\n" | |
macro generic,index,pager 2 ":source ~/.mutt/accounts/ron.bowes-at-javaop.com\n" | |
macro generic,index,pager 3 ":source ~/.mutt/accounts/ron-at-dash9security.com\n" | |
# Add some message hooks to automatically select the proper account when replying to an email | |
message-hook '~t ^ron@dash9security\.com$' 'source ~/.mutt/accounts/ron-at-dash9security.com' | |
message-hook '~t ^ron\.bowes@javaop\.com$' 'source ~/.mutt/accounts/ron.bowes-at-javaop.com' | |
message-hook '~t ^ron@skullsecurity\.net$' 'source ~/.mutt/accounts/ron-at-skullsecurity.net' | |
# vim: set ft=muttrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment