From b2d5426ca741dac537080ffe876912a715a5338f Mon Sep 17 00:00:00 2001 From: DrMxrcy <58747968+DrMxrcy@users.noreply.github.com> Date: Tue, 2 May 2023 16:13:00 -0400 Subject: [PATCH] Update Config for SMTP Requirement (#424) --- apps/gotosocial/config.json | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/apps/gotosocial/config.json b/apps/gotosocial/config.json index 0400e8a1..c453e191 100644 --- a/apps/gotosocial/config.json +++ b/apps/gotosocial/config.json @@ -6,7 +6,7 @@ "exposable": true, "force_expose": true, "id": "gotosocial", - "tipi_version": 1, + "tipi_version": 2, "version": "0.8.1", "categories": ["social"], "description": "Fast, fun, ActivityPub server, powered by Go.", @@ -34,39 +34,35 @@ "type": "text", "label": "SMTP Host", "hint": "Your SMTP Server", - "placeholder": "smtp.example.com", - "required": true, + "required": false, "env_variable": "GTS_SMTP_HOST" }, { "type": "text", "label": "SMTP Port", "hint": "Your SMTP Port", - "placeholder": "25", - "required": true, + "required": false, "env_variable": "GTS_SMTP_PORT" }, { "type": "text", "label": "SMTP Username", "hint": "Your SMTP Server User/Username", - "placeholder": "noreply@example.com", - "required": true, + "required": false, "env_variable": "GTS_SMTP_USERNAME" }, { "type": "text", "label": "SMTP Password", "hint": "Your SMTP Server Password", - "required": true, + "required": false, "env_variable": "GTS_SMTP_PASSWORD" }, { "type": "text", "label": "SMTP From Address", "hint": "Make sure the Format is like noreply@example.com", - "placeholder": "noreply@example.com", - "required": true, + "required": false, "env_variable": "GTS_SMTP_FROM" } ]