From ff9c050479b2efe4a36a92ff3719aa0e7a18be84 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Fri, 8 May 2015 18:07:52 +0200 Subject: [PATCH] add xmpp notification page --- source/components/notify.xmpp.markdown | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 source/components/notify.xmpp.markdown diff --git a/source/components/notify.xmpp.markdown b/source/components/notify.xmpp.markdown new file mode 100644 index 00000000000..5d0cb377d71 --- /dev/null +++ b/source/components/notify.xmpp.markdown @@ -0,0 +1,26 @@ +--- +layout: page +title: "Jabber (XMPP) notification support" +description: "Instructions how to add Jabber (XMPP) notifications to Home Assistant." +date: 2015-05-08 18:00 +sidebar: false +comments: false +sharing: true +footer: true +--- + + +The xmpp platform allows you to deliver notifications from Home Assistant to a Jabber (XMPP) account. + +```yaml +# Example configuration.yaml entry +notify: + platform: xmpp + sender: YOUR_JID + password: YOUR_JABBER_ACCOUNT_PASSWORD + recipient: YOUR_RECIPIENT +``` + +All Jabber IDs (JID) must include the domain. Make sure that the password matches the account provided as sender. + +To use notifications, please see the [getting started with automation page]({{site_root}}/components/automation.html).