mirror of
https://github.com/YunoHost-Apps/opensondage_ynh.git
synced 2024-09-03 19:46:28 +02:00
fix
This commit is contained in:
parent
f08f84dcbf
commit
9d08f67c07
2 changed files with 5 additions and 3 deletions
|
@ -88,11 +88,11 @@ $config = [
|
|||
/* general config */
|
||||
'use_smtp' => true, // use email for polls creation/modification/responses notification
|
||||
'smtp_options' => [
|
||||
'host' => 'localhost', // SMTP server (you could add many servers (main and backup for example) : use ";" like separator
|
||||
'auth' => false, // Enable SMTP authentication
|
||||
'host' => '__MAIN_DOMAIN__', // SMTP server (you could add many servers (main and backup for example) : use ";" like separator
|
||||
'auth' => true, // Enable SMTP authentication
|
||||
'username' => '__APP__', // SMTP username
|
||||
'password' => '__MAIL_PWD__', // SMTP password
|
||||
'secure' => false, // Enable encryption (false, tls or ssl)
|
||||
'secure' => 'ssl', // Enable encryption (false, tls or ssl)
|
||||
'port' => 25, // TCP port to connect to
|
||||
],
|
||||
/* home */
|
||||
|
|
|
@ -6,6 +6,8 @@
|
|||
|
||||
YNH_COMPOSER_VERSION="2.1.1"
|
||||
|
||||
main_domain=$(cat /etc/yunohost/current_host)
|
||||
|
||||
#=================================================
|
||||
# PERSONAL HELPERS
|
||||
#=================================================
|
||||
|
|
Loading…
Add table
Reference in a new issue