使用hmailserver搭建邮件服务器

2023-11-04 08:18

本文主要是介绍使用hmailserver搭建邮件服务器,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

    • 安装
    • 使用outlook访问
    • 配置TLS AND SSL 支持
    • 使用java收发邮件
    • 支持IPV6
    • 查看数据文件位置
    • 常见错误
    • 附录

本文参考地址:
官方帮助文档
软件下载
各个邮件服务器软件比较
官方和自签名证书for hmailserver

安装

如果是win10 务必安装.net 3.5 参见附录
下载完软件后,开始安装:
安装所有组件
使用内嵌数据库
设置密码
连接
添加域
添加用户

使用outlook访问

在outlook里面配置连接信息:
这里写图片描述
这里需要注意的是:
1.注意这里设置的用户名必须是完整的电子邮件地址
2.这里使用的简单的本地地址.
3.如果提示找不到ISP服务器,看下是不是输错多次密码了.在hmail的配置:Settings->Advanced ->Auto-ban里面是否有拦截
4.如果还是无法找到,看下ip段是否在可登陆的地址里面.在hmail的配置:Settings->Advanced->IP Ranges
5.查看绑定的各个服务的端口在:Settings -> Advanced ->TCP/IP ports

然后就可以相互发邮件了.
这里写图片描述

配置TLS AND SSL 支持

(1)配置证书,生成证书参考:http://blog.csdn.net/scugxl/article/details/49204685
配置证书
(2)配置证书:(使用9999端口,可以自定义)
配置证书
(3)查看是否ok:
使用openssl查看是否ok
常见问题:
[1]配置后 提示启动成功,但是发现没有该端口.
netstat -ano | findstr 9999
解决办法:打开hmail的日志后查看,目前我遇到了2种情况,打开日志方式:
日志

问题1:日志中有如下错误:

“ERROR” 8768 “2015-10-17 16:00:20.920” “Severity: 2 (High), Code: HM5143, Source: TCPServer::GetPassword(), Description: The private key file has a password. hMailServer does not support this.”

解决办法:证书文件私钥文件不能有密码.
问题2:报nosuch process

“ERROR” 8396 “2015-10-17 16:57:59.496” “Severity: 2 (High), Code: HM5113, Source: SslContextInitializer::InitServer, Description: Failed to load certificate file. Path: C:\Users\gaoxi\Desktop, Address: 0.0.0.0, Port: 9999, Error: use_certificate_file: No such process”

解决办法:试试证书路径是否包含中文路径.

使用java收发邮件

Java Mail Home Page

