邮件服务器系统设计.doc
约43页DOC格式手机打开展开
邮件服务器系统设计,2.7万字 有源代码摘 要 子邮件服务作为internet上应用最多和最广的服务项目得到了非常广泛的应用,在网络应用中也起到非常重要的作用。如同其他的网络服务,电子邮件系统也有其使用的传输协议,包括smtp(simple mail transfer protocol,简单邮件传输协议)、pop(post office ...
内容介绍
此文档由会员 space 发布
2.7万字 有源代码
摘 要
子邮件服务作为Internet上应用最多和最广的服务项目得到了非常广泛的应用,在网络应用中也起到非常重要的作用。如同其他的网络服务,电子邮件系统也有其使用的传输协议,包括SMTP(Simple Mail Transfer Protocol,简单邮件传输协议)、POP(Post Office Protocol,邮局协议)和IMAP(等,这些协议应用于电子邮件的发送和接收。一些邮件处理软件如Outlook Express等就是按照SMTP和POP3 协议结合Windows Sockets套接字进行设计来收发邮件的。本文以SMTP协议为研究对象,在Java编程环境下按照SMTP协议和POP3协议通过套接字发送SMTP命令和POP3命令,接收并处理邮件服务器的反馈信息,从而实现对电子邮件的发送和接收。
本文以邮件服务器为研究对象,在Java编程环境下按照SMTP协议和POP3协议通过套接字发送SMTP命令和POP3命令,接收并处理邮件服务器的反馈信息,从而实现对电子邮件的发送和接收。本文做了以下工作:
介绍邮件服务器的工作原理;
通过SMTP协议发送邮件;
通过POP3协议接收邮件;
用户名和密码的验证;
邮件服务器的检验;
关 键 字 邮件服务器;SMTP协议;POP3协议;
Abstract
This article take the Mail Server as the research object, transmits the SMTP order and the POP3 order under the Java programming environment according to the SMTP agreement and the POP3 agreement through the sleeve joint character, the receive and the processing server feedback information, thus realizes to the email transmission and the receive. This article has done the below work:
(1) introduces the server the principle of work;
(2) Through SMTP agreement transmission mail;
(3) Through POP3 agreements receive mail;
(4) User name and password confirmation;
(5) Server examination;
KeyWords
Mail server; SMTP agreement;POP3 agreement;
目录
1、前言
2、基于Eclipse开发的java语言编程技术
3、服务器配置
4、系统框架的设计与实现
4.1 系统设计思想
4.2 邮件发送服务器的设计
4.3 邮件接收服务器的设计
4.3.1 邮件接收原理
4.3.2 邮件接收的实现
4.3.3 邮件接收的部分代码
4.4用户和用户名的验证
结论
致谢
参考文献
附录
摘 要
子邮件服务作为Internet上应用最多和最广的服务项目得到了非常广泛的应用,在网络应用中也起到非常重要的作用。如同其他的网络服务,电子邮件系统也有其使用的传输协议,包括SMTP(Simple Mail Transfer Protocol,简单邮件传输协议)、POP(Post Office Protocol,邮局协议)和IMAP(等,这些协议应用于电子邮件的发送和接收。一些邮件处理软件如Outlook Express等就是按照SMTP和POP3 协议结合Windows Sockets套接字进行设计来收发邮件的。本文以SMTP协议为研究对象,在Java编程环境下按照SMTP协议和POP3协议通过套接字发送SMTP命令和POP3命令,接收并处理邮件服务器的反馈信息,从而实现对电子邮件的发送和接收。
本文以邮件服务器为研究对象,在Java编程环境下按照SMTP协议和POP3协议通过套接字发送SMTP命令和POP3命令,接收并处理邮件服务器的反馈信息,从而实现对电子邮件的发送和接收。本文做了以下工作:
介绍邮件服务器的工作原理;
通过SMTP协议发送邮件;
通过POP3协议接收邮件;
用户名和密码的验证;
邮件服务器的检验;
关 键 字 邮件服务器;SMTP协议;POP3协议;
Abstract
This article take the Mail Server as the research object, transmits the SMTP order and the POP3 order under the Java programming environment according to the SMTP agreement and the POP3 agreement through the sleeve joint character, the receive and the processing server feedback information, thus realizes to the email transmission and the receive. This article has done the below work:
(1) introduces the server the principle of work;
(2) Through SMTP agreement transmission mail;
(3) Through POP3 agreements receive mail;
(4) User name and password confirmation;
(5) Server examination;
KeyWords
Mail server; SMTP agreement;POP3 agreement;
目录
1、前言
2、基于Eclipse开发的java语言编程技术
3、服务器配置
4、系统框架的设计与实现
4.1 系统设计思想
4.2 邮件发送服务器的设计
4.3 邮件接收服务器的设计
4.3.1 邮件接收原理
4.3.2 邮件接收的实现
4.3.3 邮件接收的部分代码
4.4用户和用户名的验证
结论
致谢
参考文献
附录