1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/synapse_ynh.git synced 2024-09-03 20:26:38 +02:00
synapse_ynh/scripts/config

41 lines
1.3 KiB
Text
Raw Normal View History

2018-08-03 16:06:29 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source ./experimental_helper.sh
source ./_common.sh
2018-08-03 16:06:29 +02:00
source /usr/share/yunohost/helpers
ynh_app_config_validate() {
# Depending of the status of the $enable_regirtration we should default value of the hidden fields
if $enable_registration; then
# Must enable password authentication when free registration is enabled as any user must be able to authenticate
password_enabled=true
else
registrations_require_3pid=email
allowed_local_3pids_email=''
allowed_local_3pids_msisdn=''
disable_msisdn_registration=true
fi
_ynh_app_config_validate
}
ynh_app_config_apply() {
2024-02-16 23:26:18 +01:00
_ynh_app_config_apply
configure_nginx
ynh_add_jinja_config --template="homeserver.yaml" --destination="/etc/matrix-$app/homeserver.yaml"
ynh_add_config --template="log.yaml" --destination="/etc/matrix-$app/log.yaml"
2024-02-16 23:26:18 +01:00
set_permissions
}
2018-08-03 16:06:29 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SELECT THE ACTION FOLLOWING THE GIVEN ARGUMENT
#=================================================
2023-01-11 15:02:48 +01:00
ynh_app_config_run $1