0

是否有提供 IMAP4 服务器端功能的 .NET 的免费(非 GPL)库?

例如,处理套接字级别和消息握手,以便 IMAP4 客户端(例如 Outlook)可以检索、读取、编辑和/或删除消息。

我不是在尝试连接到 IMAP4 服务器,我希望帮助实施一个。

4

3 回答 3

2

我知道我正在回答我自己的问题,但经过更多搜索后,我想我可能找到了符合我需求的东西:

邮件

特征

  • NMail 是一个 100% 的 .net 应用程序。
  • Windows 安装程序和设置向导。
  • ASP.net 网络邮件。
  • 一个 ASP.net 管理站点。

IMAP 服务器功能

  • 支持 ACL。
  • NTLM 身份验证(Outlook 和 Outlook Express 下的安全密码身份验证 (SPA))。
  • 支持 SSL/TLS 加密。
  • SASL 普通身份验证支持(使用加密会话时)。

SMTP 服务器功能

  • 支持 SSL/TLS 加密。
  • 用于过滤和更改消息的灵活 API。例如删除垃圾邮件或重写地址等。
于 2008-09-15T21:25:21.017 回答
0

我不确定您是否尝试过 Indy(以前是一组 Delphi 组件)——尽管我不确定他们是否使用 IMAP4,因为他们的网页有点空白,他们的 CodePlex 集线器也是如此。去他们的网站。除此之外,我不确定——甚至谷歌也只显示客户。

于 2008-09-15T20:52:19.253 回答
0

您可以检查Lumisoft 邮件服务器。许可证是免费软件。

一般的:

* SMTP/POP3/IMAP4/WebMail
* IP access filtering
* User mailbox size limit
* Supports XML or MSSQL databases
* Nice GUI for administation
* Well commented source code included

SMTP:

* All basic smtp features
*  Supports multiple domains
*  Supports multiple e-address for one mailbox
*  Supports aliases(Mailing lists). Supports public and private 
   (needs authentication) lists.
*  Supports email routing. eg *ivar* pattern routes all addresses containing 
   ivar to specified mailbox or remote address
*  SMTP AUTH (LOGIN CRAM-MD5) (supported authentication types)
*  SMTP SIZE, PIPELINING, 8BITMIME, CHUNCKING support
*  SMTP custom message filters
*  Relay can be controlled by IP access or authentication

POP3:

* All basic pop3 features
* APOP command for secure authentication
* POP3 AUTH (LOGIN CRAM-MD5) (supported authentication types)
* POP3 remote accounts

网络邮件(ASP.NET):

* Standalone webmail, can be used any with IMAP based mailserver
* Supports XML or MSSQL databases
* Multiple UI languages
于 2008-11-18T19:28:21.633 回答