-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Synapse v0.33.6 Docker image lacks res/templates #4014
Comments
There was some slimming down, maybe it was a bit too aggressive |
Seems like this: RUN pip install --prefix="/install" --no-warn-script-location \
lxml \
psycopg2 \
/synapse will not copy any of the files specified in Those files would be part of the source distribution archive, but not part of the installed files. Some more information about it is here: https://stackoverflow.com/questions/3596979/manifest-in-ignored-on-python-setup-py-install-no-data-files-installed Seems like one solution is to move the -recursive-include res *
+recursive-include synapse/res * Another simple solution might be to just fix the Perhaps making I'm not sure which solution you'd prefer or whether there are any downsides to relocating |
fixed by #4052, I hope |
We skipped v0.33.6 because of matrix-org/synapse#4014, but v0.33.7rc2 fixed the problem.
It does fix it and I can confirm email-sending works! |
well, it turns out that I've made a right old mess of this, as per #4065. @spantaleev: I'm a bit surprised it works for you: could you clarify what your setup is (in particular, what have you set |
Since the upgrade to 0.33.7rc2, the playbook no longer defines |
I am mystified :/ |
Ever since #3972 (the first final build of which appears to be
v0.33.6
), the Docker image does not include the/synapse
directory anymore.All the code is still in
/usr/local/lib/python2.7/site-packages/synapse
and it works as expected, butres/templates
is not available anywhere anymore (used to be in/synapse/res/templates
).This means that container users (such as matrix-docker-ansible-deploy) which want to use the default email templates cannot easily do it anymore.
The text was updated successfully, but these errors were encountered: