[hobbit] Monitoring Sql Databases
Hi Nikesh, I use the following vbscript to monitor MS SQL Servers.... ====Begin====== On Error Resume Next strAlarmState = "green" strTestName = "sqlserver" 'Physical Disk Settings '% Disk Read Time iPerDiskReadTimeWarn=5 iPerDiskReadTimeAlarm=10 '% Disk Write Time iPerDiskWriteTimeWarn=5 iPerDiskWriteTimeAlarm=10 'Current Disk Queue Length iCurDiskQueueLengthWarn=10 iCurDiskQueueLengthAlarm=20 'SQL Buffer Cache Hit Ratio iBufferCacheHitRatioWarn=90 iBufferCacheHitRatioAlarm=85 'SQL Lock Timeouts /sec iLockTimeoutsWarn=50 iLockTimeoutsAlarm=100 'SQL Dead Locks /sec iDeadLocksWarn=10000 iDeadLocksAlarm=100000 'User Connections iUserConnectionsWarn=150 iUserConnectionsAlarm=300 ' Master Database Settings Set aMasterDatabaseSetting = CreateObject("scripting.dictionary") aMasterDatabaseSetting.add "DataFileWarn", 150000 aMasterDatabaseSetting.add "DataFileAlarm", 200000 aMasterDatabaseSetting.add "LogFileWarn", 20000 aMasterDatabaseSetting.add "LogFileAlarm", 40000 ' Model Database Settings Set aModelDatabaseSetting = CreateObject("scripting.dictionary") aModelDatabaseSetting.add "DataFileWarn", 150000 aModelDatabaseSetting.add "DataFileAlarm", 200000 aModelDatabaseSetting.add "LogFileWarn", 20000 aModelDatabaseSetting.add "LogFileAlarm", 40000 'Main Array SET aSQLDataFileSettings = CreateObject("scripting.dictionary") aSQLDataFileSettings.add "master", aMasterDatabaseSetting aSQLDataFileSettings.add "model", aModelDatabaseSetting strOutput = "" Set ws = WScript.CreateObject("WScript.Shell") extPath = ws.RegRead("HKLM\SOFTWARE\BBWin\Output\")
' ======================================== ' Main Code Starts Here 'Physical Disk Set colDisk = GetObject("winmgmts:").InstancesOf("Win32_PerfRawData_PerfDisk_PhysicalDisk") strOutput = strOutput & vbcrlf &"Physical Disk Information:" & vbcrlf For each DiskInstance in ColDisk '% Disk Read Time strOutput = strOutput & CheckValue(GetWMIPercent("Win32_PerfRawData_PerfDisk_PhysicalDisk.Name","""" & DiskInstance.Name & """","PercentDiskReadTime","PercentDiskReadTime_Base"),DiskInstance.name & " % Disk Read Time",iPerDiskReadTimeWarn,iPerDiskReadTimeAlarm) '% Disk Write Time strOutput = strOutput & CheckValue(GetWMIPercent("Win32_PerfRawData_PerfDisk_PhysicalDisk.Name","""" & DiskInstance.Name & """","PercentDiskWriteTime","PercentDiskWriteTime_Base"),DiskInstance.name & " % Disk Write Time",iPerDiskWriteTimeWarn,iPerDiskWriteTimeAlarm) 'Current Disk Queue Length strOutput = strOutput & CheckValue(GetWMIValue("Win32_PerfRawData_PerfDisk_PhysicalDisk.Name","""" & DiskInstance.Name & """","CurrentDiskQueueLength"),DiskInstance.name & " Current Disk Queue Length",iCurDiskQueueLengthWarn,iCurDiskQueueLengthAlarm) Next ' SQL Server strOutput = strOutput & vbcrlf & "SQL Server Information:" & vbcrlf 'Buffer Cache Hit Ration strOutput = strOutput & CheckReverseValue(GetWMIPercent("Win32_PerfRawData_MSSQLSERVER_SQLServerBufferManager","@","Buffercachehitratio","Buffercachehitratio_Base"),"Buffer Cache Hit Ratio",iBufferCacheHitRatioWarn, iBufferCacheHitRatioAlarm) 'Lock Information ' strOutput = strOutput & CheckValue(GetWMIValue("Win32_PerfRawData_MSSQLSERVER_SQLServerLocks.Name","""_Total""","LockTimeoutsPersec"),"Locks Timeouts/sec",iLockTimeoutsWarn, iLockTimeoutsAlarm) strOutput = strOutput & CheckValue(GetWMIValue("Win32_PerfRawData_MSSQLSERVER_SQLServerLocks.Name","""_Total""","NumberofDeadlocksPersec"),"Number of Deadlocks/sec",iDeadLocksWarn, iDeadLocksAlarm) 'User Connections strOutput = strOutput & CheckValue(GetWMIValue("Win32_PerfRawData_MSSQLSERVER_SQLServerGeneralStatistics","@","UserConnections"),"Number of User Connections",iUserConnectionsWarn, iUserConnectionsAlarm)
'SQL Data and Log Files Set colDatabases = GetObject("winmgmts:").InstancesOf("Win32_PerfRawData_MSSQLSERVER_SQLServerDatabases") strOutput = strOutput & vbcrlf & "SQL Server Data and Log File Information:" & vbcrlf For each DatabaseInstance in colDatabases If aSQLDataFileSettings.exists(DatabaseInstance.name) then 'Check Values strOutput = strOutput & CheckValue(GetWMIValue("Win32_PerfRawData_MSSQLSERVER_SQLServerDatabases","""" & DatabaseInstance.name & """","DataFilesSizeKB"),DatabaseInstance.name & vbTab & "Data File Size(KB)",aSQLDataFileSettings.item(DatabaseInstance.name).item("DataFileWarn"), aSQLDataFileSettings.item(DatabaseInstance.name).item("DataFileAlarm")) strOutput = strOutput & CheckValue(GetWMIValue("Win32_PerfRawData_MSSQLSERVER_SQLServerDatabases","""" & DatabaseInstance.name & """","LogFilesSizeKB"),DatabaseInstance.name & vbTab & "Log File Size(KB)",aSQLDataFileSettings.item(DatabaseInstance.name).item("LogFileWarn"), aSQLDataFileSettings.item(DatabaseInstance.name).item("LogFileAlarm")) strOutput = strOutput & vbcrlf elseif DatabaseInstance.Name = "_Total" then ' Skipping Display of Totals at this stage. May re-add later ' strOutput = strOutput & vbcrlf & "Total Data File Size:" & vbTab & GetWMIValue("Win32_PerfRawData_MSSQLSERVER_SQLServerDatabases.Name","""" & DatabaseInstance.name & """","DataFilesSizeKB") & vbcrlf ' strOutput = strOutput & vbcrlf & "Total Log File Size:" & vbTab & GetWMIValue("Win32_PerfRawData_MSSQLSERVER_SQLServerDatabases.Name","""" & DatabaseInstance.name & """","LogFilesSizeKB") & vbcrlf else ' Write Data Information Directly Out without running the Value Check ' Datafile strOutput = strOutput & "&clear" & " " & DatabaseInstance.name & vbTab & "Data File Size(KB)" & ":" & vbTab & GetWMIValue("Win32_PerfRawData_MSSQLSERVER_SQLServerDatabases.Name","""" & DatabaseInstance.name & """","DataFilesSizeKB") & vbcrlf ' Logfile strOutput = strOutput & "&clear" & " " & DatabaseInstance.name & vbTab & "Log File Size(KB)" & ":" & vbTab & GetWMIValue("Win32_PerfRawData_MSSQLSERVER_SQLServerDatabases.Name","""" & DatabaseInstance.name & """","LogFilesSizeKB") & vbcrlf strOutput = strOutput & vbcrlf end if Next
' Write the file for BB WriteFile extPath, strTestName, strAlarmState, strOutput '=========================================================== ' FUNCTIONS and SUBS start here ' This is used to get a percentage value from WMI. It requires the value and the base objects. ' It then returns the percentage FUNCTION GetWMIPercent(strCollection,strInstance,strObject,strBaseObject) SET counterCollection = GETOBJECT("winmgmts:" & strCollection & "=" & strInstance) FOR EACH cntproperty IN counterCollection.properties_ IF cntproperty.name = strObject THEN iObjectValue = cntproperty ELSEIF cntproperty.name = strBaseObject THEN iObjectBaseValue = cntproperty END IF NEXT GetWMIPercent = ROUND(CDBL(iObjectValue) / CDBL(iObjectBaseValue) * CDBL(100),0) END FUNCTION ' This is used to pull a value from WMI. FUNCTION GetWMIValue(strCollection,strInstance,strObject) Set counterCollection = GetObject("winmgmts:" & strCollection & "=" & strInstance) FOR EACH cntproperty IN counterCollection.properties_ IF cntproperty.name = strObject THEN iObjectValue = cntproperty END IF NEXT GetWMIValue = iObjectValue END FUNCTION ' This is used to check the actual value against the warning and alarm. FUNCTION CheckValue(iObjectValue,strObjectDesc,iWarnValue,iAlarmValue) IF iWarnValue > iAlarmValue THEN CheckValue = "&red" & " " & strObjectDesc & ":" & vbTab & "Object is Misconfigured" IF strAlarmState <> "red" THEN strAlarmState = "red" END IF ELSE IF iObjectValue > iWarnValue THEN IF iObjectValue > iAlarmValue THEN CheckValue = "&red" & " " & strObjectDesc & ":" & vbTab & iObjectValue & vbcrlf SetAlarmStatus "red" ELSE CheckValue = "&yellow" & " " & strObjectDesc & ":" & vbTab & iObjectValue & vbcrlf SetAlarmStatus "yellow" END IF ELSE CheckValue = "&green" & " " & strObjectDesc & ":" & vbTab & iObjectValue & vbcrlf END IF END IF END FUNCTION ' This is used to check the actual value against the warning and alarm. ' This one the alarm will be a lower value than the warning. (Values Decrease rather than increase) FUNCTION CheckReverseValue(iObjectValue,strObjectDesc,iWarnValue,iAlarmValue) IF iWarnValue < iAlarmValue THEN CheckReverseValue = "&red" & " " & strObjectDesc & ":" & vbTab & "Object is Misconfigured" IF strAlarmState <> "red" THEN strAlarmState = "red" END IF ELSE IF iObjectValue < iWarnValue THEN IF iObjectValue < iAlarmValue THEN CheckReverseValue = "&red" & " " & strObjectDesc & ":" & vbTab & iObjectValue & vbcrlf SetAlarmStatus "red" ELSE CheckReverseValue = "&yellow" & " " & strObjectDesc & ":" & vbTab & iObjectValue & vbcrlf SetAlarmStatus "yellow" END IF ELSE CheckReverseValue = "&green" & " " & strObjectDesc & ":" & vbTab & iObjectValue & vbcrlf END IF END IF END FUNCTION
' This is called to set the overall alarm status. SUB SetAlarmStatus(strnewAlarmState) IF strnewAlarmState = "red" THEN strAlarmState = strnewAlarmState ELSEIF strnewAlarmState = "yellow" THEN IF strAlarmState <> "red" THEN strAlarmState = strnewAlarmState END IF END IF END SUB
' This SUB is used for outputting the file to the external's directory in bb SUB WriteFile(strExtPath, strTestName, strAlarmState, strOutput) Set fso = CreateObject("Scripting.FileSystemObject") strOutput = strAlarmState & " " & Date & " " & Time & vbcrlf & vbcrlf & strOutput & vbcrlf Set f = fso.OpenTextFile(strExtPath & "\" & strTestName , 8 , TRUE) f.Write strOutput f.Close Set fso = Nothing END SUB ===End====
In the registry of the Windows host you have to add: [HKEY_LOCAL_MACHINE\SOFTWARE\BBWin\Output] @="C:\\Program Files\\BBWin\\tmp" Success.... Kind regards, DNS ----- Original Message ---- From: Nikesh Maharaj <NMaharaj at tcta.co.za> To: hobbit at hswn.dk Sent: Tuesday, June 17, 2008 11:29:35 AM Subject: RE: [hobbit] Monitoring Sql Databases
Hi,
I just want to monitor sql2000 and sql2005 databases for sizes , jobs etc. will this script help ?
-----Original Message----- From: Buchan Milne [mailto:bgmilne at staff.telkomsa.net] Sent: 17 June 2008 11:08 AM To: hobbit at hswn.dk Cc: Nikesh Maharaj Subject: Re: [hobbit] Monitoring Sql Databases
On Tuesday 17 June 2008 08:52:27 Nikesh Maharaj wrote:
Hi Guys,
I am aware that Hobbit can monitor and report on Sql Databases. Please if I may ask, can someone who has this working already, please assist me or point me in the direction I can get this implemented on my Hobbit monitor ?
You may want to be more specific on the database in question.
We use dbcheck from http://sourceforge.net/projects/hobbit-perl-cl/ to monitor Oracle and MySQL.
Regards, Buchan
To unsubscribe from the hobbit list, send an e-mail to hobbit-unsubscribe at hswn.dk
I know this has been reported before, but I've gone through all the offered solutions to no avail.
Problem: Hobbit 4.1.2p1 runs smtp checks against several Exchange mail servers. Was working fine until June 6th (when I added RDP service). Since then, get alternating Green (4 mins) then Yellow (< 1 min) on SMTP test.
Yellow status says "Service smtp on xxxxxxxx is not OK : Unexpected service response"
Green status says "Service smtp on xxxxxxxx is OK (up)"
SMTP test always shows as yellow on Hobbit Status pages.
Conn test to same IP as SMTP is always Green.
Telnet to port 25 of SMTP IP from Hobbit command line gives normal Exchange 220 response.
Have tried removing RDP service - no change.
Have tried adding/removing various "send" entries to SMTP test, as per previous information in the Hobbit archives. I have tried with each of the following, and with none - send "mail\r\nquit\r\n" send "rset\r\nquit\r\n" send "ehlo hostname.domainname.com\r\nmailfrom:hobbit (at) server.com\r\nquit\r\n" send "vrfy postmaster\r\nquit\r\n"
all make no difference. NB: I did restart Hobbit between each change & waited 10 minutes.
Without the "send" line, my SMTP entry is as follows: [smtp] expect "220" options banner port 25
The RDP test works fine! [rdp] Port 3389
Does anyone have any ideas?
Andrew
Andrew Clarke Support and Technical Development Officer BCC IT Solutions DDI: 0871 288 2036 Tel: +44 (0)1239 710823 http://www.bccit.co.uk/ Providers of business to business IT Solutions & Services Back-up - Anti Virus - Security - Servers - Wireless Networks - VPN - Remote Monitoring - Project Consultation Hardware Provision Servers & Workstations - Disaster Recovery - Proactive Diagnostics - System Migration - Fibre CAT5e Server Administration - Forensics - Grant Appraisal - Network Management - System Appraisals - Support Contracts ... For full e-mail terms & conditions of use, please follow the link to the bcc web site http://www.bccitsolutions.co.uk/index.php?option=com_content&task=view&id=24&Itemid=1 BCC IT Solutions is a trading name of European Computer Units Limited, Registered in Cardiff, Company Registration No. 2651835 Registered Office: Unit B Station Road, Newcastle Emlyn, Carmarthenshire, Wales, SA38 9BX
I believe the 220 has to be in the beginning like the rest of the MTAs in the world. Try putting...
[smtp] expect "Exchange 220" options banner port 25
Josh Luthman Office: 937-552-2340 Direct: 937-552-2343 1100 Wayne St Suite 1337 Troy, OH 45373
Those who don't understand UNIX are condemned to reinvent it, poorly. --- Henry Spencer
On Wed, Jun 25, 2008 at 9:12 AM, Andrew Clarke <andrew at bccit.co.uk> wrote:
I know this has been reported before, but I've gone through all the offered solutions to no avail.
Problem: Hobbit 4.1.2p1 runs smtp checks against several Exchange mail servers. Was working fine until June 6th (when I added RDP service). Since then, get alternating Green (4 mins) then Yellow (< 1 min) on SMTP test.
Yellow status says "Service smtp on xxxxxxxx is not OK : Unexpected service response"
Green status says "Service smtp on xxxxxxxx is OK (up)"
SMTP test always shows as yellow on Hobbit Status pages.
Conn test to same IP as SMTP is always Green.
Telnet to port 25 of SMTP IP from Hobbit command line gives normal Exchange 220 response.
Have tried removing RDP service - no change.
Have tried adding/removing various "send" entries to SMTP test, as per previous information in the Hobbit archives. I have tried with each of the following, and with none - send "mail\r\nquit\r\n" send "rset\r\nquit\r\n" send "ehlo hostname.domainname.com\r\nmailfrom:hobbit (at) server.com\r\nquit\r\n" send "vrfy postmaster\r\nquit\r\n"
all make no difference. NB: I did restart Hobbit between each change & waited 10 minutes.
Without the "send" line, my SMTP entry is as follows: [smtp] expect "220" options banner port 25
The RDP test works fine! [rdp] Port 3389
Does anyone have any ideas?
Andrew
Andrew Clarke Support and Technical Development Officer BCC IT Solutions DDI: 0871 288 2036 Tel: +44 (0)1239 710823 http://www.bccit.co.uk/ Providers of business to business IT Solutions & Services Back-up - Anti Virus - Security - Servers - Wireless Networks - VPN - Remote Monitoring - Project Consultation Hardware Provision Servers & Workstations - Disaster Recovery - Proactive Diagnostics - System Migration
- Fibre CAT5e Server Administration - Forensics - Grant Appraisal - Network Management - System Appraisals - Support Contracts ... For full e-mail terms & conditions of use, please follow the link to the bcc web site http://www.bccitsolutions.co.uk/index.php?option=com_content&task=view&id=24&Itemid=1 BCC IT Solutions is a trading name of European Computer Units Limited, Registered in Cardiff, Company Registration No. 2651835 Registered Office: Unit B Station Road, Newcastle Emlyn, Carmarthenshire, Wales, SA38 9BX
To unsubscribe from the hobbit list, send an e-mail to hobbit-unsubscribe at hswn.dk
Thanks.
Unfortunately the response I see doing a telnet to the Exchange servers on port 25 is either:
"220 **************************************************************************** **********************************************************"
Or
"220 xxxxxxxx.yyyyy.local Microsoft ESMTP MAIL Service, Version: 6.0.3790.39 59 ready at Wed, 25 Jun 2008 15:50:17 +0100"
- both of which start with "220"
Andrew Clarke Support and Technical Development Officer BCC IT Solutions DDI: 0871 288 2036 Tel: +44 (0)1239 710823 http://www.bccit.co.uk/ Providers of business to business IT Solutions & Services Back-up - Anti Virus - Security - Servers - Wireless Networks - VPN - Remote Monitoring - Project Consultation Hardware Provision Servers & Workstations - Disaster Recovery - Proactive Diagnostics - System Migration - Fibre CAT5e Server Administration - Forensics - Grant Appraisal - Network Management - System Appraisals - Support Contracts ... For full e-mail terms & conditions of use, please follow the link to the bcc web site http://www.bccitsolutions.co.uk/index.php?option=com_content&task=view&id=24&Itemid=1 BCC IT Solutions is a trading name of European Computer Units Limited, Registered in Cardiff, Company Registration No. 2651835 Registered Office: Unit B Station Road, Newcastle Emlyn, Carmarthenshire, Wales, SA38 9BX
From: Josh Luthman [mailto:josh at imaginenetworksllc.com] Sent: 25 June 2008 15:26 To: hobbit at hswn.dk Subject: Re: [hobbit] Service smtp on xxxxxx is not OK : Unexpected service response
I believe the 220 has to be in the beginning like the rest of the MTAs in the world. Try putting...
[smtp] expect "Exchange 220" options banner port 25
Josh Luthman
On Wed, Jun 25, 2008 at 15:51, Andrew Clarke <andrew at bccit.co.uk> wrote:
Thanks.
Unfortunately the response I see doing a telnet to the Exchange servers on port 25 is either:
"220 **************************************************************************** **********************************************************"
You wouldn't happen to have a Cisco PIX/ASA between the hobbit host and the mail server, with it configured to do "fixup"? Those are known for breaking things ;)
-- Please keep list traffic on the list.
Rob MacGregor Whoever fights monsters should see to it that in the process he doesn't become a monster. Friedrich Nietzsche
As it happens, there are PIXs between the hobbit server & all the Exchange servers. However, they've all been there for ages (years in some cases).
I'll have a chat with our resident Cisco guru & see if he made any changes at our end around 6th June, when things stopped working.
Andrew Clarke Support and Technical Development Officer BCC IT Solutions DDI: 0871 288 2036 Tel: +44 (0)1239 710823 http://www.bccit.co.uk/ Providers of business to business IT Solutions & Services Back-up - Anti Virus - Security - Servers - Wireless Networks - VPN - Remote Monitoring - Project Consultation Hardware Provision Servers & Workstations - Disaster Recovery - Proactive Diagnostics - System Migration - Fibre CAT5e Server Administration - Forensics - Grant Appraisal - Network Management - System Appraisals - Support Contracts ... For full e-mail terms & conditions of use, please follow the link to the bcc web site http://www.bccitsolutions.co.uk/index.php?option=com_content&task=view&id=24&Itemid=1 BCC IT Solutions is a trading name of European Computer Units Limited, Registered in Cardiff, Company Registration No. 2651835 Registered Office: Unit B Station Road, Newcastle Emlyn, Carmarthenshire, Wales, SA38 9BX -----Original Message-----
From: Rob MacGregor [mailto:rob.macgregor at gmail.com]
You wouldn't happen to have a Cisco PIX/ASA between the hobbit host and the mail server, with it configured to do "fixup"? Those are known for breaking things ;)
Rob MacGregor
I have also seen this happen when the response is slow from the mail server to show the 220 message. It does show it but is slow for some reason. I create a new service called smtp-slow by adding the following and then configure the bb-hosts entry with 'smtp-slow' instead of smtp. Just a thought.
This way it doesn't require a 220 response but if it gets a valid "connection" it is okay. If it can't open a connection, it goes red. It does limit the amount of app validation but it is the only thing that worked in my case.
[smtp-slow] send "mail\r\nquit\r\n" options banner port 25
On Wed, Jun 25, 2008 at 12:31 PM, Andrew Clarke <andrew at bccit.co.uk> wrote:
As it happens, there are PIXs between the hobbit server & all the Exchange servers. However, they've all been there for ages (years in some cases).
I'll have a chat with our resident Cisco guru & see if he made any changes at our end around 6th June, when things stopped working.
Andrew Clarke Support and Technical Development Officer BCC IT Solutions DDI: 0871 288 2036 Tel: +44 (0)1239 710823 http://www.bccit.co.uk/ Providers of business to business IT Solutions & Services Back-up - Anti Virus - Security - Servers - Wireless Networks - VPN - Remote Monitoring - Project Consultation Hardware Provision Servers & Workstations - Disaster Recovery - Proactive Diagnostics - System Migration
- Fibre CAT5e Server Administration - Forensics - Grant Appraisal - Network Management - System Appraisals - Support Contracts ... For full e-mail terms & conditions of use, please follow the link to the bcc web site http://www.bccitsolutions.co.uk/index.php?option=com_content&task=view&id=24&Itemid=1 BCC IT Solutions is a trading name of European Computer Units Limited, Registered in Cardiff, Company Registration No. 2651835 Registered Office: Unit B Station Road, Newcastle Emlyn, Carmarthenshire, Wales, SA38 9BX -----Original Message-----
From: Rob MacGregor [mailto:rob.macgregor at gmail.com]
You wouldn't happen to have a Cisco PIX/ASA between the hobbit host and the mail server, with it configured to do "fixup"? Those are known for breaking things ;)
Rob MacGregor
To unsubscribe from the hobbit list, send an e-mail to hobbit-unsubscribe at hswn.dk
-- 'If my answers frighten you then you should cease asking scary questions.' --Sam Jackson
Well,
I've (sort of) fixed it - just removed the send & expect lines ...
[smtp] options banner port 25
It gives me a nice line of Green icons, but no banner information (not that I was getting that anyway, since the Yellow problem surfaced).
As I'm going to be installing 4.2 on a new server soon, I'll just live with that & hope it goes away on the new version.
Andrew
Andrew Clarke Support and Technical Development Officer BCC IT Solutions DDI: 0871 288 2036 Tel: +44 (0)1239 710823 http://www.bccit.co.uk/ Providers of business to business IT Solutions & Services Back-up - Anti Virus - Security - Servers - Wireless Networks - VPN - Remote Monitoring - Project Consultation Hardware Provision Servers & Workstations - Disaster Recovery - Proactive Diagnostics - System Migration - Fibre CAT5e Server Administration - Forensics - Grant Appraisal - Network Management - System Appraisals - Support Contracts ... For full e-mail terms & conditions of use, please follow the link to the bcc web site http://www.bccitsolutions.co.uk/index.php?option=com_content&task=view&id=24&Itemid=1 BCC IT Solutions is a trading name of European Computer Units Limited, Registered in Cardiff, Company Registration No. 2651835 Registered Office: Unit B Station Road, Newcastle Emlyn, Carmarthenshire, Wales, SA38 9BX
Am Donnerstag, 26. Juni 2008 18:03 schrieb Andrew Clarke:
Well,
I've (sort of) fixed it - just removed the send & expect lines ...
[smtp] options banner port 25
I 've also had this problem. In my case, it arises when the mailserver is to busy ( defeating spam ). I allowed the mail server to start more processes and the problem was gone.
Try to telnet to port 25 of your mail server. If you wait (nearly) for every to see the banner, this is the cause for yellow!
The other cause may be, that the server doesnt like to b hit by an HELO/QUIT before he has sent his banner, as many spammers act like this,
mfg Andreas Kunberger
-- Denkendorf
participants (6)
-
andreas.kunberger@itv-denkendorf.de
-
andrew@bccit.co.uk
-
dns1407@yahoo.com
-
geoff.hallford@gmail.com
-
josh@imaginenetworksllc.com
-
rob.macgregor@gmail.com