Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Integration/Framework/ImapTestAccount.php')
-rw-r--r--tests/Integration/Framework/ImapTestAccount.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Integration/Framework/ImapTestAccount.php b/tests/Integration/Framework/ImapTestAccount.php
index 0189884e1..846f332fd 100644
--- a/tests/Integration/Framework/ImapTestAccount.php
+++ b/tests/Integration/Framework/ImapTestAccount.php
@@ -49,14 +49,14 @@ trait ImapTestAccount {
$mailAccount = new MailAccount();
$mailAccount->setUserId($this->getTestAccountUserId());
$mailAccount->setEmail('user@domain.tld');
- $mailAccount->setInboundHost('localhost');
+ $mailAccount->setInboundHost('127.0.0.1');
$mailAccount->setInboundPort(993);
$mailAccount->setInboundSslMode('ssl');
$mailAccount->setInboundUser('user@domain.tld');
$mailAccount->setInboundPassword(OC::$server->getCrypto()->encrypt('mypassword'));
- $mailAccount->setOutboundHost('localhost');
- $mailAccount->setOutboundPort(2525);
+ $mailAccount->setOutboundHost('127.0.0.1');
+ $mailAccount->setOutboundPort(25);
$mailAccount->setOutboundUser('user@domain.tld');
$mailAccount->setOutboundPassword(OC::$server->getCrypto()->encrypt('mypassword'));
$mailAccount->setOutboundSslMode('none');