From b2fbb8718147d65f4b676124c807aa5ce9d9f5c1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 16 Aug 2022 21:06:57 +0200 Subject: [PATCH] sync hub items with community (#437) Co-authored-by: rubenfiszel --- community/resource_types/smtp.json | 32 ++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 community/resource_types/smtp.json diff --git a/community/resource_types/smtp.json b/community/resource_types/smtp.json new file mode 100644 index 0000000000..04a093158b --- /dev/null +++ b/community/resource_types/smtp.json @@ -0,0 +1,32 @@ +{ + "workspace_id": "starter", + "name": "smtp", + "schema": { + "type": "object", + "$schema": "https://json-schema.org/draft/2020-12/schema", + "required": [ + "host" + ], + "properties": { + "host": { + "type": "string", + "default": "mail.smtpbucket.com", + "description": "SMTP host address" + }, + "port": { + "type": "integer", + "default": 8025, + "description": "port number on which to connect" + }, + "user": { + "type": "string", + "description": "" + }, + "password": { + "type": "string", + "description": "" + } + } + }, + "description": "" +}