SMTP Authentication was added in 4.3, so now it should work without email forwarder. Please see updated documentation: https://www.netxms.org/documentation/adminguide/event-processing.html#notification-channels
We really need your input in this questionnaire
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenudciId = 2531;
threshold = 500 * 1000 * 1000;
t = localtime();
t->hour = 0;
t->min = 0;
t->sec = 0;
endTime = mktime(t);
if (t->mon >= 2) {
t->mon = t->mon - 1;
}
else
{
t->mon = 12;
t->year = t->year - 1;
}
startTime = mktime(t);
a = GetDCIValues($node, dciId, startTime, endTime);
HighCnt = 0;
Cnt = 0;
for (v : a) {
Cnt++;
if (v > threshold) HighCnt++;
}
return HighCnt / Cnt;