You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I followed your instructions and synapse generated a secret which would not work well with sed in the makefile.
Namely, I got a synapse_macaroon_secret_key like abc&def. Seems like sed does not like the & in there.
Unfortunately I do not know enough about sed to fix this.
Anyways, I could still run everything by simply generating new secrets which did not contain any &.
Thanks for the great project!
The text was updated successfully, but these errors were encountered:
Thanks for the feedback! Indeed, the way we template secrets is not ideal and does not cover all cases. We tried to find the easiest solution that everyone would have already installed but that may not be the best choice long term. Maybe we should look at a real template language.
Yes, I guess some template language could help.
I just ran into another issue: Passwords containing # get cut off short. This can be really dangerous, because it could lead to very very short passwords and you do not find those if you do not check the generated homeserver.yaml. Maybe put a warning about that into the README?
That sounds good to me, but might entail some new dependencies.
I currently do not have the time to get myself started with tera, so I made a small pull request #15 to point others to this potential pitfall.
I am happy to assist trying out tera when you (or someone else) has started implementing it.
I followed your instructions and synapse generated a secret which would not work well with
sed
in the makefile.Namely, I got a
synapse_macaroon_secret_key
likeabc&def
. Seems like sed does not like the&
in there.Unfortunately I do not know enough about sed to fix this.
Anyways, I could still run everything by simply generating new secrets which did not contain any
&
.Thanks for the great project!
The text was updated successfully, but these errors were encountered: