This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

[?] random alert via mail
#1
HI

sceneario:

one of the group adresses formated as 1.005 is giving 'alert'

problem:

send goup adress(es) via mail.

question:

is there any posible fitler integrated apart form a huge script?

(Mailing part is solved)
Reply
#2
Hi
Can you explain what filter do you want?
BR
------------------------------
Ctrl+F5
Reply
#3
The easiest way to send multiple group address values is to assign a tag.
This example will output one name = value pair per line for all objects with alert tag:
Code:
values = {}
objects = grp.tag('alert')
for _, obj in ipairs(objects) do
  value = string.format('%s = %s', tostring(obj.name), tostring(obj.value))
  values[ #values + 1 ] = value
end
result = table.concat(values, '\r\n')
log(result)
Reply
#4
(24.06.2019, 08:24)admin Wrote: The easiest way to send multiple group address values is to assign a tag.
This example will output one name = value pair per line for all objects with alert tag:
Code:
values = {}
objects = grp.tag('alert')
for _, obj in ipairs(objects) do
 value = string.format('%s = %s', tostring(obj.name), tostring(obj.value))
 values[ #values + 1 ] = value
end
result = table.concat(values, '\r\n')
log(result)
THX!
its close to my target. I didnt want need to tagging before, but its fine.
My aim was to filter groups in format 1.005 set to 'true' to create a alert mail including all alerts in case of alarts only.
Best
Reply


Forum Jump: