Created
August 23, 2012 04:25
-
-
Save kitchen/3432326 to your computer and use it in GitHub Desktop.
sample mutt configuration
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
# me | |
set realname = "Jeremy Kitchen" | |
set from = "[email protected]" | |
set envelope_from = yes | |
# personal account info | |
set imap_user = "[email protected]" | |
set imap_pass = "REDACTED" | |
set folder = imaps://imap.gmail.com/ | |
set smtp_url = smtps://[email protected]@smtp.gmail.com/ | |
set smtp_pass = $imap_pass | |
# default mailboxes | |
## this is google apps, these are the places to store bits | |
set spoolfile = "=INBOX" | |
set record = "=[Gmail]/Sent Mail" | |
set postponed = "=[Gmail]/Drafts" | |
# bring in the shared | |
source ~/.mutt/shared.rc | |
# vim: ft=muttrc: |
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
# me | |
set realname = "Jeremy Kitchen" | |
set from = "[email protected]" | |
set envelope_from = yes | |
# work account info | |
set imap_user = "jeremy.kitchen" | |
set imap_pass = "REDACTED" | |
set folder = imaps://mail.example.com/ | |
set smtp_url = smtps://[email protected]/ | |
set smtp_pass = $imap_pass | |
# default mailboxes | |
## this is an exchange server, so this is where Outlook puts its stuff | |
set spoolfile = "=INBOX" | |
set record = "=Sent Items" | |
set postponed = "=Drafts" | |
# bring in the shared! | |
source ~/.mutt/shared.rc | |
# vim: ft=muttrc: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment