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

Merge pull request #98 from YunoHost-Apps/email

Email
This commit is contained in:
eric_G 2024-02-15 16:47:19 +01:00 committed by GitHub
commit a5673fd96f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View file

@ -88,8 +88,8 @@ $config = [
/* general config */ /* general config */
'use_smtp' => true, // use email for polls creation/modification/responses notification 'use_smtp' => true, // use email for polls creation/modification/responses notification
'smtp_options' => [ 'smtp_options' => [
'host' => 'localhost', // SMTP server (you could add many servers (main and backup for example) : use ";" like separator 'host' => '__MAIN_DOMAIN__', // SMTP server (you could add many servers (main and backup for example) : use ";" like separator
'auth' => false, // Enable SMTP authentication 'auth' => true, // Enable SMTP authentication
'username' => '__APP__', // SMTP username 'username' => '__APP__', // SMTP username
'password' => '__MAIL_PWD__', // SMTP password 'password' => '__MAIL_PWD__', // SMTP password
'secure' => false, // Enable encryption (false, tls or ssl) 'secure' => false, // Enable encryption (false, tls or ssl)

View file

@ -6,6 +6,8 @@
YNH_COMPOSER_VERSION="2.1.1" YNH_COMPOSER_VERSION="2.1.1"
main_domain=$(cat /etc/yunohost/current_host)
#================================================= #=================================================
# PERSONAL HELPERS # PERSONAL HELPERS
#================================================= #=================================================