Search Exchange
Search All Sites
Nagios Live Webinars
Let our experts show you how Nagios can help your organization.Login
Directory Tree
Directory
Grenage
byGrenage, October 27, 2021
Just what we needed, and quick to implement. Thank you.
Works well; ensure you have libmail-pop3client-perl installed!
byGrenage, January 31, 2011
1 of 1 people found this review helpful
This was just what I needed, although bear in mind that NRPE can only handle 1024b of data in the return (unless custom compile), so the script causes an error if you have a lot of updates.
Easy work around was the addition of a length check, and truncation if needed:
If intImportant > 0 Then
If Len(importantNames) > 970 Then
importantNames = Left(importantNames, 970) & "..."
End If
Easy work around was the addition of a length check, and truncation if needed:
If intImportant > 0 Then
If Len(importantNames) > 970 Then
importantNames = Left(importantNames, 970) & "..."
End If