package javamail;import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Date;
import java.util.Properties;import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.SendFailedException;
import javax.mail.Session;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;import com.sun.mail.smtp.SMTPAddressFailedException;
import com.sun.mail.smtp.SMTPAddressSucceededException;
import com.sun.mail.smtp.SMTPSendFailedException;
import com.sun.mail.smtp.SMTPTransport;/*** 根据java mail examples 修改* @author gxl**/
public class smtpsend
{/*** Example of how to extend the SMTPTransport class. This example* illustrates how to issue the XACT command before the SMTPTransport issues* the DATA command.** public static class SMTPExtension extends SMTPTransport { public* SMTPExtension(Session session, URLName url) { super(session, url); // to* check that we're being used* System.out.println("SMTPExtension: constructed"); }* * protected synchronized OutputStream data() throws MessagingException { if* (supportsExtension("XACCOUNTING")) issueCommand("XACT", 250); return* super.data(); } }*/public static void main(String[] argv){String to = "user1@youdomain.com", subject = "Test subject", from = "user2@youdomain.com";String mailhost = null;String mailer = "smtpsend";String user = null, password = null;boolean debug = true;boolean verbose = false;boolean auth = false;String prot = "smtp";new BufferedReader(new InputStreamReader(System.in));try{/** Initialize the JavaMail Session.*/Properties props = System.getProperties();if (auth)props.put("mail." + prot + ".auth", "true");/** Create a Provider representing our extended SMTP transport and* set the property to use our provider.* * Provider p = new Provider(Provider.Type.TRANSPORT, prot,* "smtpsend$SMTPExtension", "JavaMail demo", "no version");* props.put("mail." + prot + ".class", "smtpsend$SMTPExtension");*/// Get a Session objectSession session = Session.getInstance(props, null);if (debug)session.setDebug(true);/** Register our extended SMTP transport.* * session.addProvider(p);*//** Construct the message and send it.*/Message msg = new MimeMessage(session);msg.setFrom(new InternetAddress(from));msg.setRecipients(Message.RecipientType.TO,InternetAddress.parse(to, false));msg.setSubject(subject);String text = "This is a test message.";// If the desired charset is known, you can use// setText(text, charset)msg.setText(text);msg.setHeader("X-Mailer", mailer);msg.setSentDate(new Date());// send the thing off/** The simple way to send a message is this:* * Transport.send(msg);* * But we're going to use some SMTP-specific features for* demonstration purposes so we need to manage the Transport object* explicitly.*/SMTPTransport t = (SMTPTransport) session.getTransport(prot);try{if (auth)t.connect(mailhost, user, password);elset.connect();t.sendMessage(msg, msg.getAllRecipients());}finally{if (verbose)System.out.println("Response: " + t.getLastServerResponse());t.close();}System.out.println("\nMail was sent successfully.");}catch (Exception e){/** Handle SMTP-specific exceptions.*/if (e instanceof SendFailedException){MessagingException sfe = (MessagingException) e;if (sfe instanceof SMTPSendFailedException){SMTPSendFailedException ssfe = (SMTPSendFailedException) sfe;System.out.println("SMTP SEND FAILED:");if (verbose)System.out.println(ssfe.toString());System.out.println("  Command: " + ssfe.getCommand());System.out.println("  RetCode: " + ssfe.getReturnCode());System.out.println("  Response: " + ssfe.getMessage());}else{if (verbose)System.out.println("Send failed: " + sfe.toString());}Exception ne;while ((ne = sfe.getNextException()) != null&& ne instanceof MessagingException){sfe = (MessagingException) ne;if (sfe instanceof SMTPAddressFailedException){SMTPAddressFailedException ssfe = (SMTPAddressFailedException) sfe;System.out.println("ADDRESS FAILED:");if (verbose)System.out.println(ssfe.toString());System.out.println("  Address: " + ssfe.getAddress());System.out.println("  Command: " + ssfe.getCommand());System.out.println("  RetCode: " + ssfe.getReturnCode());System.out.println("  Response: " + ssfe.getMessage());}else if (sfe instanceof SMTPAddressSucceededException){System.out.println("ADDRESS SUCCEEDED:");SMTPAddressSucceededException ssfe = (SMTPAddressSucceededException) sfe;if (verbose)System.out.println(ssfe.toString());System.out.println("  Address: " + ssfe.getAddress());System.out.println("  Command: " + ssfe.getCommand());System.out.println("  RetCode: " + ssfe.getReturnCode());System.out.println("  Response: " + ssfe.getMessage());}}}else{System.out.println("Got Exception: " + e);if (verbose)e.printStackTrace();}}}}

运行输出:

Subject: Test subject
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-Mailer: smtpsendThis is a test message.
.
250 Queued (0.064 seconds)
DEBUG SMTP: message successfully delivered to mail server
QUIT
221 goodbyeMail was sent successfully.

在Outlook上看到的:
receuved email

支持IPV6

IPV6
实际配置效果如下:
[1]新增一个ipv6专用的smtp端口.
ipv6
[2]设置新增的ipv6的登陆地址段.
ipv6 range

为了方便使用,修改了下hmailServer的鉴权设置 不适用SSL.
ssl disabled

java代码:(与前面类似 只贴出了修改的点)

        String to = "user1@youdomain.com", subject = "Test subject", from = "user2@youdomain.com";boolean testipv6 = true; // 如果不测试ipv6 这里设置为false/*** test ipv6*/String smtpipv6 = "fe80::d48a:e3be:7d9d:899c";int ipv6port = 9999;String mailhost = null;
....
....SMTPTransport t = (SMTPTransport) session.getTransport(prot);try{if (auth){t.connect(mailhost, user, password);}else if (testipv6){t.connect(smtpipv6, ipv6port, "user1@youdomain.com", "123456");}else{t.connect();}t.sendMessage(msg, msg.getAllRecipients());}

查看数据文件位置

C:\Program Files (x86)\hMailServer\Bin\hMailServer.ini 地址根据你的安装路径变化.

常见错误

常见错误码参考
trouble shooting tips

附录

1.win10 安装.net 3.5
如果你是win10 需要手动启用一下.net 3.5
win10
另外的请参考:win10 下安装.net framework 3.5
ITHOME

2.本文所涉及的所有文件
百度云
Java Mail API source code or @Baidu yun

这篇关于使用hmailserver搭建邮件服务器的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/344438

相关文章

使用Java解析JSON数据并提取特定字段的实现步骤(以提取mailNo为例)

《使用Java解析JSON数据并提取特定字段的实现步骤(以提取mailNo为例)》在现代软件开发中,处理JSON数据是一项非常常见的任务,无论是从API接口获取数据,还是将数据存储为JSON格式,解析... 目录1. 背景介绍1.1 jsON简介1.2 实际案例2. 准备工作2.1 环境搭建2.1.1 添加

如何使用celery进行异步处理和定时任务(django)

《如何使用celery进行异步处理和定时任务(django)》文章介绍了Celery的基本概念、安装方法、如何使用Celery进行异步任务处理以及如何设置定时任务,通过Celery,可以在Web应用中... 目录一、celery的作用二、安装celery三、使用celery 异步执行任务四、使用celery

使用Python绘制蛇年春节祝福艺术图

《使用Python绘制蛇年春节祝福艺术图》:本文主要介绍如何使用Python的Matplotlib库绘制一幅富有创意的“蛇年有福”艺术图,这幅图结合了数字,蛇形,花朵等装饰,需要的可以参考下... 目录1. 绘图的基本概念2. 准备工作3. 实现代码解析3.1 设置绘图画布3.2 绘制数字“2025”3.3

Jsoncpp的安装与使用方式

《Jsoncpp的安装与使用方式》JsonCpp是一个用于解析和生成JSON数据的C++库,它支持解析JSON文件或字符串到C++对象,以及将C++对象序列化回JSON格式,安装JsonCpp可以通过... 目录安装jsoncppJsoncpp的使用Value类构造函数检测保存的数据类型提取数据对json数

python使用watchdog实现文件资源监控

《python使用watchdog实现文件资源监控》watchdog支持跨平台文件资源监控,可以检测指定文件夹下文件及文件夹变动,下面我们来看看Python如何使用watchdog实现文件资源监控吧... python文件监控库watchdogs简介随着Python在各种应用领域中的广泛使用,其生态环境也

Python中构建终端应用界面利器Blessed模块的使用

《Python中构建终端应用界面利器Blessed模块的使用》Blessed库作为一个轻量级且功能强大的解决方案,开始在开发者中赢得口碑,今天,我们就一起来探索一下它是如何让终端UI开发变得轻松而高... 目录一、安装与配置:简单、快速、无障碍二、基本功能:从彩色文本到动态交互1. 显示基本内容2. 创建链

springboot整合 xxl-job及使用步骤

《springboot整合xxl-job及使用步骤》XXL-JOB是一个分布式任务调度平台,用于解决分布式系统中的任务调度和管理问题,文章详细介绍了XXL-JOB的架构,包括调度中心、执行器和Web... 目录一、xxl-job是什么二、使用步骤1. 下载并运行管理端代码2. 访问管理页面,确认是否启动成功

Apache Tomcat服务器版本号隐藏的几种方法

《ApacheTomcat服务器版本号隐藏的几种方法》本文主要介绍了ApacheTomcat服务器版本号隐藏的几种方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需... 目录1. 隐藏HTTP响应头中的Server信息编辑 server.XML 文件2. 修China编程改错误

使用Nginx来共享文件的详细教程

《使用Nginx来共享文件的详细教程》有时我们想共享电脑上的某些文件,一个比较方便的做法是,开一个HTTP服务,指向文件所在的目录,这次我们用nginx来实现这个需求,本文将通过代码示例一步步教你使用... 在本教程中,我们将向您展示如何使用开源 Web 服务器 Nginx 设置文件共享服务器步骤 0 —

Java中switch-case结构的使用方法举例详解

《Java中switch-case结构的使用方法举例详解》:本文主要介绍Java中switch-case结构使用的相关资料,switch-case结构是Java中处理多个分支条件的一种有效方式,它... 目录前言一、switch-case结构的基本语法二、使用示例三、注意事项四、总结前言对于Java初学者