multi level C<#> wildcards. Defaults to B<collectd/#>, i.e. all topics beneath
the B<collectd> branch.
-=item B<CACertificateFile> I<file>
+=item B<CACert> I<file>
Path to the PEM-encoded CA certificate file. Setting this option enables TLS
communication with the MQTT broker, and as such, B<Port> should be the TLS-enabled
* StoreRates true
* Retain false
* QoS 0
- * CACertificateFile "ca.pem" Enables TLS if set
+ * CACert "ca.pem" Enables TLS if set
* CertificateFile "client-cert.pem" optional
* CertificateKeyFile "client-key.pem" optional
* TLSprotocol "tlsv1.2" optional
cf_util_get_boolean (child, &conf->store_rates);
else if (strcasecmp ("Retain", child->key) == 0)
cf_util_get_boolean (child, &conf->retain);
- else if (strcasecmp ("CACertificateFile", child->key) == 0)
+ else if (strcasecmp ("CACert", child->key) == 0)
cf_util_get_string (child, &conf->cacertificatefile);
else if (strcasecmp ("CertificateFile", child->key) == 0)
cf_util_get_string (child, &conf->certificatefile);