summary refs log tree commit diff
path: root/synapse/push/mailer.py
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2018-10-18 16:37:01 +0100
committerRichard van der Hoff <richard@matrix.org>2018-10-18 16:37:01 +0100
commit9a4011de46dc59b26a3f4675730fac9aab615c83 (patch)
tree1db73909aa0267cce8bc2146dfb92f4fa5fe097c /synapse/push/mailer.py
parentMerge remote-tracking branch 'origin/develop' into matrix-org-hotfixes (diff)
parentremove redundant changelog file (diff)
downloadsynapse-9a4011de46dc59b26a3f4675730fac9aab615c83.tar.xz
Merge branch 'develop' into matrix-org-hotfixes
Diffstat (limited to 'synapse/push/mailer.py')
-rw-r--r--synapse/push/mailer.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/synapse/push/mailer.py b/synapse/push/mailer.py

index 1a5a10d974..b9dcfee740 100644 --- a/synapse/push/mailer.py +++ b/synapse/push/mailer.py
@@ -528,7 +528,10 @@ def load_jinja2_templates(config): """ logger.info("loading jinja2") - loader = jinja2.FileSystemLoader(config.email_template_dir) + if config.email_template_dir: + loader = jinja2.FileSystemLoader(config.email_template_dir) + else: + loader = jinja2.PackageLoader('synapse', 'res/templates') env = jinja2.Environment(loader=loader) env.filters["format_ts"] = format_ts_filter env.filters["mxc_to_http"] = _create_mxc_to_http_filter(config)