1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/monica_ynh.git synced 2024-09-03 19:46:23 +02:00

Merge pull request #73 from YunoHost-Apps/smtp

Smtp
This commit is contained in:
Alexandre Aubin 2023-12-02 16:56:54 +01:00 committed by GitHub
commit ac97964b8b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 17 additions and 6 deletions

View file

@ -22,7 +22,7 @@ HASH_SALT=ChangeMeBy20+KeyLength
HASH_LENGTH=18
# The URL of your application.
APP_URL=https://__DOMAIN__
APP_URL=https://__DOMAIN____PATH__
# Force using APP_URL as base url of your application.
# You should not need this, unless you are using subdirectory config.
@ -53,11 +53,11 @@ DB_USE_UTF8MB4=true
MAIL_DRIVER=smtp
MAIL_HOST=127.0.0.1
MAIL_PORT=25
MAIL_USERNAME=
MAIL_PASSWORD=
MAIL_USERNAME=__APP__
MAIL_PASSWORD=__MAIL_PWD__
MAIL_ENCRYPTION=
# Outgoing emails will be sent with these identity
MAIL_FROM_ADDRESS=monica@__DOMAIN__
MAIL_FROM_ADDRESS=__APP__@__DOMAIN__
MAIL_FROM_NAME="Monica"
# New registration notification sent to this email
APP_EMAIL_NEW_USERS_NOTIFICATION=__EMAIL__
@ -136,7 +136,7 @@ AWS_SERVER=
S3_PATH_STYLE=
# Allow Two Factor Authentication feature on your instance
MFA_ENABLED=false
MFA_ENABLED=true
# Enable DAV support
DAV_ENABLED=true

View file

@ -1 +1 @@
* * * * * __APP__ /usr/bin/php__PHPVERSION__ __INSTALL_DIR__/artisan schedule:run
* * * * * __APP__ /usr/bin/php__PHPVERSION__ __INSTALL_DIR__/artisan schedule:run >> /dev/null 2>&1

View file

@ -59,6 +59,7 @@ ram.runtime = "50M"
autoupdate.strategy = "latest_github_tag"
[resources.system_user]
allow_email = true
[resources.install_dir]

View file

@ -153,6 +153,16 @@ chown $app:$app "$install_dir/.env"
update-alternatives --set php /usr/bin/php${YNH_PHP_VERSION}
#=================================================
# INSTALL THE CRON FILE
#=================================================
ynh_script_progression --message="Setuping a cron..." --weight=1
ynh_add_config --template="../conf/cron" --destination="/etc/cron.d/$app"
chown root: "/etc/cron.d/$app"
chmod 644 "/etc/cron.d/$app"
#=================================================
# END OF SCRIPT
#=================================================