9.6.4 E-Mail-Programme (Mail user agent) am Beispiel Mutt
Ein beliebtes E-Mail-Programm f�r die Konsole ist mutt
in
Kombination mit vim
. Einstellungen liegen in
~/.muttrc
; z.B.
# diese Einstellungen modifizieren
# das Verhalten des Editors.
set editor="vim -c 'set tw=72 et ft=mail'"
#
# header weeding taken from the manual (Sven's Draconian header weeding)
#
ignore *
unignore from: date subject to cc
unignore user-agent x-mailer
hdr_order from subject to cc date user-agent x-mailer
auto_view application/msword
...
Um HTML-E-Mail oder MS-Word-Dokumente als Text anzeigen zu k�nnen, muss
antiword
installiert sein und folgende Zeilen an entweder
/etc/mailcap
(global) oder $HOME/.mailcap
(per User)
angeh�ngt werden.
text/html; lynx -force_html %s; needsterminal;
application/msword; /usr/bin/antiword '%s'; copiousoutput;
description="Microsoft Word Text"; nametemplate=%s.doc