You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
524 B
21 lines
524 B
#!/bin/bash |
|
# von https://privacy-handbuch.de/handbuch_31l.htm |
|
|
|
# Check des SMTP Servers |
|
danetool --check posteo.de --port 465 |
|
if [ $? -ne 0 ]; then |
|
# SSL Zertifikatsfehler! Warnung und Abbruch |
|
kdialog --error "DANE/TLSA Fehler bei SMTP Server!" |
|
exit 0 |
|
fi |
|
|
|
# Check des IMAP Servers |
|
danetool --check posteo.de --port 993 |
|
if [ $? -ne 0 ]; then |
|
# SSL Zertifikatsfehler! Warnung und Abbruch |
|
kdialog --error "DANE/TLSA Fehler bei IMAP Server!" |
|
exit 0 |
|
fi |
|
|
|
# alles ok, Thunderbird kann starten |
|
thunderbird
|
|
|