From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [212.224.123.68]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by lists.proxmox.com (Postfix) with ESMTPS id EDF4B87669 for ; Sat, 1 Jan 2022 21:06:57 +0100 (CET) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id D5EA92C92D for ; Sat, 1 Jan 2022 21:06:27 +0100 (CET) Received: from server.softcat.org (server.softcat.org [IPv6:2a03:4000:3b:585::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by firstgate.proxmox.com (Proxmox) with ESMTPS id 6D1652C924 for ; Sat, 1 Jan 2022 21:06:27 +0100 (CET) Received: from [127.0.0.1] (localhost [127.0.0.1]) by localhost (Mailerdaemon) with ESMTPSA id 35E529C04A8; Sat, 1 Jan 2022 21:06:25 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=softcat.org; s=dkim; t=1641067586; h=from:subject:date:message-id:to:cc:mime-version: content-transfer-encoding; bh=gBDq/8DyZL7gJ/qC4Vo+1rRXdPt9/2XQs5/enaK4oQU=; b=wEKX6PpglBxiEQ1TZe9+EP9+k1vBU7QUWnkMCvRW9l4eb1+I/DY9wwH0fm6Im1wxlai190 wcOCaWSb/xnGY1szPXlFqkVSn4r/IMUIByjH5EAgKVZcQd/5mCr46L6Dcn3jSsBniStgac lIz2KqNE59Fr2CTPWJ/sclPSkWlfwua7jTAm0tIQIOF2an2iGD4AKvNJgfKOiGhljBn4QG wHpxyi4nYsrZj+p0ovC+ugZIFGBjxOLefvD3iWg4wuDfIzsvsOJktKN4U1JZAqe57NG9Yi 7UmqL2YD9bw/vxerRCuzHZBiN+wA5sqEL2L/t4l93PU2h4x87tWZDL3Gmej8Gw== From: Nils Sandmann To: pve-devel@lists.proxmox.com Date: Sat, 1 Jan 2022 21:06:22 +0100 Message-Id: <20220101200622.835-1-git@softcat.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Last-TLS-Session-Version: TLSv1.3 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.233 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DKIM_SIGNED 0.1 Message has a DKIM or DK signature, not necessarily valid DKIM_VALID -0.1 Message has at least one valid DKIM or DK signature DKIM_VALID_AU -0.1 Message has a valid DKIM or DK signature from author's domain DKIM_VALID_EF -0.1 Message has a valid DKIM or DK signature from envelope-from domain SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record URIBL_BLOCKED 0.001 ADMINISTRATOR NOTICE: The query to URIBL was blocked. See http://wiki.apache.org/spamassassin/DnsBlocklists#dnsbl-block for more information. [softcat.org] Subject: [pve-devel] [PATCH 1/1] Add TOTP authentification for ACME DNS INWX X-BeenThere: pve-devel@lists.proxmox.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Proxmox VE development discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 01 Jan 2022 20:06:58 -0000 Signed-off-by: Nils Sandmann --- src/dns-challenge-schema.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/dns-challenge-schema.json b/src/dns-challenge-schema.json index 6defbdd..39ac2ba 100644 --- a/src/dns-challenge-schema.json +++ b/src/dns-challenge-schema.json @@ -188,6 +188,10 @@ "INWX_User" : { "description" : "The INWX username", "type" : "string" + }, + "INWX_Shared_Secret" : { + "description" : "The INWX shared secret", + "type" : "string" } }, "name" : "INWX" -- 2.34.1.windows.1