2016-04-20 08:02:01 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2019-06-04 08:47:44 -04:00
|
|
|
# Copyright 2015-2016 OpenMarket Ltd
|
|
|
|
# Copyright 2017-2018 New Vector Ltd
|
|
|
|
# Copyright 2019 The Matrix.org Foundation C.I.C.
|
2016-04-20 08:02:01 -04:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2018-10-17 10:44:34 -04:00
|
|
|
from __future__ import print_function
|
|
|
|
|
2016-04-20 08:02:01 -04:00
|
|
|
# This file can't be called email.py because if it is, we cannot:
|
|
|
|
import email.utils
|
2018-10-17 10:44:34 -04:00
|
|
|
import os
|
2016-04-20 08:02:01 -04:00
|
|
|
|
2018-10-19 09:01:59 -04:00
|
|
|
import pkg_resources
|
2016-04-20 08:02:01 -04:00
|
|
|
|
2018-10-19 09:01:59 -04:00
|
|
|
from ._base import Config, ConfigError
|
2018-10-17 10:44:34 -04:00
|
|
|
|
2016-04-20 08:02:01 -04:00
|
|
|
|
|
|
|
class EmailConfig(Config):
|
2019-06-24 06:34:45 -04:00
|
|
|
def read_config(self, config, **kwargs):
|
2019-06-04 08:47:44 -04:00
|
|
|
# TODO: We should separate better the email configuration from the notification
|
|
|
|
# and account validity config.
|
|
|
|
|
2016-04-27 10:09:55 -04:00
|
|
|
self.email_enable_notifs = False
|
|
|
|
|
2016-04-29 09:27:40 -04:00
|
|
|
email_config = config.get("email", {})
|
2019-06-04 08:47:44 -04:00
|
|
|
|
|
|
|
self.email_smtp_host = email_config.get("smtp_host", None)
|
|
|
|
self.email_smtp_port = email_config.get("smtp_port", None)
|
|
|
|
self.email_smtp_user = email_config.get("smtp_user", None)
|
|
|
|
self.email_smtp_pass = email_config.get("smtp_pass", None)
|
|
|
|
self.require_transport_security = email_config.get(
|
|
|
|
"require_transport_security", False
|
|
|
|
)
|
|
|
|
if "app_name" in email_config:
|
|
|
|
self.email_app_name = email_config["app_name"]
|
|
|
|
else:
|
|
|
|
self.email_app_name = "Matrix"
|
|
|
|
|
2019-06-06 12:34:07 -04:00
|
|
|
# TODO: Rename notif_from to something more generic, or have a separate
|
|
|
|
# from for password resets, message notifications, etc?
|
|
|
|
# Currently the email section is a bit bogged down with settings for
|
|
|
|
# multiple functions. Would be good to split it out into separate
|
|
|
|
# sections and only put the common ones under email:
|
2019-06-04 08:47:44 -04:00
|
|
|
self.email_notif_from = email_config.get("notif_from", None)
|
2019-06-04 09:24:36 -04:00
|
|
|
if self.email_notif_from is not None:
|
|
|
|
# make sure it's valid
|
|
|
|
parsed = email.utils.parseaddr(self.email_notif_from)
|
2019-06-20 05:32:02 -04:00
|
|
|
if parsed[1] == "":
|
2019-06-04 09:24:36 -04:00
|
|
|
raise RuntimeError("Invalid notif_from address")
|
2019-06-04 08:47:44 -04:00
|
|
|
|
|
|
|
template_dir = email_config.get("template_dir")
|
|
|
|
# we need an absolute path, because we change directory after starting (and
|
|
|
|
# we don't yet know what auxilliary templates like mail.css we will need).
|
|
|
|
# (Note that loading as package_resources with jinja.PackageLoader doesn't
|
|
|
|
# work for the same reason.)
|
|
|
|
if not template_dir:
|
2019-06-20 05:32:02 -04:00
|
|
|
template_dir = pkg_resources.resource_filename("synapse", "res/templates")
|
2019-06-04 08:47:44 -04:00
|
|
|
|
|
|
|
self.email_template_dir = os.path.abspath(template_dir)
|
|
|
|
|
2016-04-29 09:46:18 -04:00
|
|
|
self.email_enable_notifs = email_config.get("enable_notifs", False)
|
2019-06-20 05:32:02 -04:00
|
|
|
account_validity_renewal_enabled = config.get("account_validity", {}).get(
|
|
|
|
"renew_at"
|
|
|
|
)
|
2016-04-20 13:35:29 -04:00
|
|
|
|
2019-06-06 12:34:07 -04:00
|
|
|
email_trust_identity_server_for_password_resets = email_config.get(
|
2019-06-20 05:32:02 -04:00
|
|
|
"trust_identity_server_for_password_resets", False
|
2019-06-06 12:34:07 -04:00
|
|
|
)
|
|
|
|
self.email_password_reset_behaviour = (
|
|
|
|
"remote" if email_trust_identity_server_for_password_resets else "local"
|
|
|
|
)
|
2019-06-10 19:25:07 -04:00
|
|
|
self.password_resets_were_disabled_due_to_email_config = False
|
2019-06-06 12:34:07 -04:00
|
|
|
if self.email_password_reset_behaviour == "local" and email_config == {}:
|
2019-06-10 19:25:07 -04:00
|
|
|
# We cannot warn the user this has happened here
|
|
|
|
# Instead do so when a user attempts to reset their password
|
|
|
|
self.password_resets_were_disabled_due_to_email_config = True
|
|
|
|
|
2019-06-06 12:34:07 -04:00
|
|
|
self.email_password_reset_behaviour = "off"
|
|
|
|
|
|
|
|
# Get lifetime of a validation token in milliseconds
|
|
|
|
self.email_validation_token_lifetime = self.parse_duration(
|
|
|
|
email_config.get("validation_token_lifetime", "1h")
|
|
|
|
)
|
|
|
|
|
|
|
|
if (
|
|
|
|
self.email_enable_notifs
|
|
|
|
or account_validity_renewal_enabled
|
|
|
|
or self.email_password_reset_behaviour == "local"
|
|
|
|
):
|
2016-04-29 14:13:52 -04:00
|
|
|
# make sure we can import the required deps
|
|
|
|
import jinja2
|
|
|
|
import bleach
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2016-04-29 14:13:52 -04:00
|
|
|
# prevent unused warnings
|
|
|
|
jinja2
|
|
|
|
bleach
|
|
|
|
|
2019-06-06 12:34:07 -04:00
|
|
|
if self.email_password_reset_behaviour == "local":
|
2019-06-20 05:32:02 -04:00
|
|
|
required = ["smtp_host", "smtp_port", "notif_from"]
|
2019-06-06 12:34:07 -04:00
|
|
|
|
|
|
|
missing = []
|
|
|
|
for k in required:
|
|
|
|
if k not in email_config:
|
2019-07-05 05:44:12 -04:00
|
|
|
missing.append("email." + k)
|
|
|
|
|
|
|
|
if config.get("public_baseurl") is None:
|
|
|
|
missing.append("public_base_url")
|
2019-06-06 12:34:07 -04:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
if len(missing) > 0:
|
2019-06-06 12:34:07 -04:00
|
|
|
raise RuntimeError(
|
2019-07-05 05:44:12 -04:00
|
|
|
"Password resets emails are configured to be sent from "
|
|
|
|
"this homeserver due to a partial 'email' block. "
|
|
|
|
"However, the following required keys are missing: %s"
|
|
|
|
% (", ".join(missing),)
|
2019-06-06 12:34:07 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# Templates for password reset emails
|
|
|
|
self.email_password_reset_template_html = email_config.get(
|
2019-06-20 05:32:02 -04:00
|
|
|
"password_reset_template_html", "password_reset.html"
|
2019-06-06 12:34:07 -04:00
|
|
|
)
|
|
|
|
self.email_password_reset_template_text = email_config.get(
|
2019-06-20 05:32:02 -04:00
|
|
|
"password_reset_template_text", "password_reset.txt"
|
2019-06-06 12:34:07 -04:00
|
|
|
)
|
|
|
|
self.email_password_reset_failure_template = email_config.get(
|
2019-06-20 05:32:02 -04:00
|
|
|
"password_reset_failure_template", "password_reset_failure.html"
|
2019-06-06 12:34:07 -04:00
|
|
|
)
|
|
|
|
# This template does not support any replaceable variables, so we will
|
|
|
|
# read it from the disk once during setup
|
|
|
|
email_password_reset_success_template = email_config.get(
|
2019-06-20 05:32:02 -04:00
|
|
|
"password_reset_success_template", "password_reset_success.html"
|
2019-06-06 12:34:07 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
# Check templates exist
|
2019-06-20 05:32:02 -04:00
|
|
|
for f in [
|
|
|
|
self.email_password_reset_template_html,
|
|
|
|
self.email_password_reset_template_text,
|
|
|
|
self.email_password_reset_failure_template,
|
|
|
|
email_password_reset_success_template,
|
|
|
|
]:
|
2019-06-06 12:34:07 -04:00
|
|
|
p = os.path.join(self.email_template_dir, f)
|
|
|
|
if not os.path.isfile(p):
|
2019-06-20 05:32:02 -04:00
|
|
|
raise ConfigError("Unable to find template file %s" % (p,))
|
2019-06-06 12:34:07 -04:00
|
|
|
|
|
|
|
# Retrieve content of web templates
|
|
|
|
filepath = os.path.join(
|
2019-06-20 05:32:02 -04:00
|
|
|
self.email_template_dir, email_password_reset_success_template
|
2019-06-06 12:34:07 -04:00
|
|
|
)
|
|
|
|
self.email_password_reset_success_html_content = self.read_file(
|
2019-06-20 05:32:02 -04:00
|
|
|
filepath, "email.password_reset_template_success_html"
|
2019-06-06 12:34:07 -04:00
|
|
|
)
|
|
|
|
|
2019-06-04 08:47:44 -04:00
|
|
|
if self.email_enable_notifs:
|
2016-04-20 13:35:29 -04:00
|
|
|
required = [
|
|
|
|
"smtp_host",
|
|
|
|
"smtp_port",
|
|
|
|
"notif_from",
|
|
|
|
"notif_template_html",
|
2016-04-29 08:56:21 -04:00
|
|
|
"notif_template_text",
|
2016-04-20 13:35:29 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
missing = []
|
|
|
|
for k in required:
|
|
|
|
if k not in email_config:
|
|
|
|
missing.append(k)
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
if len(missing) > 0:
|
2016-04-20 08:02:01 -04:00
|
|
|
raise RuntimeError(
|
2019-06-20 05:32:02 -04:00
|
|
|
"email.enable_notifs is True but required keys are missing: %s"
|
|
|
|
% (", ".join(["email." + k for k in missing]),)
|
2016-04-20 08:02:01 -04:00
|
|
|
)
|
|
|
|
|
2016-04-27 10:09:55 -04:00
|
|
|
if config.get("public_baseurl") is None:
|
|
|
|
raise RuntimeError(
|
|
|
|
"email.enable_notifs is True but no public_baseurl is set"
|
|
|
|
)
|
|
|
|
|
2016-04-20 13:35:29 -04:00
|
|
|
self.email_notif_template_html = email_config["notif_template_html"]
|
2016-04-29 08:56:21 -04:00
|
|
|
self.email_notif_template_text = email_config["notif_template_text"]
|
2018-10-19 09:01:59 -04:00
|
|
|
|
|
|
|
for f in self.email_notif_template_text, self.email_notif_template_html:
|
2019-06-04 08:47:44 -04:00
|
|
|
p = os.path.join(self.email_template_dir, f)
|
2018-10-19 09:01:59 -04:00
|
|
|
if not os.path.isfile(p):
|
2019-06-20 05:32:02 -04:00
|
|
|
raise ConfigError("Unable to find email template file %s" % (p,))
|
2018-10-17 10:44:34 -04:00
|
|
|
|
2016-05-10 08:39:16 -04:00
|
|
|
self.email_notif_for_new_users = email_config.get(
|
2016-05-10 08:34:53 -04:00
|
|
|
"notif_for_new_users", True
|
|
|
|
)
|
2019-06-20 05:32:02 -04:00
|
|
|
self.email_riot_base_url = email_config.get("riot_base_url", None)
|
2016-04-20 08:02:01 -04:00
|
|
|
|
2019-06-04 08:47:44 -04:00
|
|
|
if account_validity_renewal_enabled:
|
|
|
|
self.email_expiry_template_html = email_config.get(
|
2019-06-20 05:32:02 -04:00
|
|
|
"expiry_template_html", "notice_expiry.html"
|
2019-06-04 08:47:44 -04:00
|
|
|
)
|
|
|
|
self.email_expiry_template_text = email_config.get(
|
2019-06-20 05:32:02 -04:00
|
|
|
"expiry_template_text", "notice_expiry.txt"
|
2019-06-04 08:47:44 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
for f in self.email_expiry_template_text, self.email_expiry_template_html:
|
|
|
|
p = os.path.join(self.email_template_dir, f)
|
|
|
|
if not os.path.isfile(p):
|
2019-06-20 05:32:02 -04:00
|
|
|
raise ConfigError("Unable to find email template file %s" % (p,))
|
2019-06-04 08:47:44 -04:00
|
|
|
|
2019-06-21 19:00:20 -04:00
|
|
|
def generate_config_section(self, config_dir_path, server_name, **kwargs):
|
2016-04-20 08:02:01 -04:00
|
|
|
return """
|
2019-06-06 12:34:07 -04:00
|
|
|
# Enable sending emails for password resets, notification events or
|
|
|
|
# account expiry notices
|
2017-04-05 02:09:38 -04:00
|
|
|
#
|
|
|
|
# If your SMTP server requires authentication, the optional smtp_user &
|
|
|
|
# smtp_pass variables should be used
|
|
|
|
#
|
2016-05-04 06:37:21 -04:00
|
|
|
#email:
|
2016-04-20 08:02:01 -04:00
|
|
|
# enable_notifs: false
|
|
|
|
# smtp_host: "localhost"
|
2019-06-06 12:34:07 -04:00
|
|
|
# smtp_port: 25 # SSL: 465, STARTTLS: 587
|
2017-04-05 02:09:38 -04:00
|
|
|
# smtp_user: "exampleusername"
|
|
|
|
# smtp_pass: "examplepassword"
|
|
|
|
# require_transport_security: False
|
2016-06-02 16:34:40 -04:00
|
|
|
# notif_from: "Your Friendly %(app)s Home Server <noreply@example.com>"
|
2016-05-05 10:54:29 -04:00
|
|
|
# app_name: Matrix
|
2019-06-06 12:34:07 -04:00
|
|
|
#
|
|
|
|
# # Enable email notifications by default
|
2019-06-27 13:20:17 -04:00
|
|
|
# #
|
2019-06-06 12:34:07 -04:00
|
|
|
# notif_for_new_users: True
|
|
|
|
#
|
|
|
|
# # Defining a custom URL for Riot is only needed if email notifications
|
|
|
|
# # should contain links to a self-hosted installation of Riot; when set
|
|
|
|
# # the "app_name" setting is ignored
|
2019-06-27 13:20:17 -04:00
|
|
|
# #
|
2019-06-06 12:34:07 -04:00
|
|
|
# riot_base_url: "http://localhost/riot"
|
|
|
|
#
|
|
|
|
# # Enable sending password reset emails via the configured, trusted
|
|
|
|
# # identity servers
|
|
|
|
# #
|
|
|
|
# # IMPORTANT! This will give a malicious or overtaken identity server
|
|
|
|
# # the ability to reset passwords for your users! Make absolutely sure
|
|
|
|
# # that you want to do this! It is strongly recommended that password
|
|
|
|
# # reset emails be sent by the homeserver instead
|
|
|
|
# #
|
|
|
|
# # If this option is set to false and SMTP options have not been
|
|
|
|
# # configured, resetting user passwords via email will be disabled
|
2019-06-27 13:20:17 -04:00
|
|
|
# #
|
2019-06-06 12:34:07 -04:00
|
|
|
# #trust_identity_server_for_password_resets: false
|
|
|
|
#
|
|
|
|
# # Configure the time that a validation email or text message code
|
|
|
|
# # will expire after sending
|
|
|
|
# #
|
|
|
|
# # This is currently used for password resets
|
2019-06-27 13:20:17 -04:00
|
|
|
# #
|
2019-06-06 12:34:07 -04:00
|
|
|
# #validation_token_lifetime: 1h
|
|
|
|
#
|
|
|
|
# # Template directory. All template files should be stored within this
|
2019-06-27 13:20:17 -04:00
|
|
|
# # directory. If not set, default templates from within the Synapse
|
|
|
|
# # package will be used
|
|
|
|
# #
|
|
|
|
# # For the list of default templates, please see
|
|
|
|
# # https://github.com/matrix-org/synapse/tree/master/synapse/res/templates
|
2019-06-06 12:34:07 -04:00
|
|
|
# #
|
2018-10-17 10:44:34 -04:00
|
|
|
# #template_dir: res/templates
|
2019-06-06 12:34:07 -04:00
|
|
|
#
|
|
|
|
# # Templates for email notifications
|
|
|
|
# #
|
2016-05-04 06:37:21 -04:00
|
|
|
# notif_template_html: notif_mail.html
|
|
|
|
# notif_template_text: notif_mail.txt
|
2019-06-06 12:34:07 -04:00
|
|
|
#
|
|
|
|
# # Templates for account expiry notices
|
|
|
|
# #
|
2019-04-10 12:58:47 -04:00
|
|
|
# expiry_template_html: notice_expiry.html
|
|
|
|
# expiry_template_text: notice_expiry.txt
|
2019-06-06 12:34:07 -04:00
|
|
|
#
|
|
|
|
# # Templates for password reset emails sent by the homeserver
|
|
|
|
# #
|
|
|
|
# #password_reset_template_html: password_reset.html
|
|
|
|
# #password_reset_template_text: password_reset.txt
|
|
|
|
#
|
|
|
|
# # Templates for password reset success and failure pages that a user
|
|
|
|
# # will see after attempting to reset their password
|
|
|
|
# #
|
|
|
|
# #password_reset_template_success_html: password_reset_success.html
|
|
|
|
# #password_reset_template_failure_html: password_reset_failure.html
|
2016-04-20 08:02:01 -04:00
|
|
|
"""
|