介绍
我已经处理了超过 12 个小时的问题圆立方体在我的 VPS Ubuntu 16.04 中安装。IMAP 服务器 (dovecot) 和 SMTP 服务器正在运行,并且telnet
没有出现连接被拒绝错误。
问题
但是,当我转到我的网络邮件并尝试使用用户名root
和相关的 SSH/SFTP 密码登录时(为了测试它是否正常工作,然后我将创建其他电子邮件地址),它返回以下错误:
IMAP Error in /usr/share/nginx/roundcubemail/program/lib/Roundcube/rcube_imap.php (193): Login failed for root from 190.20.86.0. AUTHENTICATE PLAIN: * BYE. Internal error ocurred. Refer to server log for more information
日志
和/var/log/nginx/mail.log
是/var/log/nginx/roundcube.error
空的
配置
圆形立方体RC_PATH/config/config.inc.php
:
<?php
/* Local configuration for Roundcube Webmail */
// ----------------------------------
// SQL DATABASE
// ----------------------------------
// Database connection string (DSN) for read+write operations
// Format (compatible with PEAR MDB2): db_provider://user:password@host/database
// Currently supported db_providers: mysql, pgsql, sqlite, mssql, sqlsrv, oracle
// For examples see http://pear.php.net/manual/en/package.database.mdb2.intro-dsn.php
// NOTE: for SQLite use absolute path (Linux): 'sqlite:////full/path/to/sqlite.db?mode=0646'
// or (Windows): 'sqlite:///C:/full/path/to/sqlite.db'
$config['db_dsnw'] = 'mysql://roundcubeuser:XXXXXXXXXXXX@localhost/roundcubemail';
// ----------------------------------
// IMAP
// ----------------------------------
// The mail host chosen to perform the log-in.
// Leave blank to show a textbox at login, give a list of hosts
// to display a pulldown menu or set one host as string.
// To use SSL/TLS connection, enter hostname with prefix ssl:// or tls://
// Supported replacement variables:
// %n - hostname ($_SERVER['SERVER_NAME'])
// %t - hostname without the first part
// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
// %s - domain name after the '@' from e-mail address provided at login screen
// For example %n = mail.domain.tld, %t = domain.tld
// WARNING: After hostname change update of mail_host column in users table is
// required to match old user data records with the new host.
$config['default_host'] = 'imaps://mail.domain.com';
// TCP port used for IMAP connections
$config['default_port'] = 993;
// ----------------------------------
// SMTP
// ----------------------------------
// SMTP server host (for sending mails).
// To use SSL/TLS connection, enter hostname with prefix ssl:// or tls://
// If left blank, the PHP mail() function is used
// Supported replacement variables:
// %h - user's IMAP hostname
// %n - hostname ($_SERVER['SERVER_NAME'])
// %t - hostname without the first part
// %d - domain (http hostname $_SERVER['HTTP_HOST'] without the first part)
// %z - IMAP domain (IMAP hostname without the first part)
// For example %n = mail.domain.tld, %t = domain.tld
$config['smtp_server'] = 'tls://mail.domain.com';
$config['imap_auth_type'] = 'PLAIN';
// SMTP port (default is 25; use 587 for STARTTLS or 465 for the
// deprecated SSL over SMTP (aka SMTPS))
$config['smtp_port'] = 587;
// SMTP username (if required) if you use %u as the username Roundcube
// will use the current username for login
$config['smtp_user'] = '%u';
// SMTP password (if required) if you use %p as the password Roundcube
// will use the current user's password for login
$config['smtp_pass'] = '%p';
// provide an URL where a user can get support for this Roundcube installation
// PLEASE DO NOT LINK TO THE ROUNDCUBE.NET WEBSITE HERE!
$config['support_url'] = '';
// This key is used for encrypting purposes, like storing of imap password
// in the session. For historical reasons it's called DES_key, but it's used
// with any configured cipher_method (see below).
$config['des_key'] = 'XXXXXXXXXXXXXXXX';
// Name your service. This is displayed on the login screen and in the window title
$config['product_name'] = 'Webmail';
// ----------------------------------
// PLUGINS
// ----------------------------------
// List of active plugins (in plugins/ directory)
$config['plugins'] = array();
$config['debug_level'] = 4; //to debug the php authentication failed error
我该如何在尝试登录时解决这个问题?我非常担心在这 24 小时的停机时间内我丢失了多少电子邮件(20+)。
谢谢你的回答。Kevin Nathan Andrews
答案1
root 无法使用 postfix 接收邮件,dovecot 无法通过 IMAP 发送邮件。使用 Unix 用户进行身份验证并不是一个好主意,而且有很多方法可以使用 postfix 和 dovecot 设置虚拟邮件。
如果您确实需要测试,请创建一个非特权用户,这应该可以工作。