mirror of
https://github.com/YunoHost-Apps/flarum_ynh.git
synced 2024-09-03 18:36:24 +02:00
48388b9172
Notably, permission was hardcoded to "flarum" instead of app id.
7 lines
243 B
Text
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);
|