public class GreenMail
extends java.lang.Object
Constructor and Description |
---|
GreenMail()
Creates a SMTP, SMTPS, POP3, POP3S, IMAP, and IMAPS server binding onto non-default ports.
|
GreenMail(ServerSetup config)
Call this constructor if you want to run one of the email servers only
|
GreenMail(ServerSetup[] config)
Call this constructor if you want to run more than one of the email servers
|
Modifier and Type | Method and Description |
---|---|
ImapServer |
getImap() |
ImapServer |
getImaps() |
Managers |
getManagers() |
Pop3Server |
getPop3() |
Pop3Server |
getPop3s() |
javax.mail.internet.MimeMessage[] |
getReceivedMessages() |
javax.mail.internet.MimeMessage[] |
getReceviedMessagesForDomain(java.lang.String domain)
This method can be used as an easy 'catch-all' mechanism.
|
SmtpServer |
getSmtp() |
SmtpServer |
getSmtps() |
GreenMailUser |
setUser(java.lang.String email,
java.lang.String password)
Sets the password for the account linked to email.
|
GreenMailUser |
setUser(java.lang.String email,
java.lang.String login,
java.lang.String password) |
void |
setUsers(java.util.Properties users)
Sets up accounts with password based on a properties map where the key is the email and the value the password
|
void |
start() |
void |
stop() |
GreenMailUtil |
util() |
boolean |
waitForIncomingEmail(int emailCount)
Does the same thing as
Object.wait(long, int) but with a timeout of 5000ms |
boolean |
waitForIncomingEmail(long timeout,
int emailCount)
Use this method if you are sending email in a different thread from the one you're testing from.
|
public GreenMail()
ServerSetupTest
public GreenMail(ServerSetup config)
config
- public GreenMail(ServerSetup[] config)
config
- public void start()
public void stop()
public SmtpServer getSmtp()
public ImapServer getImap()
public Pop3Server getPop3()
public SmtpServer getSmtps()
public ImapServer getImaps()
public Pop3Server getPop3s()
public Managers getManagers()
public boolean waitForIncomingEmail(long timeout, int emailCount) throws java.lang.InterruptedException
timeout
- maximum time in ms to wait for emailCount of messages to arrive before giving up and returning falseemailCount
- waits for these many emails to arrive before returningjava.lang.InterruptedException
public boolean waitForIncomingEmail(int emailCount) throws java.lang.InterruptedException
Object.wait(long, int)
but with a timeout of 5000msemailCount
- java.lang.InterruptedException
public javax.mail.internet.MimeMessage[] getReceivedMessages()
GreenMailUtil
has a bunch of static helper methods to extract body text etc.public javax.mail.internet.MimeMessage[] getReceviedMessagesForDomain(java.lang.String domain)
domain
- returns all receved messages arrived to domain.public GreenMailUser setUser(java.lang.String email, java.lang.String password)
email
- password
- public GreenMailUser setUser(java.lang.String email, java.lang.String login, java.lang.String password)
public void setUsers(java.util.Properties users)
users
- public GreenMailUtil util()