mirror of
https://github.com/YunoHost-Apps/flarum_ynh.git
synced 2024-09-03 18:36:24 +02:00
7 lines
237 B
SQL
7 lines
237 B
SQL
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);
|