<div dir="ltr">Hello all,<blockquote class="gmail_quote" style="margin: 0;margin-left: 0.8ex;border-left: 1px #ccc solid;padding-left: 1ex;"><div dir="ltr"><blockquote class="gmail_quote" style="margin:0;margin-left:0.8ex;border-left:1px #ccc solid;padding-left:1ex"><p></p><p></p></blockquote></div></blockquote><div>I am not sure whether "verify_fun" option in the rabbitmq.config file is supported/read as I couldn't see in the sources for rabbitmq-server. &nbsp;The only closest option what I could witness is the following in rabbit_networking.erl (line numbers 154 till 160), where it reads the "verify" option defaulting to "verify_none".</div><div><br></div><div>&nbsp; &nbsp; % unknown_ca errors are silently ignored prior to R14B unless we</div><div>&nbsp; &nbsp; % supply this verify_fun - remove when at least R14B is required</div><div>&nbsp; &nbsp; case proplists:get_value(verify, SslOptsConfig, verify_none) of</div><div>&nbsp; &nbsp; &nbsp; &nbsp; verify_none -&gt; SslOptsConfig;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; verify_peer -&gt; [{verify_fun, fun([]) &nbsp; &nbsp;-&gt; true;</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; ([_|_]) -&gt; false</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;end}</div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; | SslOptsConfig]</div><div>&nbsp; &nbsp; end.&nbsp;</div><div><br></div><div>I did check the sources from&nbsp;<a href="https://github.com/rabbitmq/rabbitmq-server">https://github.com/rabbitmq/rabbitmq-server</a>. &nbsp;To me, it looks like we need to add functionality to read verify_fun option from the config file first. &nbsp;Am I missing something?<br></div><div><br></div><div>Regards</div><div>Bala</div></div>