[Mon-commit] mon-contrib/monitors/cyrus lmtp.monitor,NONE,1.1
Brought to you by:
trockij
From: David N. <vi...@us...> - 2005-08-20 18:06:44
|
Update of /cvsroot/mon/mon-contrib/monitors/cyrus In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19297 Added Files: lmtp.monitor Log Message: Adding LMTP monitor script --- NEW FILE: lmtp.monitor --- #!/usr/bin/perl # # Use try to connect to a LMTP server (part of a Cyrus IMAP delivery # infrastucture, among others), and wait for the right output. # # For use with "mon". # # Arguments are "-p port -t timeout host [host...]" # # Adapted from "smtp.monitor" by # Chaskiel Grundman, cg...@an... # Adapted from "http.monitor" by # Jim Trocki, tr...@tr... # # http.monitor written by # # Jon Meek # American Cyanamid Company # Princeton, NJ # # $Id: lmtp.monitor,v 1.1 2005/08/20 18:06:36 vitroth Exp $ # # Copyright (C) 1998, Jim Trocki # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # use Getopt::Std; use English; getopts ("p:t:"); $PORT = $opt_p || 2003; $TIMEOUT = $opt_t || 30; @failures = (); foreach $host (@ARGV) { if (! &smtpGET($host, $PORT)) { push (@failures, $host); } } if (@failures == 0) { exit 0; } print join (" ", sort @failures), "\n"; foreach $msg (@details) { print "$msg\n"; } exit 1; sub smtpGET { use Socket; use Sys::Hostname; my($Server, $Port) = @_; my($ServerOK, $TheContent); my ($OurHostname); $ServerOK = 0; $TheContent = ''; $Path = '/'; ############################################################### eval { local $SIG{ALRM} = sub { die "Timeout Alarm" }; alarm $TIMEOUT; $result = &OpenSocket($Server, $Port); # Open a connection to the server if ($result == 0) { # Failure to open the socket push(@details, "${Server}: Unable to create SMTP connection to port $Port"); return ''; } $in = <S>; $in = <S> while $in =~ /^220-/; if ($in !~ /^220 /) { alarm 0; push(@details, "${Server}: $in"); return 0; } $OurHostname = &hostname; print S "LHLO $OurHostname\r\n"; $in = <S>; $in = <S> while $in =~ /^250-/; if ($in !~ /^250 /) { alarm 0; push(@details, "${Server}: $in"); return 0; } print S "quit\r\n"; $in = <S>; if ($in !~ /^221 /) { alarm 0; push(@details, "${Server}: $in"); return 0; } $ServerOK = 1; close(S); alarm 0; # Cancel the alarm }; if ($EVAL_ERROR and ($EVAL_ERROR =~ /^Timeout Alarm/)) { push(@details, "${Server}: Connection timed out"); return 0; } return $ServerOK; } sub OpenSocket { # # Make a Berkeley socket connection between this program and a TCP port # on another (or this) host. Port can be a number or a named service # local($OtherHostname, $Port) = @_; local($OurHostname, $sockaddr, $name, $aliases, $proto, $type, $len, $ThisAddr, $that); $OurHostname = &hostname; ($name, $aliases, $proto) = getprotobyname('tcp'); ($name, $aliases, $Port) = getservbyname($Port, 'tcp') unless $Port =~ /^\d+$/; ($name, $aliases, $type, $len, $ThisAddr) = gethostbyname($OurHostname); ($name, $aliases, $type, $len, $OtherHostAddr) = gethostbyname($OtherHostname); my $that = sockaddr_in ($Port, $OtherHostAddr); $result = socket(S, &PF_INET, &SOCK_STREAM, $proto) || return undef; $result = connect(S, $that) || return undef; select(S); $| = 1; select(STDOUT); # set S to be un-buffered return 1; # success } |