aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2019-04-27 13:24:16 +0200
committerMarc Alexander <admin@m-a-styles.de>2019-04-27 13:24:16 +0200
commitf3c4587d47af6aa3e39368653b542f97ed3428c6 (patch)
treed84d1136fb747590aa77e921353b0151d08e5cd3 /phpBB/install
parentdb43961de63d169b6a3dbe6a75f421cd94f1e5fa (diff)
parent71d66832c019346718e70b18923fd717775c2ca3 (diff)
downloadforums-f3c4587d47af6aa3e39368653b542f97ed3428c6.tar
forums-f3c4587d47af6aa3e39368653b542f97ed3428c6.tar.gz
forums-f3c4587d47af6aa3e39368653b542f97ed3428c6.tar.bz2
forums-f3c4587d47af6aa3e39368653b542f97ed3428c6.tar.xz
forums-f3c4587d47af6aa3e39368653b542f97ed3428c6.zip
Merge pull request #47 from phpbb/ticket/security/233
[ticket/security/233] Make smtp_password and smtp_username dynamic
Diffstat (limited to 'phpBB/install')
-rw-r--r--phpBB/install/schemas/schema_data.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/install/schemas/schema_data.sql b/phpBB/install/schemas/schema_data.sql
index 55dd72db0d..fada5b6cbd 100644
--- a/phpBB/install/schemas/schema_data.sql
+++ b/phpBB/install/schemas/schema_data.sql
@@ -269,9 +269,9 @@ INSERT INTO phpbb_config (config_name, config_value) VALUES ('smilies_per_page',
INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_auth_method', 'PLAIN');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_delivery', '0');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_host', '');
-INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_password', '');
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_password', '', 1);
INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_port', '25');
-INSERT INTO phpbb_config (config_name, config_value) VALUES ('smtp_username', '');
+INSERT INTO phpbb_config (config_name, config_value, is_dynamic) VALUES ('smtp_username', '', 1);
INSERT INTO phpbb_config (config_name, config_value) VALUES ('teampage_memberships', '1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('teampage_forums', '1');
INSERT INTO phpbb_config (config_name, config_value) VALUES ('topics_per_page', '25');