Install paclink-unix
- Configure a single MTA
This shows you the differences between two versions of the page.
| Both sides previous revision Previous revision | |||
|
plu:email_client_config:mutt_config [2016/09/25 09:42] gunn removed |
— (current) | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | ====== Example mutt .muttrc file ====== | ||
| - | <file> | ||
| - | # N7NIX custom mutt config for winlink | ||
| - | # | ||
| - | # light weight emacs type editor | ||
| - | set editor="mg" | ||
| - | |||
| - | set hostname="winlink.org" | ||
| - | # set alias_file=~/.mutt/aliases | ||
| - | |||
| - | # load aliases | ||
| - | source $alias_file | ||
| - | # load color | ||
| - | # source ~/.mutt/color_orig | ||
| - | |||
| - | #set certificate_file=~/.mutt/ssl_cert | ||
| - | |||
| - | # View Html mail | ||
| - | auto_view text/html | ||
| - | |||
| - | ################################################################## | ||
| - | # Mail store stuff | ||
| - | ################################################################## | ||
| - | |||
| - | set folder = $HOME/Mail | ||
| - | mailboxes +inbox # where to find new messages | ||
| - | set mbox_type=maildir # the format e-mail is stored in | ||
| - | set edit_headers=yes | ||
| - | |||
| - | #save incoming e-mail to inbox | ||
| - | set mbox=+inbox | ||
| - | # save outgoing e-mail to sent | ||
| - | set record=+sent | ||
| - | set postponed=+postponed | ||
| - | set move=ask-yes | ||
| - | |||
| - | # store fw-dev in a folder for that | ||
| - | fcc-save-hook ^fw-dev +fw-dev | ||
| - | |||
| - | set signature="/home/gunn/.signature.short" | ||
| - | # | ||
| - | # Name: signature | ||
| - | # Type: path | ||
| - | # Default: "~/.signature" | ||
| - | # | ||
| - | # | ||
| - | # Specifies the filename of your signature, which is appended to all | ||
| - | # outgoing messages. If the filename ends with a pipe (``|''), it is | ||
| - | # assumed that filename is a shell command and input should be read from | ||
| - | # its stdout. | ||
| - | |||
| - | set print_command="enscript -2rG" | ||
| - | # | ||
| - | # Name: print_command | ||
| - | # Type: path | ||
| - | # Default: "lpr" | ||
| - | # | ||
| - | |||
| - | ############################################################## | ||
| - | # User interface | ||
| - | ############################################################## | ||
| - | set autoedit = yes | ||
| - | set confirmappend = no | ||
| - | set smart_wrap = yes | ||
| - | |||
| - | folder-hook ipfilter set sort=threads | ||
| - | folder-hook . set sort=date-sent | ||
| - | |||
| - | ############## keybindings ####################### | ||
| - | # rebind delete to move the e-mail to the trash | ||
| - | #map index d noop | ||
| - | macro index d "s+trash\n" "Save the message to +trash" | ||
| - | macro pager d "s+trash\n" "Save the message to +trash" | ||
| - | |||
| - | ############################################################## | ||
| - | # Headers to ignore | ||
| - | ############################################################## | ||
| - | |||
| - | ignore * | ||
| - | unignore from date subject to cc | ||
| - | unignore organization organisation | ||
| - | unignore posted-to: reply-to | ||
| - | hdr_order from to cc subject date | ||
| - | |||
| - | set sendmail_wait =-1 # don't wait to send an e-mail | ||
| - | set sendmail="/usr/sbin/sendmail -oi -oem" # used on linux machine | ||
| - | |||
| - | set use_from=yes | ||
| - | set realname ="Basil Gunn" | ||
| - | set from=n7nix | ||
| - | my_hdr Reply-To: n7nix@winlink.org | ||
| - | |||
| - | set pop_delete=no | ||
| - | set user_agent=no | ||
| - | </file> | ||