Hi everyone,<br><br>I have Smokeping setup and monitoring a few critical servers. I have two challenges left before I&#39;m finished. One, getting email alerts to work and two, zoom graphs. I will address the zoom graphs in a later post. 
<br><br>Anyway,<br><br>Mail does leave the box using Net::Smtp. I used the perl script (below) from a previous poster and it works. So this tell me the Net::Smtp per module works, the firewall rules on the server work, and destination mail server accepts my HELO. 
<br><br>#!/usr/bin/perl<br>use Net::SMTP;<br>$smtp = Net::SMTP-&gt;new(&#39;<a href="http://mail.domian.com">mail.domian.com</a>&#39;);<br>$smtp-&gt;mail(&quot;<a href="mailto:smokeping\@domian.com">smokeping\@domian.com</a>
&quot;);<br>$smtp-&gt;to(&quot;<a href="mailto:myname\@domian.com">myname\@domian.com</a>&quot;);<br>$smtp-&gt;data();<br>$smtp-&gt;datasend(&quot;Smokeping Rules\n&quot;);<br>$smtp-&gt;dataend();<br>$smtp-&gt;quit;<br><br>
sendmail also works from the command line.<br><br>I have added this (below) to the config for testing and place a bogus IP in the hosts file. I still do not recieve an email and the mailq is empty.<br><br><br>+testloss<br>
type = loss<br># in percent<br>pattern = ==0%,==0%,==0%,==0%,&gt;0%<br>comment = test packet loss<br><br><br><br>Thanks in advance.<br>