1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/flarum_ynh.git synced 2024-09-03 18:36:24 +02:00
flarum_ynh/conf/mail.sql.template
tituspijean 48388b9172 Fix sql template files and their variables
Notably, permission was hardcoded to "flarum" instead of app id.
2021-05-05 00:03:43 +02:00

7 lines
243 B
Text

INSERT INTO `settings` (`key`, `value`) VALUES
('mail_driver', 'mail'),
('mail_encryption', 'ssl'),
('mail_from', '__APP__@__DOMAIN__'),
('mail_host', 'localhost'),
('mail_port', '587')
ON DUPLICATE KEY UPDATE value = VALUES(value);