From ba0afc1bff3fdf9b2d04ef3913ffe5e740efbb42 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Sat, 30 Jun 2018 20:45:42 -0600 Subject: [PATCH] pass acceptd domains, not fail them, duh --- bin/telebitd.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/telebitd.js b/bin/telebitd.js index 3989f74..3fa160f 100755 --- a/bin/telebitd.js +++ b/bin/telebitd.js @@ -732,7 +732,7 @@ function rawTunnel(rawCb) { // we need to make sure we don't get rate-limit spammed // with wildcard domains // TODO: finish implementing dynamic dns for wildcard certs - if (!getServername(state.servernames, opts.domains[0])) { + if (getServername(state.servernames, opts.domains[0])) { opts.email = state.greenlockConf.email || state.config.email; opts.agreeTos = state.greenlockConf.agree || state.greenlockConf.agreeTos || state.config.agreeTos; cb(null, { options: opts, certs: certs });