]> ruderich.org/simon Gitweb - config/dotfiles.git/blob - mutt/mails
use set -eu
[config/dotfiles.git] / mutt / mails
1 # muttrc file for mailbox and email settings
2
3 # Copyright (C) 2007-2012  Simon Ruderich
4 #
5 # This file is free software: you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This file is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this file.  If not, see <http://www.gnu.org/licenses/>.
17
18
19 # use my inbox as mbox:
20 set mbox=+inbox-gray
21
22 # store send emails in this mailbox:
23 set record=+send/outbox
24 # store postponed mails in this file:
25 set postponed=+postponed
26
27
28 # use the little brother database to get information about emails (no quotes
29 # around %s!):
30 set query_command="lbdbq %s"
31
32
33 # automatically append emails to other mailboxes:
34 set confirmappend=no
35 # automatically delete emails when changing/closing a mailbox:
36 set delete=yes
37 # don't ask to move read mails from spool file to mbox:
38 set move=no
39
40 # automatically quote the message when replying:
41 set include=yes
42 # allow editing of headers when sending a mail:
43 set edit_headers=yes
44 # make sure autoedit is disabled as it causes problems with several hooks
45 # (send-hook, reply-hook, crypt-hook, etc.)
46 set autoedit=no
47
48 # don't mark old new mails as "O", mark them as "N":
49 set mark_old=no
50
51 # ask before quitting:
52 set quit=ask-yes
53
54 # vim: ft=muttrc