tutorials_dotfiles_.mutt_jwodder_muttrc
Differences
This shows you the differences between two versions of the page.
tutorials_dotfiles_.mutt_jwodder_muttrc [2021/03/24 00:28] – created hc9 | tutorials_dotfiles_.mutt_jwodder_muttrc [2024/07/20 07:31] (current) – f.l hc9 | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | <file config dotfile> | ||
+ | # Generic settings for mutt | ||
+ | |||
+ | # Variable settings; see the mutt manual for details on most of these: | ||
+ | set abort_nosubject | ||
+ | set allow_ansi | ||
+ | set beep_new | ||
+ | set charset=" | ||
+ | unset confirmappend | ||
+ | set date_format=" | ||
+ | set edit_headers | ||
+ | # Path to my preferred editor: | ||
+ | set editor="/ | ||
+ | set fast_reply | ||
+ | unset followup_to | ||
+ | set forward_format=" | ||
+ | set forward_quote | ||
+ | set hostname=" | ||
+ | set include | ||
+ | set mail_check=60 | ||
+ | set mime_forward=ask-no | ||
+ | set pager_context=2 | ||
+ | set postpone | ||
+ | set read_inc=50 | ||
+ | unset recall | ||
+ | set reply_to | ||
+ | unset resolve | ||
+ | unset save_empty | ||
+ | unset score | ||
+ | set send_charset=" | ||
+ | set sendmail_wait=30 | ||
+ | # Get my signature from a fortune file in my home directory: | ||
+ | set signature=" | ||
+ | set sort=reverse-date | ||
+ | set sort_aux=last-date | ||
+ | set strict_threads | ||
+ | set tilde | ||
+ | set timeout=300 | ||
+ | # Like ' | ||
+ | set visual="/ | ||
+ | set delete=yes | ||
+ | # Format of entries in mailbox listings: | ||
+ | set index_format=" | ||
+ | set move=ask-yes | ||
+ | # This setting is primarily used in connecting securely to Gmail' | ||
+ | set certificate_file=" | ||
+ | set wrap=80 | ||
+ | # Set the status line at the bottom of the screen: | ||
+ | set status_format=" | ||
+ | # Don't show a help line at the top of the screen: | ||
+ | unset help | ||
+ | |||
+ | # Don't show unnecessary mail headers | ||
+ | ignore Received Delivered-To X-Planation Return-Path Authentication-Results | ||
+ | ignore DKIM-Signature Message-ID MIME-Version References In-Reply-To Content- | ||
+ | ignore X-Spam X-ecartis DomainKey-Signature X-Junkmail | ||
+ | |||
+ | unignore Content-Type | ||
+ | |||
+ | # Append this header to all outgoing e-mails: | ||
+ | my_hdr Organization: | ||
+ | |||
+ | # Order in which to show certain headers: | ||
+ | hdr_order From: Organization: | ||
+ | |||
+ | # Settings for automatically viewing certain MIME types: | ||
+ | auto_view text/html message/ | ||
+ | alternative_order text/plain text/html application/ | ||
+ | |||
+ | # Macros for switching between my SDF account & my Gmail account (account-hooks | ||
+ | # didn't seem to fit my needs) | ||
+ | # The SDF macro would have been bound to ' | ||
+ | # save changes to the current mailbox, so I chose ' | ||
+ | macro index X ": | ||
+ | macro index G ": | ||
+ | |||
+ | # Macros for use in switching mailboxes (yes, I'm that lazy): | ||
+ | macro index + '< | ||
+ | macro index = '< | ||
+ | |||
+ | # Process commands in other files: | ||
+ | source ~/.mutt/gpg | ||
+ | source ~/ | ||
+ | |||
+ | # Start out with the SDF account: | ||
+ | source ~/.mutt/sdf | ||
+ | </ | ||