From 545f8bcf53559bdac58505d676463ecdd9939afa Mon Sep 17 00:00:00 2001 From: Sameer Naik Date: Tue, 22 Jul 2014 20:16:11 +0530 Subject: [PATCH] set default email address to example@example.com --- README.md | 2 +- assets/init | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6e8bc139..eda3a3d0 100644 --- a/README.md +++ b/README.md @@ -592,7 +592,7 @@ Below is the complete list of available options that can be used to customize yo - **GITLAB_HOST**: The hostname of the GitLab server. Defaults to localhost - **GITLAB_PORT**: The port of the GitLab server. Defaults to 80 for plain http and 443 when https is enabled. -- **GITLAB_EMAIL**: The email address for the GitLab server. Defaults to gitlab@localhost. +- **GITLAB_EMAIL**: The email address for the GitLab server. Defaults to example@example.com. - **GITLAB_SUPPORT**: The support email address for the GitLab server. Defaults to support@localhost. - **GITLAB_SIGNUP**: Enable or disable user signups. Default is false. - **GITLAB_SIGNIN**: If set to false, standard login form won't be shown on the sign-in page. Default is true. diff --git a/assets/init b/assets/init index e6fb670b..7e5b9832 100755 --- a/assets/init +++ b/assets/init @@ -7,7 +7,7 @@ GITLAB_SSH_PORT=${GITLAB_SSH_PORT:-$GITLAB_SHELL_SSH_PORT} # for backwards compa GITLAB_SSH_PORT=${GITLAB_SSH_PORT:-22} GITLAB_HTTPS=${GITLAB_HTTPS:-false} GITLAB_HTTPS_ONLY=${GITLAB_HTTPS_ONLY:-true} -GITLAB_EMAIL=${GITLAB_EMAIL:-gitlab@localhost} +GITLAB_EMAIL=${GITLAB_EMAIL:-example@example.com} GITLAB_SUPPORT=${GITLAB_SUPPORT:-support@localhost} GITLAB_SIGNUP=${GITLAB_SIGNUP:-false} GITLAB_SIGNIN=${GITLAB_SIGNIN:-true}