Gld
| GLD | |
|---|---|
| Kurzbeschreibung: | Deamon der einen anti-spam greylisting Algoritmus implementiert |
| Offizielle Website: | http://www.gasmi.net/gld.html |
| Offizielle Dokumentation: | http://www.gasmi.net/down/gld-readme |
| Lizenz: | |
Inhaltsverzeichnis |
[Bearbeiten] Tipps
[Bearbeiten] Update auf neue Version
Nach einem Update von gld muss man gld und postfix neustarten!
[Bearbeiten] gld in Postfix aktivieren
| Datei: /etc/postfix/main.cf |
#
# Aktives GreyListing
#
smtpd_recipient_restrictions = permit_sasl_authenticated, permit_mynetworks,
reject_unauth_destination, check_policy_service inet:127.0.0.1:2525
|
[Bearbeiten] Datenbank aufräumen
gld -c <n> : clean the database for ALL entries not updated since <n> days gld -C <n> : show what the -c option would do, without doing it gld -k <n> : clean the database for entries not updated since <n> days with only one hit gld -K <n> : show what the -k option would do, without doing it gld -i : show some database informations
mit folgendem Eintrag als Crontab wird das ganze automatisch erledigt:
0 5 * * sun /usr/bin/gld -i; /usr/bin/gld -k 30; /usr/bin/gld -c 60 |