Remind me again why it is that Vera sends me 7 email notifications in rapid succession for a single event - in this case entering a PIN in my lock?
That’s interesting - I had the same thing happen to me earlier this evening.
Have anything to do with the servers being down? It happens sometimes to me where I’ll get 2-3 very old ones, like a day old, all at once when i’m having what I believe to be connection issues…
Im sure this is simply a way to increase the reliability of Vera, if they send 7 messages, at least ONE will get to you
Not sure why, Ive seen this randomly here and there but not recently
Hi,
Like I’ve said in another post a few weeks ago, after we make the release and things more stable, we will rewrite the notifications part. I’m sure there will be no problems anymore.
Appreciate whatever can be done regarding the delay and the multiple notifications.
I had just set up Vera for notifications and thought I try my new aeon sensors as well.
We went to dinner with friends and left the house at 5:50 pm by way of the front door.
As you can see in the image, I received notifications somewhat later and causing me
great concern while dining (thinking the unthinkable had happened…a break-in).
On another note I totally HATE being in the shower only to have the bathroom lights
go out after 5 minutes. They are part of a scene tied to a motion detector AND go off
during the day AND evening hours instead of just evening hours.
IF time > 0700 AND < 1800 DO NOT COME ON. That would really be nice and would really
help with the WAF. I’m already being told to get rid of that “thing”. Apparently she doesn’t
like shampooing her hair in the dark either. :
[quote=“stoney, post:6, topic:165766”]On another note I totally HATE being in the shower only to have the bathroom lights
go out after 5 minutes. They are part of a scene tied to a motion detector AND go off
during the day AND evening hours instead of just evening hours.
IF time > 0700 AND < 1800 DO NOT COME ON. That would really be nice and would really
help with the WAF. I’m already being told to get rid of that “thing”. Apparently she doesn’t
like shampooing her hair in the dark either. ::)[/quote]
I’m not sure what do you mean:
- since there’s no multiple condition builder, your scene fires every time, instead of only at the selected hours?
or
- you wrote some Lua conditions but they’re not working?
you could check the [tt]timeutils.lua[/tt] module i’ve written ([url=http://code.mios.com/svn_public/mios_genericutils/timeutils.lua]http://code.mios.com/svn_public/mios_genericutils/timeutils.lua[/url]). using it, the Lua condition could be something like:
require "timeutils.lua"
if dayseconds() > to_secs("7:00") and dayseconds() < to_secs("6:00pm") then
return false
end