Tobias Assarsson
Tobias Assarsson
Peeking in the source, I find that there is a `first_publish` variable that is never reset. Perhaps simply resetting it in the connect callback will fix it. > BTW: why...
I think that the default is to always allow subscriptions, but not rely messages on other topics that are allowed. If you try to subscribe on '#' and publish on...
I'm not sure if there is a setting to control the subscription behavior as well. But yes. There are Read/Write/Subscribe actions. Subscribe: Requests messages with a specific topic pattern. Read:...
The default listener only listen to the local address if present and should be disabled when a listener is specified. [mosquitto.conf documentation](https://mosquitto.org/man/mosquitto-conf-5.html) says > listener port [bind address/host/unix socket path]...
I'm more thinking if you can try throw your cert-configs under a listener block.
the specification you link also states: ``` 2.6. Unused bits Any bits marked as unused should be set to zero (0). ``` Probably later clarified / extended to the section...
~~Hello!~~ ~~I just hit this issue with messages from my pfSense.~~ ~~Just would like to add that it appears it can send multiple messages in same udp packet, none with...
Generally, i think load-balaning mosquitto brokers this way is a bad habbit. I'm not sure what you are trying to do is possible to do reliably out of the box...
Not while retaining proper MQTT functionality at least. One example is that, you can only have one client with the same client-id connected at the same time. In your case,...
I think it should be possible to configure another listener that only listen to localhost and have `allow_anonymous true`. This way you don't need a username/password for the probes but...