Java Email Server

2024-04-24 16:58
文章标签 java server email

本文主要是介绍Java Email Server,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

点击打开链接

Introduction

Java Mail Server is a Java SMTP and POP3 e-mail server. This project was inspired by and based on the CRSMail project written by Calvin Smith. This project exists for everyone who is interested in running their own email server quickly and easily.

Current Version

The current version of Java Email Server is now hosted at here (at SourceForge). Please refer to that page for all release information and documentation regarding the current version.

For more information on the change, read this blog post.

1.x Version

This page continues to host the 1.x development branch, which is in Maintenance Mode.

The goal of JES is to provide an easy to use and reliable email server that can be quickly and easily setup. JES attempts to provide a powerful server using the minimal number of configuration settings and project size.

Using JES as a testing tool? There is now an Eclipse Plug-In for JES. It allows you to start, stop, and configure JES from Eclipse.

If you are ready to start using JES, please see the Download and Install sections below for instructions on downloading and configuration JES. The binary release, and the source code are available for download from the Download section.

Version 1.x is licensed under the GNU General Public License.

You can email me at eric@ericdaugherty.com for 1.x related questions.

Interested in this history of JES? Check out these blog posts: History, Version 2.0 Branch, and Status and Future, and Java Email Server Gets a New Home.

Download

JDK 1.4 is supported by Version 1.6.1 and older, and JDK 1.3 is supported by JES 1.4 and older.

Version 1.6.1

Server - jes-1.6.1.zip
Source Code and JavaDocs - jes-1.6.1-src.zip

Install

To install and run this mail server, complete the following steps:

Install a Java JDK or JRE version 1.4 or greater (java.sun.com).
Expand the distribution archive into the desired directory.
Modify the included script files for your local file system (if necessary).
Edit the mail.conf, user.conf and log.conf files. See the Configuration page for details.
Run the mail server script file.

JES can be installed as a Windows NT service. A batch file is included in the bin directory of this distribution. To install JES as a service, open the batch file and edit the properties to match your local system. You can then install and uninstall the service using the -install and -uninstall command line parameters. Once the system is installed, it will be started by default the next time the computer is restarted. To start the service the first time, you can type 'net start JavaEmailServer'.      

这篇关于Java Email Server的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

Java中的String.valueOf()和toString()方法区别小结

《Java中的String.valueOf()和toString()方法区别小结》字符串操作是开发者日常编程任务中不可或缺的一部分,转换为字符串是一种常见需求,其中最常见的就是String.value... 目录String.valueOf()方法方法定义方法实现使用示例使用场景toString()方法方法

Java中List的contains()方法的使用小结

《Java中List的contains()方法的使用小结》List的contains()方法用于检查列表中是否包含指定的元素,借助equals()方法进行判断,下面就来介绍Java中List的c... 目录详细展开1. 方法签名2. 工作原理3. 使用示例4. 注意事项总结结论:List 的 contain

Java实现文件图片的预览和下载功能

《Java实现文件图片的预览和下载功能》这篇文章主要为大家详细介绍了如何使用Java实现文件图片的预览和下载功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... Java实现文件(图片)的预览和下载 @ApiOperation("访问文件") @GetMapping("

Spring Boot + MyBatis Plus 高效开发实战从入门到进阶优化(推荐)

《SpringBoot+MyBatisPlus高效开发实战从入门到进阶优化(推荐)》本文将详细介绍SpringBoot+MyBatisPlus的完整开发流程,并深入剖析分页查询、批量操作、动... 目录Spring Boot + MyBATis Plus 高效开发实战:从入门到进阶优化1. MyBatis

SpringCloud动态配置注解@RefreshScope与@Component的深度解析

《SpringCloud动态配置注解@RefreshScope与@Component的深度解析》在现代微服务架构中,动态配置管理是一个关键需求,本文将为大家介绍SpringCloud中相关的注解@Re... 目录引言1. @RefreshScope 的作用与原理1.1 什么是 @RefreshScope1.

Java并发编程必备之Synchronized关键字深入解析

《Java并发编程必备之Synchronized关键字深入解析》本文我们深入探索了Java中的Synchronized关键字,包括其互斥性和可重入性的特性,文章详细介绍了Synchronized的三种... 目录一、前言二、Synchronized关键字2.1 Synchronized的特性1. 互斥2.

Spring Boot 配置文件之类型、加载顺序与最佳实践记录

《SpringBoot配置文件之类型、加载顺序与最佳实践记录》SpringBoot的配置文件是灵活且强大的工具,通过合理的配置管理,可以让应用开发和部署更加高效,无论是简单的属性配置,还是复杂... 目录Spring Boot 配置文件详解一、Spring Boot 配置文件类型1.1 applicatio

Java中StopWatch的使用示例详解

《Java中StopWatch的使用示例详解》stopWatch是org.springframework.util包下的一个工具类,使用它可直观的输出代码执行耗时,以及执行时间百分比,这篇文章主要介绍... 目录stopWatch 是org.springframework.util 包下的一个工具类,使用它

Java进行文件格式校验的方案详解

《Java进行文件格式校验的方案详解》这篇文章主要为大家详细介绍了Java中进行文件格式校验的相关方案,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、背景异常现象原因排查用户的无心之过二、解决方案Magandroidic Number判断主流检测库对比Tika的使用区分zip

Java实现时间与字符串互相转换详解

《Java实现时间与字符串互相转换详解》这篇文章主要为大家详细介绍了Java中实现时间与字符串互相转换的相关方法,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、日期格式化为字符串(一)使用预定义格式(二)自定义格式二、字符串解析为日期(一)解析ISO格式字符串(二)解析自定义