From 31b91b216f2ca0a5ea84684ab49f52029b6b3c44 Mon Sep 17 00:00:00 2001 From: Ramiro Berrelleza Date: Fri, 2 Jul 2021 16:23:45 -0700 Subject: [PATCH] use `example.com` as the domain for the example settings Signed-off-by: Ramiro Berrelleza --- .env | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/.env b/.env index 401de56..73a2458 100644 --- a/.env +++ b/.env @@ -18,17 +18,11 @@ ZOOM_CLIENT_ID= ZOOM_CLIENT_SECRET= # E-mail settings - -# Calendso uses nodemailer (@see https://nodemailer.com/about/) to provide email sending. As such we are trying to -# allow access to the nodemailer transports from the .env file. E-mail templates are accessible within lib/emails/ - # Configures the global From: header whilst sending emails. -EMAIL_FROM='notifications@yourselfhostedcalendso.com' +EMAIL_FROM='notifications@example.com' # Configure SMTP settings (@see https://nodemailer.com/smtp/). -# Note: The below configuration for Office 365 has been verified to work. -EMAIL_SERVER_HOST='smtp.office365.com' +EMAIL_SERVER_HOST='smtp.example.com' EMAIL_SERVER_PORT=587 -EMAIL_SERVER_USER='' -# Keep in mind that if you have 2FA enabled, you will need to provision an App Password. -EMAIL_SERVER_PASSWORD='' +EMAIL_SERVER_USER='email_user' +EMAIL_SERVER_PASSWORD='email_password'