1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/pufferpanel_ynh.git synced 2024-09-03 20:16:03 +02:00
This commit is contained in:
ericgaspar 2023-10-29 10:03:34 +01:00
parent d5a9c45020
commit 1c05366a26
3 changed files with 8 additions and 2 deletions

View file

@ -21,7 +21,7 @@
"panel": {
"email": {
"provider": "smtp",
"from": "pufferpanel@__MAIN_DOMAIN__",
"from": "__EMAIL__",
"host": "localhost",
"username": "__APP__",
"password": "__MAIL_PWD__",

View file

@ -13,7 +13,7 @@ source /usr/share/yunohost/helpers
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
mail=$(ynh_user_get_info --username=$admin --key=mail)
email=$(ynh_user_get_info --username=$admin --key=mail)
#=================================================
# CHECK IF THE APP CAN BE INSTALLED WITH THESE ARGS

View file

@ -9,6 +9,12 @@
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
email=$(ynh_user_get_info --username=$admin --key=mail)
#=================================================
# CHECK VERSION
#=================================================