# Filename: ~/.config/mutt/muttrc # Purpose: config file for mutt # Authors: Dennis Eriksen # Bug-Reports: Email # License: This file is licensed under the BSD-3-Clause license. ################################################################################ # # General # # cfgdir! set my_cfgdir = "$XDG_CONFIG_HOME/mutt" setenv my_cfgdir "$my_cfgdir" # cachedir! set my_cached = "$XDG_CACHE_HOME/mutt" setenv my_cached "$my_cached" # Default character set for displaying text on screen set charset = "utf-8" # Character sets for outgoing mail set send_charset = "utf-8" # Folder that receives read emails (see Move) set mbox = '=' # Move emails from `$spool_file` to `$mbox` when read set move = no # (maildir,mh) Check for new mail while the mailbox is open set check_new = yes # Display a help line with common key bindings set help = yes # The default mailbox type used when creating new folders. set mbox_type = 'Maildir' # Time to pause after certain info messages set sleep_time = 0 # List of mailcap files (colon-separated) set mailcap_path = "$my_cfgdir/mailcap" # Default type for creating new mailboxes set mbox_type = "Maildir" # Directory for temporary files set tmpdir = "`DIR="$my_cached/tmp"; [ -d "$DIR" ] || mkdir -p "$DIR"; echo "$DIR"`" # Use message scoring set score = no # Regex to match message reply subjects like 're: ' set reply_regexp = "^(re([\[0-9\]+])*|aw|sv|fw|vs):[ \t]*" # Set the 'From' from the address the email was sent to set reverse_name = yes # Number of seconds before NeoMutt checks for new mail set mail_check = 5 # Time to wait for user input in menus set timeout = 60 # (ssl) Require TLS encryption for all connections set ssl_force_tls = yes # (ssl) Use STARTTLS on servers advertising the capability set ssl_starttls = yes # Decode RFC2047-encoded MIME parameters set rfc2047_parameters = yes # Save new aliases to this file set alias_file="$my_cfgdir/aliases" source "`FILE="$my_cfgdir/aliases"; [ -s "$FILE" ] && echo "$FILE" || echo /dev/null`" # # Index # # Sort method for the index set sort = "threads" # Secondary sort method for the index set sort_aux = "last-date-received" # Mark new emails as old when leaving the mailbox set mark_old = yes # Scroll the menu/index by one line, rather than a page set menu_scroll = yes # Update the progress bar after this many records read (0 to disable) set read_inc = 1000 # Update the progress bar after this many records written (0 to disable) set write_inc = 1000 # printf-like format string for the index menu (emails) - http://www.mutt.org/doc/manual/#index-format set index_format = "%3C %Z %<[y?%<[w?%<[d?%[%H:%M ]&%[%a %d]>&%[%b %d]>&%[%Y-%m ]> %-20.20F (%?l?%4l&%4c?) %s" # printf-like format string for the browser's display of folders - http://www.mutt.org/doc/manual/#folder-format set folder_format = "%t%N %2C %-30f %8s %d " # printf-like format string for the index's status line - http://www.mutt.org/doc/manual/#status-format set status_format = "-%r-Mutt: %f [Msgs:%?M?%M/?%m%?n? New:%n?%?o? Old:%o?%?d? Del:%d?%?F? Flag:%F?%?t? Tag:%t?%?p? Post:%p?%?b? Inc:%b?%?l? %l?] (%s/%S) %> local (%P)" # # Pager # # Number of index lines to display above the pager set pager_index_lines = 10 # Number of lines of overlap when changing pages in the pager set pager_context = 3 # Don't automatically open the next message when at the end of a message set pager_stop = yes # Display '~' in the pager after the end of the email set tilde = yes # printf-like format string for the pager's status bar set pager_format = "%Z [%T] %C/%m %-20.20n %s%* -- (%P)" # What order to view what MIME types in alternative_order text/plain text/enriched text/html # Automatically view these MIME types auto_view text/html # Skip '+' at beginning of wrapped lines set markers = no # # write mail screen # # Folder to store postponed messages set postponed = '=Drafts' # Save messages to the `$postponed` folder set postpone = ask-yes # Don't prompt for the recipients and subject when replying/forwarding set fast_reply = yes # Set the 'From' header for outgoing mail set use_from = yes # Set the envelope sender of the message set use_envelope_from = yes # Save outgoing emails to $record set copy = yes # Folder to save 'sent' messages set record = '=Sent' # Really delete messages, when the mailbox is closed set delete = ask-yes # Include a copy of the email that's being replied to set include = yes # String used to indent 'reply' text set indent_string = "> " # Automatically quote a forwarded message using `$indent_string` set forward_quote = yes # Forward attachments when forwarding a message set forward_attachments = ask-yes # printf-like format string to control the subject when forwarding a message set forward_format = "Fwd: [%a: %s]" # Set the 'In-Reply-To' and 'References' headers when forwarding a message set forward_references = yes # Confirm before printing a message set print = ask-yes # External command to print a message set print_command = "muttfh" # Print multiple messages separately set print_split = yes # Let the user edit the email headers whilst editing an email set edit_headers = yes # Abort the sending if the message hasn't been edited set abort_unmodified = yes # Add 'Delivered-To' to bounced messages set bounce_delivered = no # Insert '-- ' before the signature set sig_dashes = yes # Generate 'format=flowed' messages set text_flowed = yes # Interpret 'ALT-x' as 'ESC-x' set meta_key = yes # Write out the 'Bcc' field when preparing to send a mail - https://www.mutt.org/doc/manual/#write-bcc set write_bcc = no # # Bindings # bind index g noop bind index gg first-entry bind index G last-entry bind index sync-mailbox bind index - collapse-thread bind index _ collapse-all bind index \CB noop bind index R group-reply bind index N search-opposite bind index \Cd half-down bind index \Cu half-up macro index c "?" "change folder" macro index C "?" "copy a message to a mailbox" macro index M "?" "move a message to a mailbox" macro index s "\ : set my_wait_key = $wait_key\n\ : set wait_key\n\ | muttfh -u\n\ : set wait_key = $my_wait_key\n" "extract all attachments" macro index n "\ ~N\n\ O\ .\n\ " "Mark all New as Old" bind pager g noop bind pager gg top bind pager G bottom bind pager half-down bind pager next-unread # instead of next-new-then-unread, which is default bind pager \CB noop bind pager R group-reply bind pager N search-opposite bind pager \Cd half-down bind pager \Cu half-up # Enable scroll-wheel when reading messages bind pager previous-line bind pager next-line bind pager previous-undeleted bind pager next-undeleted macro pager c "?" macro pager C "?" "copy a message to a mailbox" macro pager M "?" "move a message to a mailbox" macro pager l "" macro pager ';' "" macro pager U "|urlview" "call urlview to open links" # view-mailcap - Will use first matching mailcap entry. # view-attach - Display internally supported MIME types. Will respect # $auto_view settings, to determine whether to use a # copiousoutput mailcap entry or just display attachment # directly. # view-pager - Use first matching copiousoutput mailcap entry to display # attachment in pager, regardless of $auto_view settings. bind attach view-pager bind attach a view-attach bind attach m view-mailcap bind attach s view-mailcap bind attach S save-entry bind attach k previous-entry bind attach j next-entry bind attach select-entry bind browser select-entry bind editor complete-query bind editor ^T complete # # Headers # ignore * unignore From unignore User-Agent unignore X-Mailer unignore Resent-From unignore Resent-To unignore Resent-Date unignore To unignore Cc unignore Bcc unignore Reply-To unignore Subject unignore Date unignore X-Spam-Score unignore Delivered-To #unignore X-Spam-Report #unignore X-Spam-Status unignore List-Archive unignore Message-Id #unignore In-Reply-To # # mailboxes # unmailboxes * mailboxes = `find $MAIL -maxdepth 2 -type d | sort | tail -n+2 \ | grep -v -E '(cur|new|tmp)$' \ | grep -v -e 'notmuch' \ | xargs echo` # # Source more settings # # Theme source "$my_cfgdir/themes/gruuuvybox.muttrc" # Local settings source "`FILE="$my_cfgdir/muttrc.local"; [ -s "$FILE" ] && echo "$FILE" || echo /dev/null`" ## END OF FILE #################################################################