From 9989a3502d0c01b87ee6ec71c858d21532853b0f Mon Sep 17 00:00:00 2001 From: Roger Light Date: Sat, 20 Mar 2021 10:33:58 +0000 Subject: [PATCH] Add link to authentication options if running in local only mode. --- src/mosquitto.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/mosquitto.c b/src/mosquitto.c index 82a61d3c..d3905ebe 100644 --- a/src/mosquitto.c +++ b/src/mosquitto.c @@ -313,6 +313,7 @@ int listeners__start_local_only(void) log__printf(NULL, MOSQ_LOG_WARNING, "Starting in local only mode. Connections will only be possible from clients running on this machine."); log__printf(NULL, MOSQ_LOG_WARNING, "Create a configuration file which defines a listener to allow remote access."); + log__printf(NULL, MOSQ_LOG_WARNING, "For more details see https://mosquitto.org/documentation/authentication-methods/"); if(db.config->cmd_port_count == 0){ rc = listeners__add_local("127.0.0.1", 1883); if(rc == MOSQ_ERR_NOMEM) return MOSQ_ERR_NOMEM;