# HG changeset patch # User Kim Alvefur # Date 1445427446 -7200 # Node ID 5df76208e050eb9d7a60e4eb6cb908fd6ea1dd14 # Parent c7a0d52999338495d5dceb89f766236634cae5c8 prosodyctl: check: Don't complain about c2s_ssl or s2s_ssl being in VirtualHost sections, that's supported diff -r c7a0d5299933 -r 5df76208e050 prosodyctl --- a/prosodyctl Wed Oct 21 01:56:07 2015 +0200 +++ b/prosodyctl Wed Oct 21 13:37:26 2015 +0200 @@ -890,7 +890,7 @@ for name in pairs(options) do if name:match("^interfaces?") or name:match("_ports?$") or name:match("_interfaces?$") - or name:match("_ssl$") then + or (name:match("_ssl$") and not name:match("^[cs]2s_ssl$")) then misplaced_options:add(name); end end