mirror of
https://github.com/YunoHost-Apps/opensondage_ynh.git
synced 2024-09-03 19:46:28 +02:00
Update config.php with upstream version
This commit is contained in:
parent
aa87a6d084
commit
65207a1d9b
1 changed files with 21 additions and 10 deletions
|
@ -84,14 +84,25 @@ const TIME_EDIT_LINK_EMAIL = 60;
|
||||||
|
|
||||||
// Config
|
// Config
|
||||||
$config = [
|
$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
|
||||||
/* home */
|
'smtp_options' => [
|
||||||
'show_what_is_that' => false, // display "how to use" section
|
'host' => 'localhost', // SMTP server (you could add many servers (main and backup for example) : use ";" like separator
|
||||||
'show_the_software' => false, // display technical information about the software
|
'auth' => false, // Enable SMTP authentication
|
||||||
'show_cultivate_your_garden' => false, // display "developpement and administration" information
|
'username' => '__APP__', // SMTP username
|
||||||
/* create_classic_poll.php / create_date_poll.php */
|
'password' => '__MAIL_PWD__', // SMTP password
|
||||||
'default_poll_duration' => 180, // default values for the new poll duration (number of days).
|
'secure' => false, // Enable encryption (false, tls or ssl)
|
||||||
/* create_classic_poll.php */
|
'port' => 25, // TCP port to connect to
|
||||||
'user_can_add_img_or_link' => true, // user can add link or URL when creating his poll.
|
],
|
||||||
|
/* home */
|
||||||
|
'show_what_is_that' => false, // display "how to use" section
|
||||||
|
'show_the_software' => false, // display technical information about the software
|
||||||
|
'show_cultivate_your_garden' => false, // display "development and administration" information
|
||||||
|
/* create_classic_poll.php / create_date_poll.php */
|
||||||
|
'default_poll_duration' => 180, // default values for the new poll duration (number of days).
|
||||||
|
/* create_classic_poll.php */
|
||||||
|
'user_can_add_img_or_link' => true, // user can add link or URL when creating his poll.
|
||||||
|
'markdown_editor_by_default' => true, // The markdown editor for the description is enabled by default
|
||||||
|
'provide_fork_awesome' => true, // Whether the build-in fork-awesome should be provided
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue