Mutt (Linux)

Aus Tutorials
Zur Navigation springen Zur Suche springen

Installation

sudo apt-get install mutt

Konfiguration

Die Konfigurationsparameter können in folgender Datei bearbeitet werden:

vi ~/.muttrc

Die Absenderadresse stellt man folgendermaßen ein:

set realname="Max Mustermann"
set from="max.mustermann@gmx.de"
set use_envelope_from=yes

Senden per Shell-Skript

echo "This is the text of the mail body..." | mutt -a <attachment path> -s "This is the text of the subject" -- <user>@<domain> 2>&1

Links

https://wiki.ubuntuusers.de/Mutt/

http://www.selflinux.org/selflinux/html/mutt02.html

https://dev.mutt.org/trac/wiki/MuttGuide/UseGPG


Zurück zu Ubuntu