设置 Debian squirrelmail

设置 Debian squirrelmail

我是网络方面的新手。

我需要设置一个电子邮件服务器,还需要创建一个电子邮件地址。例如

[电子邮件保护]

我已经安装了 squirrelmail 和 dovecot。

http://www.mydomain.com/squirrelmail/src/login.php

显示登录屏幕,但当我尝试登录时出现此错误:

连接到 IMAP 服务器时出错:127.0.0.1。111:连接被拒绝

我没有使用过 squirrelmail 和 dovecote。有谁能帮我一下,我非常感激。

谢谢!

答案1

您还需要一个 SMTP 服务器。我建议使用 postfix。(apt-get install postfix
然后,您应该确保使用 `~/Maildir'。如果此文件夹不存在或者您授予了错误的权限,这是一个常见错误。请确保配置 Postfix 以使用它:

postconf -e "home_mailbox = Maildir/"
postconf -e "mailbox_command = "
/etc/init.d/postfix restart

如果仍然不起作用,请尝试通过 telnet 进入您的机器并以此方式进行测试。

测试 SMTP(端口 25)

Trying 10.0.1.40...
Connected to test.freetown.local.
Escape character is '^]'.
220 test.freetown.local ESMTP Postfix (Ubuntu)
ehlo test.freetown.local
mail from: [email protected]
rcpt to: [email protected]
data
Subject: First Mail

Looking good!
.
quit

测试 IMAP(端口 143)

Trying 10.0.1.40...
Connected to test.freetown.local.
Escape character is '^]'.
* OK [CAPABILITY IMAP4rev1 UIDPLUS CHILDREN NAMESPACE THREAD=ORDEREDSUBJECT THREAD=REFERENCES SORT QUOTA IDLE ACL ACL2=UNION] Courier-IMAP ready. Copyright 1998-2010 Double Precision, Inc.  See COPYING for distribution information.
a login bart bart
a OK LOGIN Ok.
a logout
* BYE Courier-IMAP server shutting down
a OK LOGOUT completed

测试 POP3(端口 110)

Trying 10.0.1.40...
Connected to test.freetown.local.
Escape character is '^]'.
+OK Hello there.
user bart
+OK Password required.
pass bart
+OK logged in.
quit
+OK Bye-bye.

如果可行,您的 squirlmail 也应该没问题。

答案2

按照本教程操作:http://workaround.org/ispmail/lenny(是的,这有点过头了,但你会从中学到一些东西)。

相关内容