mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/11460] Configure functional test board email using dummy SMTP data.
PHPBB3-11460
This commit is contained in:
parent
69df6b49db
commit
02817158fc
1 changed files with 6 additions and 6 deletions
|
@ -196,12 +196,12 @@ class phpbb_functional_test_case extends phpbb_test_case
|
||||||
$parseURL = parse_url(self::$config['phpbb_functional_url']);
|
$parseURL = parse_url(self::$config['phpbb_functional_url']);
|
||||||
|
|
||||||
$data = array_merge($data, array(
|
$data = array_merge($data, array(
|
||||||
'email_enable' => false,
|
'email_enable' => true,
|
||||||
'smtp_delivery' => false,
|
'smtp_delivery' => true,
|
||||||
'smtp_host' => '',
|
'smtp_host' => 'nxdomain.phpbb.com',
|
||||||
'smtp_auth' => '',
|
'smtp_auth' => '',
|
||||||
'smtp_user' => '',
|
'smtp_user' => 'nxuser',
|
||||||
'smtp_pass' => '',
|
'smtp_pass' => 'nxpass',
|
||||||
'cookie_secure' => false,
|
'cookie_secure' => false,
|
||||||
'force_server_vars' => false,
|
'force_server_vars' => false,
|
||||||
'server_protocol' => $parseURL['scheme'] . '://',
|
'server_protocol' => $parseURL['scheme'] . '://',
|
||||||
|
|
Loading…
Add table
Reference in a new issue