cn.featherfly.common.net.mail.Pop3MailServer Maven / Gradle / Ivy
package cn.featherfly.common.net.mail;
/**
*
* Pop3MailServer
*
*
* @author 钟冀
*/
public class Pop3MailServer extends MailServer{
/**
*/
public Pop3MailServer(String host) {
this(host, 110);
}
/**
*/
public Pop3MailServer(String host, int port) {
super(host, port, "pop3");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy