Tag Archives: exim

Exim GnuTLS Diffie-Hellman errors

I have been getting increasing number of errors in my Exim log related to GnuTLS Diffie-Hellman prime number. That prime number being too small causes Exim to abort the connection and initiate a new one to send the email over … Continue reading

Posted in Computer, Linux, Networking | Tagged , , | Leave a comment

Nagios and Exim queue size

A simple script to check Exim queue size for Nagios NRPE: #!/bin/bash #arg1 = warning count #arg2 = critical count if [ -z “$1” ] || [ -z “$2” ] then         echo “Usage: ${0} warningcount criticalcount” else         if … Continue reading

Posted in Computer, Linux | Tagged , , , , | Leave a comment