Updated external content (Jenkins build 2272)

pull/2380/head
openHAB Build Server 2024-08-19 06:28:02 +00:00
parent 7dcec1f194
commit b37a8468db
2 changed files with 25 additions and 11 deletions

View File

@ -41,19 +41,20 @@ Bridge xmppclient:xmppBridge:xmpp "XMPP Client" [ host="xmpp.example.com", port=
**xmppBridge** parameters: **xmppBridge** parameters:
| Name | Label | Description | Required | Default value | | Name | Label | Description | Required | Default value |
|----------|--------------------|-------------------------------------------|-----------|-----------------------| |--------------|--------------------|--------------------------------------------------------------------|----------|-----------------------|
| username | Username | The XMPP username (left part of JID) | true | - | | username | Username | The XMPP username (left part of JID) | true | - |
| domain | Domain | The XMPP domain name (right part of JID) | true | - | | domain | Domain | The XMPP domain name (right part of JID) | true | - |
| password | Password | The XMPP user password | true | - | | password | Password | The XMPP user password | true | - |
| host | Server Hostname/IP | The IP/Hostname of the XMPP server | false | as "domain" parameter | | host | Server Hostname/IP | The IP/Hostname of the XMPP server | false | as "domain" parameter |
| port | XMPP server Port | The typical port is 5222 | false | 5222 | | port | XMPP server Port | The typical port is 5222 | false | 5222 |
| securityMode | Security Mode | Sets the TLS security mode: `required`, `ifpossible` or `disabled` | false | `required` |
## Channels ## Channels
**publishTrigger** parameters: **publishTrigger** parameters:
| Name | Label | Description | Required | | Name | Label | Description | Required |
|-----------|---------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-----------| |-----------|---------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------|
| payload | Payload condition | An optional condition on the value | false | | payload | Payload condition | An optional condition on the value | false |
| separator | Separator character | The trigger channel payload usually only contains the received text. If you define a separator character, for example '#', the sender UID and received text will be in the trigger channel payload. For example: pavel@example.com#My Message Text | false | | separator | Separator character | The trigger channel payload usually only contains the received text. If you define a separator character, for example '#', the sender UID and received text will be in the trigger channel payload. For example: pavel@example.com#My Message Text | false |

View File

@ -30,6 +30,19 @@
<parameter name="port" type="integer"> <parameter name="port" type="integer">
<label>XMPP Server Port</label> <label>XMPP Server Port</label>
<description>The default port is 5222.</description> <description>The default port is 5222.</description>
<advanced>true</advanced>
</parameter>
<parameter name="securityMode" type="text" required="true">
<label>Security Mode</label>
<description>An enumeration for TLS security modes that are available when making a connection to the XMPP server.</description>
<limitToOptions>true</limitToOptions>
<options>
<option value="required">Required</option>
<option value="ifpossible">Optional</option>
<option value="disabled">Disabled</option>
</options>
<default>required</default>
<advanced>true</advanced>
</parameter> </parameter>
</config-description> </config-description>
</bridge-type> </bridge-type>