mailserver.java

来自「邮件服务器」· Java 代码 · 共 21 行

JAVA
21
字号
package com.softeem.mail;

import com.softeem.mail.pop3.POP3Server;
import com.softeem.mail.smtp.SMTPServer;

//邮件总服务器
public class MailServer {

	public static void main(String[] args) {
		SystemOut.out("邮件服务器启动 ...");
		SystemOut.out("SMTP服务器启动 ...");
		SMTPServer smtpServer = new SMTPServer();
		smtpServer.start();
		SystemOut.out("POP3服务器启动 ...");
		POP3Server pop3Server = new POP3Server();
		pop3Server.start();
		
	}

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?