################################# MQTT Transport ###################################### # # Define your MQTT broker connections here for use in the MQTT Binding or MQTT # Persistence bundles. Replace with a id you choose. # # URL to the MQTT broker, e.g. tcp://localhost:1883 or ssl://localhost:8883 #mqtt:.url=tcp://:1883 mqtt:mymosquitto434.url=tcp://localhost:1883 # Optional. Client id (max 23 chars) to use when connecting to the broker. # If not provided a default one is generated. mqtt:mymosquitto434.clientId=openhab # Optional. Password to authenticate with the broker. #mqtt:.pwd= mqtt:mymosquitto434.pwd=1234567890ABCDEFGHIJ # Optional. Set the quality of service level for sending messages to this broker. # Possible values are 0 (Deliver at most once),1 (Deliver at least once) or 2 # (Deliver exactly once). Defaults to 0. mqtt:mymosquitto434.qos=1 # Optional. True or false. Defines if the broker should retain the messages sent to # it. Defaults to false. mqtt:mymosquitto434.retain=false # Optional. True or false. Defines if messages are published asynchronously or # synchronously. Defaults to true. mqtt:mymosquitto434.async=false