How to write simple mail server in java? [closed]
Questions asking us to recommend or find a tool, library or favorite off-site resource开发者_如何学JAVA are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this questionI want to write a mail server, but I don't know how. Would you please give me some direction where to search for exmaples?
Essential reading for implementors of SMTP servers:
- RFC 821 (and updates, most recent is RFC 5321)
- RFC 822 (and updates, most recent is RFC 5322)
The Wikipedia article Simple Mail Transfer Protocol has a huge amount of additional information and links.
Apache has done that for you. Visit Apache James home page: http://james.apache.org/
精彩评论