http://jira.hyperic.com/browse/HHQ-1916
Sendmail plugin breaks with large queue
Somewhere around 7,000 messages the plugin started reporting "0". Seems that "<hqagent>/pdk/work/scripts/sendmail/hq-sendmail-stat" is the problem.
Lines 19 & 24 use the "find" command which cannot handle large directory sizes:
For example,
find *
-bash: /usr/bin/find: Argument list too long
Workaround\fix
change line 19 & 24 to:
messfiles=ls | wc -w
Anonymous