Remove encryption support

This commit is contained in:
Salamandar 2023-09-19 21:30:55 +02:00
parent 4cb26d1e4b
commit 040d20c102
2 changed files with 0 additions and 17 deletions

View file

@ -55,15 +55,6 @@ ram.runtime = "1024M"
help.fr = "Si true, le robot groupera les conversations IRC dans une communauté Matrix.Pas nécessaire si vous avez réglé Synapse pour qu'il autorise les non-admin à créer des communautés." help.fr = "Si true, le robot groupera les conversations IRC dans une communauté Matrix.Pas nécessaire si vous avez réglé Synapse pour qu'il autorise les non-admin à créer des communautés."
default = true default = true
# TODO: is it supported?
# [install.encryption]
# ask.en = "Enable end-to-bridge encryption?"
# ask.fr = "Activer le chiffrement entre Synapse et le bridge ?"
# type = "boolean"
# help.en = "Only activate if you know the prerequisites and constraints related to E2B."
# help.fr = "N'activer que si vous connaissez les prérequis et constraintes liées à E2B."
# default = true
[install.botadmin] [install.botadmin]
ask.en = "Choose the Matrix account administrator of the IRC bot" ask.en = "Choose the Matrix account administrator of the IRC bot"
ask.fr = "Choisissez le compte Matrix administrateur du robot IRC" ask.fr = "Choisissez le compte Matrix administrateur du robot IRC"

View file

@ -16,14 +16,6 @@ ynh_app_setting_set --app="$app" --key=server_name --value="$server_name"
ynh_app_setting_set --app="$app" --key=domain --value="$domain" ynh_app_setting_set --app="$app" --key=domain --value="$domain"
synapse_db_name="matrix_$synapse_instance" synapse_db_name="matrix_$synapse_instance"
# This is needed to convert the value from the manifest to a valid value for the config.yaml file.
# Without this the install script will throw a warning.
if [ "$encryption" -eq "1" ]; then
encryption="true"
else
encryption="false"
fi
#================================================= #=================================================
# STORE SETTINGS FROM MANIFEST # STORE SETTINGS FROM MANIFEST
#================================================= #=================================================