From 018469e32d89b8ff7d92e4ab964ae87e82f44337 Mon Sep 17 00:00:00 2001 From: Javielico <103+javielico@noreply.git.coopcloud.tech> Date: Tue, 30 Jun 2026 11:51:08 +0000 Subject: [PATCH] Add variables for handling smtp access --- .env.sample | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.env.sample b/.env.sample index ff4e78a..3b6767a 100644 --- a/.env.sample +++ b/.env.sample @@ -18,6 +18,7 @@ LETS_ENCRYPT_ENV=production GITLAB_ROOT_EMAIL="gitlab_admin@example.com" SECRET_INITIAL_ROOT_PASSWORD_VERSION=v1 SECRET_RUNNER_TOKEN_VERSION=v1 +SECRET_SMTP_PASSWORD=v1 GITLAB_CONF_VERSION=v1 ENTRYPOINT_VERSION=v1 @@ -28,4 +29,13 @@ SSO=false # ORG_NAME="My Organization" # SSO_PROVIDER_URL="https://authentik.mydomain.com/application/o/gitlab/" # SSO_PROVIDER_ID="your authentik Client ID" -# SECRET_SSO_PROVIDER_SECRET_VERSION=v1 \ No newline at end of file +# SECRET_SSO_PROVIDER_SECRET_VERSION=v1 + +## Enable SMTP sending +#SMTP_ENABLE_FLAG=true +#SMTP_HOST=smtp.server.com +#SMTP_PORT=465 +#SMTP_USER=your@user.com +#SMTP_HOST_FROM_ADDRESS=your@user.com +#SMTP_FROM_NAME="Gitlab" +#SMTP_STARTTLS_FLAG=true