monit send email does not work

I am trying to use monit, and set up email server using gmail. The configuration file is like this:

set mailserver smtp.gmail.com port 587
username "[email protected]" password "password"
using tlsv1
with timeout 30 seconds

And I set an alert to test:

check file alerttest with path /.nonexistent
alert [email protected] with reminder on 500 cycles

But when I use monit validate, the error message I got is this:

Sendmail: error receiving data from the mailserver 'smtp.gmail.com' -- Resource temporarily unavailable
Alert handler failed, retry scheduled for next cycle
'alerttest' file doesn't exist
Sendmail: error receiving data from the mailserver 'smtp.gmail.com' -- Resource temporarily unavailable
'alerttest' trying to restart

Anyone has any ideas? Thanks a lot


Solution 1:

You can not configure some other company's email server to hand off emails unless you have an actual account there. Even if you do have an account monit isn't the best program to deal with submitting email. What I would suggest is to just install a local MTA to listen on 127.0.0.1 and then configure monit like this:

set mailserver 127.0.0.1

In that case monit will hand off the email delivery to an actual MTA who can then take care of sending it out, the MTA is perfectly capable of dealing with the remote server being unavailable, unlike monit (since it's not made for that).

How you set up and configure the MTA is out of the scope of this question, however if you want it to send mail directly it would be best to have a static IP, rDNS and mx records. Or you can use a remote smarthost/gateway.

Edit: brief explanation how to install postfix

  • run:

    apt-get install postfix

  • choose:

    internet site

  • system mail name:

    whatever hostname your system has

You will now have configured postfix to send and receive email to and from the internet. Now when you configure monit as described above you will be able to send out email.

Important, in order to improve deliverability you want to make sure that your IP address has a reverse DNS record that resolves back to your domain.

For example, if your domain is example.org and your server is monit.example.org then it should resolve something like this:

host monit.example.org
monit.example.org has address 192.0.43.10

host 192.0.43.10
10.43.0.192.in-addr.arpa domain name pointer monit.example.org

Although it could resolve to a different hostname, just as long as the domain is the same. This is because many email servers will check whether you have a valid rDNS. You can request your ISP (amazon in this case) to change the rDNS for you.

Solution 2:

You can use a remote mail server. Here are my sample configs which worked. It sends alerts to my gmail through a remote smtp server. I think you still use Gmail as an smtp relay as well.

#configure remote smtp server in monitrc
/etc/monit/monitrc

set mailserver mail.yourmailserver.com port 587    
    username "[email protected]" password "mypassword"    
    using tlsv1    
    with timeout 30 seconds

#set the from email which should be same as the one above
set mail-format { from: [email protected] }

//
/etc/monit/conf.d/monit.services

monitor apache2

check process apache with pidfile /var/run/apache2/apache2.pid
       alert [email protected] only on { timeout,nonexist,resource,pid,connection }
       start program = "/etc/init.d/apache2 start" with timeout 60 seconds
       stop program  = "/etc/init.d/apache2 stop"

Solution 3:

On Ubuntu 20.04 LTS with Monit 5.26.0, I was trying to get Monit to send mail with Mailgun and the reason it wasn't working was tlsv1 should have been tls. According to this wiki page, monit 5.17 or later should use tls with Gmail or similar email providers.