在Amazon AWS EC2 Linux AMI服务器上。我在Bill's Linux Qmail Toaster v. 0.9.4使用“ Bill的Linux Qmail Toaster v。0.9.4 ”在那里安装了各种软件包,特别是:daemontools,ucspi-tcp,qmail,vpopmail,dovecot,squirrel邮件,自动回复,ezmlm-idx和qmailadmin。经过以下测试,Qmail,Vpopmail和Dovecot都运行良好。
使用telnet localhost 25
测试SMTP没有错误。
使用telnet localhost 143
测试IMAP没有错误。
使用telnet localhost 110
测试POP3没有错误。
问题#1 尝试使用松鼠邮件会导致前端错误“ ERROR:IMAP服务器断开连接。”,我无法确定在哪里检查错误日志。有人请帮忙。 我应该在哪里检查以了解此错误并进行修复?
问题#2 松鼠邮件失败后,我安装了roundcube。我在RoundCube Installation遵循了该方法。尝试使用roundcube登录不会显示任何前端错误,但也不会登录。当我调查 roundcube / config / config.inc.php 时,我仅发现以下基本设置...
$config = array();
$config['db_dsnw'] = 'mysqli://acc:passwd@localhost/roundcube';
$config['default_host'] = 'localhost';
$config['smtp_server'] = 'localhost';
$config['smtp_port'] = 25;
$config['smtp_user'] = '%u';
$config['smtp_pass'] = '%p';
$config['support_url'] = '';
$config['product_name'] = 'Roundcube Webmail';
$config['des_key'] = 'some_des_key';
$config['plugins'] = array(
'archive',
'zipdownload',
);
$config['skin'] = 'larry';
这些设置对于成功的Roundcube设置是否必不可少?
问题3 当我研究dovecot.conf时,我在Dovecot Installation应用了确切的步骤后得到了该文件,我发现几乎所有选项和路径实际上都被注释掉了,例如:
我没有尝试取消注释,因为像 / var / run / dovecot / auth-master 之类的东西似乎根本不在我的系统中。
此配置文件是否存在通常的(明显的错误)可用?