Aufgabenstellung: Ich möchte EMails versenden, z.B. um Statusmeldungen zu erhalten. Einmal am Tag soll eine EMail verschickt werden. Dazu muss ein Cronjob erstellt werden. Programm installieren:

apt-get install sendemail

 

Script:

#!/bin/bash
# Mailversand als Statusmeldung

sendemail -f Diese E-Mail-Adresse ist vor Spambots geschützt! Zur Anzeige muss JavaScript eingeschaltet sein! -u BETREFF -m "MESSAGE\n`date`" -t empfäDiese E-Mail-Adresse ist vor Spambots geschützt! Zur Anzeige muss JavaScript eingeschaltet sein! -s mail.gmx.net -xu Diese E-Mail-Adresse ist vor Spambots geschützt! Zur Anzeige muss JavaScript eingeschaltet sein! -xp "PASSWORT" -o tls=auto


Kurze Erläuterung zum Script, Das Beispiel geht an einen Empfänger bei gmail.de, der Absender ist bei gmx.de. Der bestehende Mailaccount wird zum Versenden der EMail benutzt. Bitte beachtet auch die ausführliche Anleitung des Programmes.

sendemail --h

 

Hinweis! Ich würde aus Sicherheitsgründen einen eigenen Mailaccount nur für die Statusmeldungen einrichten. Nehmt nicht eure normalen Mailaccounts!

Wie man ein Script erstellt, habe ich hier schon erklärt. Crontab anlegen: crontab -e So sieht das dann aus, jeden Tag um 7:30 Uhr wird das Script mail.sh aufgerufen und ausgeführt. Das Script liegt hier im Beispiel im Hauptverzeichnis /

# Edit this file to introduce tasks to be run by cron.
#
# Each task to run has to be defined through a single line
# indicating with different fields when the task will be run
# and what command to run for the task
#
# To define the time you can provide concrete values for
# minute (m), hour (h), day of month (dom), month (mon),
# and day of week (dow) or use '*' in these fields (for 'any').#
# Notice that tasks will be started based on the cron's system
# daemon's notion of time and timezones.
#
# Output of the crontab jobs (including errors) is sent through
# email to the user the crontab file belongs to (unless redirected).
#
# For example, you can run a backup of all your user accounts
# at 5 a.m every week with:
# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
#
# For more information see the manual pages of crontab(5) and cron(8)
#
# m h  dom mon dow   command
30 07   * * *   /mail.sh

Im Log unter /var/log/syslog kann man nachsehen ob das Script gestartet wurde.