All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.featherfly.common.net.mail.ImapMailServer Maven / Gradle / Ivy


package cn.featherfly.common.net.mail;


/**
 * 

* StmpMailServer *

* * @author 钟冀 */ public class ImapMailServer extends MailServer{ /** */ public ImapMailServer(String host) { this(host, 143); } /** */ public ImapMailServer(String host, int port) { super(host, port, "imap"); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy