Hello,
I´m new to HA and have been struggling over this problem for a few days now.
Trying to notify myself over Google Hangouts if my Plants need anything. Notification works and the text is OK. Only problem is I receive tons of messages like if it was in a notification loop. Here is the configuration:
notify:
- platform: xmpp
name: me_hangouts
sender: !secret xmpp_username
password: !secret xmpp_password
recipient: !secret haraldmilz_jid
crassula_arborescens_willd:
name: Crassula Arborescens Willd Alerting.
entity_id: plant.crassula_arborescens_willd
state: problem
repeat: 5
can_acknowledge: true
skip_first: true
message: "Pflanze {{ state_attr('plant.crassula_arborescens_willd', 'friendly_name') }} braucht etwas: ({{ state_attr('plant.crassula_arborescens_willd', 'problem') }})"
done_message: "Planze {{ state_attr('plant.crassula_arborescens_willd', 'friendly_name') }} ist nun Okay."
notifiers:
- me_hangouts
Here is the logfile:
2019-01-18 13:04:42 INFO (MainThread) [homeassistant.components.alert] Alerting: Crassula Arborescens Willd Alerting.
2019-01-18 13:04:43 WARNING (MainThread) [slixmpp.stringprep] Using slower stringprep, consider compiling the faster cython/libidn one.
2019-01-18 13:04:45 INFO (MainThread) [homeassistant.components.alert] Alerting: Crassula Arborescens Willd Alerting.
2019-01-18 13:04:46 INFO (MainThread) [homeassistant.components.alert] Alerting: Crassula Arborescens Willd Alerting.
2019-01-18 13:04:46 INFO (MainThread) [slixmpp.util.sasl.client] SASL: X-OAUTH2: Missing credential: access_token
2019-01-18 13:04:46 INFO (MainThread) [slixmpp.util.sasl.client] SASL: X-GOOGLE-TOKEN: Missing credential: access_token
2019-01-18 13:04:46 INFO (MainThread) [slixmpp.util.sasl.client] SASL: X-OAUTH2: Missing credential: access_token
2019-01-18 13:04:47 INFO (MainThread) [slixmpp.util.sasl.client] SASL: X-GOOGLE-TOKEN: Missing credential: access_token
2019-01-18 13:04:47 INFO (MainThread) [homeassistant.components.alert] Alerting: Crassula Arborescens Willd Alerting.
it just goes on like this…
Any ideas why it´s looping??
Thank you for your efforts!