zoukankan      html  css  js  c++  java
  • sharpwebmail邮件管理系统开源 下载及使用方法

    原文发布时间为:2008-11-16 —— 来源于本人的百度文章 [由搬家工具导入]

    网址:http://sourceforge.net/projects/sharpwebmail/

    点击后:点击download图标

    Package Release Date Notes / Monitor Downloads sharpmimetools beta 0.6 beta July 5, 2006 Release notes     Monitor this package Download sharpwebmail beta 0.13 beta November 1, 2005 Release notes     Monitor this package Download

    sharpwebmail beta这个就是了。。。

    -----------------------------------------------------------------------------------】

    什么是:SharpWebMail
    SharpWebMail是一款C#开发的基于WEB应用程序的多语言的WEB邮件服务。它允许我们使用SMTP或IMAP服务来完成发送,接收邮箱。目前的版本是0.13。

    SharpWebMail里的控件由几个出名的开源的项目组成:
    FCKeditor:不多介绍,开源的HTML编辑器。
    DotNetOpenMail :一款SMTP客户端组件。(它完全可以代替我们发送邮件的时候使用System.Web.Mail类。至于我们为什么要放弃System.Web.Mail来发送邮件呢?呵呵。自己去它官网看介绍)
    Mono :开源项目,让我们的.NET应用程序不仅能运行在WIN上,也能运行LINUX其它系统上面。
    SharpMimeTools :SharpMimeTools is an open source MIME parser/decoder assembly that is written in C#

    安装步骤:
    解压出来出来。为应用程序创建虚拟目录。
    修改web.config文件

    <login
                    title="[login title] configuration setting"
                     mode="1"
                     append="cnzc"
                     serverselection="manual"
                     enablequerystringlogin="false"
            />mode:
                         1->     Full email required for login
                         2->     Any username is allowed
                         3->     Any username is allowed but the append
                             string is added to supplied username

    它登陆有三种模式。一种是以EMAIL的形式登陆,一种是以是帐号的形式登陆,还有一种登陆的用户名必须是append支持用户



    <servers>
                    <server
                        name="Default POP3 Server"
                         regexp="*"
                         protocol="pop3"
                         host="pop3.163.com"
                         port="110"
                    />
                </servers

                <servers>
                    <server
                        name="Default SMTP Server"
                         regexp="*"
                         protocol="smtp"
                         host="smtp.163.com"
                         port="25"
                    />
                </servers>

    我使用的是163的邮件系统。请注意host填写内容。一定要写全(带上pop3前缀)。刚开始我就是填写163.com就了事了。然后发现一直不能登陆,去查了代码才发现的


    至于大家想怎么用都行。比如把它引入到我们自己的项目当中。这样就有了一个邮件收发的功能了。

  • 相关阅读:
    Balanced Binary Tree
    Convert Sorted List to Binary Search Tree
    Convert Sorted Array to Binary Search Tree
    Binary Tree Zigzag Level Order Traversal
    Validate Binary Search Tree
    Binary Tree Level Order Traversal II
    Binary Tree Level Order Traversal
    Maximum Depth of Binary Tree
    如何把U盘的两个盘或者多个盘合成一个
    bugku 想蹭网先解开密码
  • 原文地址:https://www.cnblogs.com/handboy/p/7141617.html
Copyright © 2011-2022 走看看