Open bustinbung opened 1 year ago
Similar: #9170 and nextcloud/server#42348
I'm trying to connect my email account with Auto, but I'm getting this error: Configuration discovery failed. Please use the manual settings.
I have attached my config that works when I manually put it in Manual. How do I resolve this? I think the problem is with line 517.
mail/src/components/AccountForm.vue Line 517 const firstImapHost = results.filter(({ canConnect, port }) => canConnect && port === 993)[0] const firstSmtpHost = results.filter(({ canConnect, port }) => canConnect && [465, 587].includes(port))[0]
'app.mail.accounts.default' => [
'email' => '%EMAIL%',
'imapHost' => '127.0.0.1',
'imapPort' => 143,
'imapUser' => '%EMAIL%',
'imapSslMode' => 'none' ,
'smtpHost' => 'isellemails.com',
'smtpPort' => 465,
'smtpUser' => '%EMAIL%',
'smtpsslMode' => 'ssl',
],
@winicius87 please use https://help.nextcloud.com/c/apps/mail/35 for support questions.
Steps to reproduce
Expected behavior
The Mail app should be able to detect and login to the mail servers.
Actual behavior
I receive the error above.
Mail app version
3.4.4
Mailserver or service
Self-Hosted (dovecot/exim4)
Operating system
Ubuntu
PHP engine version
PHP 8.2
Web server
Apache (supported)
Database
MariaDB
Additional info
I've tried adding the account to other third-party mail apps and it works fine, same for the webmail interface through RoundTable, so I think it may be a Nextcloud Mail issue. The admin logs give this error which may be useful:
EDIT: Tried to login using other mail services, and am getting the same errors. Still no issues with other mail clients however.