# muttrc file for account ruderich.org/ruderich.com
# Copyright (C) 2007-2012 Simon Ruderich
#
# This file is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This file is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this file. If not, see .
# set my identity:
set from=simon@ruderich.org
set realname="Simon Ruderich"
# use this as hostname so the local hostname is not used:
set hostname=ruderich.org
# set my additional mail addresses:
alternates simon@ruderich.org simon@ruderich.com
# use my signature, language dependent:
send-hook . 'set signature=~/.mutt/ruderich-signature'
send-hook '~t\.de$' 'set signature=~/.mutt/ruderich-signature-de'
# use ~/mail as my folder:
set folder=~/mail
# my inboxes so they are checked for new mail:
mailboxes `echo $HOME/mail/inbox*`
# my mailing lists so they are checked for new mail:
mailboxes `echo $HOME/mail/lists/*`
# automatically sort after threads in mailing lists:
folder-hook . set sort=date
folder-hook lists set sort=threads
folder-hook programming set sort=threads
# allow threads in privoxy-requsts:
folder-hook . set sort_re=yes
folder-hook lists/archive/privoxy-requests set sort_re=no
# allow reading gzip compressed mailboxes:
open-hook \\.gz$ "gzip -cd %f > %t"
# load muttrc files:
source ~/.mutt/load
# Display mutt's version on startup.
push
# vim: ft=muttrc