diff --git a/source/components/index.markdown b/source/components/index.markdown index 2f8790a6acf..2334c0384b5 100644 --- a/source/components/index.markdown +++ b/source/components/index.markdown @@ -186,6 +186,12 @@ the manufacturers of these devices. Allow sending messages using PushOver + + +Jabber (XMPP) +Allow sending messages using Jabber (XMPP) + + Browser 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). diff --git a/source/images/supported_brands/xmpp.png b/source/images/supported_brands/xmpp.png new file mode 100644 index 00000000000..c753f0d9565 Binary files /dev/null and b/source/images/supported_brands/xmpp.png differ