GreenMail
Open Source suite of lightweight and sand boxed email servers supporting SMTP, POP3 and IMAP.
Currently v1.4.1
Open Source suite of lightweight and sand boxed email servers supporting SMTP, POP3 and IMAP.
Currently v1.4.1
GreenMail is an open source, intuitive and easy-to-use test suite of email servers for testing purposes.
Typical use cases include mail integration testing or a lightweight sand boxed mail server for development.
GreenMail is the fist and only library that offers a test framework for both receiving and retrieving emails from Java.
GreenMail is useful in the following scenarios:
@Rule
public final GreenMailRule greenMail = new GreenMailRule(ServerSetupTest.SMTP);
@Test
public void testSend() throws MessagingException {
GreenMailUtil.sendTextEmailTest("to@localhost.com", "from@localhost.com",
"some subject", "some body"); // --- Place your sending code here instead
assertEquals("some body", GreenMailUtil.getBody(greenMail.getReceivedMessages()[0]));
}
@Rule
public final GreenMailRule greenMail = new GreenMailRule(ServerSetupTest.SMTP_IMAP);
@Test
public void testReceive() throws MessagingException {
GreenMailUser user = greenMail.setUser("to@localhost.com", "login-id", "password");
user.deliver(createMimeMessage()); // You can either create a more complex message...
GreenMailUtil.sendTextEmailTest("to@localhost.com", "from@localhost.com",
"subject", "body"); // ...or use the default messages
assertEquals(2, greenMail.getReceivedMessages().length); // // --- Place your POP3 or IMAP retrieve code here
}
GreenMail can easily be configured to use all or a combination of ports, protocols, and bind addresses. For example it's possible to run GreenMail on SMTP, POP3, POP3S and IMAPS ports as easily as only SMTP. Many systems might already be running these servers or don't allow non root users to open the default ports which is why GreenMail ships with a special configuration for testing.
GreenMail provides a JBoss GreenMail service for mocking a mail server for development. It safes you the overhead of either installing a full productive server (like Apache James).
Check out the possible deployments as webapp or JBoss Service.
The implementation is in 100% Java with only a few library dependencies:
You find the source on GitHub including build instructions. GreenMail is open source released under The Apache 2.0 License.
GreenMail's protocol source code is based on a cocktail of Foedus and James.
The following lists provide helpful links related to GreenMail and email integration testing.
Special thanks to all contributors for feedback and patches!
Many thanks to
and JetBrains for supporting this project with free OSS licenses!
@Rule
public final GreenMailRule greenMail = new GreenMailRule(ServerSetupTest.ALL);
@Test
public void testSomething() {
GreenMailUtil.sendTextEmailTest("to@localhost.com", "from@localhost.com", "subject", "body");
MimeMessage[] emails = greenMail.getReceivedMessages();
assertEquals(1, emails.length);
assertEquals("subject", emails[0].getSubject());
assertEquals("body", GreenMailUtil.getBody(emails[0]));
// ...
}
GreenMail greenMail = new GreenMail(); //uses test ports by default
greenMail.start();
GreenMailUtil.sendTextEmailTest("to@localhost.com", "from@localhost.com", "some subject",
"some body"); // --- Place your sending code here
assertEquals("some body", GreenMailUtil.getBody(greenMail.getReceivedMessages()[0]));
greenMail.stop();
GreenMail greenMail = new GreenMail(ServerSetupTest.ALL);
greenMail.start();
//Use random content to avoid potential residual lingering problems
final String subject = GreenMailUtil.random();
final String body = GreenMailUtil.random();
sendTestMails(subject, body); // --- Place your sending code here
//wait for max 5s for 1 email to arrive
//waitForIncomingEmail() is useful if you're sending stuff asynchronously in a separate thread
assertTrue(greenMail.waitForIncomingEmail(5000, 2));
//Retrieve using GreenMail API
Message[] messages = greenMail.getReceivedMessages();
assertEquals(2, messages.length);
// Simple message
assertEquals(subject, messages[0].getSubject());
assertEquals(body, GreenMailUtil.getBody(messages[0]).trim());
//if you send content as a 2 part multipart...
assertTrue(messages[1].getContent() instanceof MimeMultipart);
MimeMultipart mp = (MimeMultipart) messages[1].getContent();
assertEquals(2, mp.getCount());
assertEquals("body1", GreenMailUtil.getBody(mp.getBodyPart(0)).trim());
assertEquals("body2", GreenMailUtil.getBody(mp.getBodyPart(1)).trim());
greenMail.stop();
//Start all email servers using non-default ports.
GreenMail greenMail = new GreenMail(ServerSetupTest.ALL);
greenMail.start();
//Use random content to avoid potential residual lingering problems
final String subject = GreenMailUtil.random();
final String body = GreenMailUtil.random();
MimeMessage message = createMimeMessage(subject, body, greenMail); // Construct message
GreenMailUser user = greenMail.setUser("wael@localhost.com", "waelc", "soooosecret");
user.deliver(message);
assertEquals(1, greenMail.getReceivedMessages().length);
// --- Place your retrieve code here
greenMail.stop();
GreenMail Webapp provides a lightweight Java web application wrapping GreenMail mail server.
Like the GreenMail JBoss Service, the usage scenario is a development or test environment where a real mail server is too much overhead. The webapp is application server neutral - you should be able to use it on any JEE application server running und Java 5.
With the GreenMail mail service each developer has its own local mail server sandbox - so there's no danger for accidentally leaking test mails into the Internet.
Simply deploy the webapp like any other Java web application.
For Tomcat, just drop the webapp into $CATALINA_HOME/webapps directory. Alternatively, you can create a $CATALINA_HOME/webapps/greenmail, unpack the WAR here and configure the GreenMail service.
You can configure the active mail services and available users by editing WEB-INF/web.xml in the WAR file and modifying the context params. A ServletContextListener starts and stops the GreenMail service when deploying/undeploying.
| Name | Description |
| greenmail.defaultHostname | The mail server default hostname (defaults to localhost). |
| greenmail.portOffset | Offset added to the standard mail ports. Default is 10000 (so an activated SMTP service would start up on port 10025). |
| greenmail.<PROTOCOL> | Starts a server for this mail protocol (using defaultHostname, port offset and default
port).
Available protocol names include
|
| greenmail.<PROTOCOL>.host | Optionally overwrites the default host name (localhost). |
| greenmail.<PROTOCOL>.port | Optionally overwrites the default port and port offset for the given protocol. |
| greenmail.users | A whitespace/newline/comma separated list of mail users in the form of USER:PWD@DOMAIN. |
Have a look at the default web.xml.
GreenMail provides a JBoss Service for easy JBoss integration. The usage scenario is a development or test environment where a real mail server is too much overhead. With the GreenMail mail service each developer has its own local mail server sandbox - so there's no danger for accidentally leaking test mails into the Internet.
GreenMail SAR works only up to JBoss AS 6!
JBoss introduced a not backward compatible change to the SAR MBean deployment in JBoss AS 7+. As alternative, try out the GreenMail WAR deployment.
This example uses the default server, where the service is deployed in exploded mode for follow up configuration.
cd ${JBOSS_HOME}/server/default/deploy
mkdir greenmail-jboss-service.sar
cd greenmail-jboss-service.sar
jar xvf /path/to/greenmail-jboss-service-XXX.jar
Starting JBoss will now automatically also start the GreenMail JBoss Service. You can see a startup message on the console output, including basic configuration data like active protocols and their ports:
Opening the JBoss Console, you can see the GreenMail Service JMX Bean:
You find two entries, of which the second one holds our interest:
The GreenMail service is configured by the file META-INF/jboss-service.xml in the exploded service directory.
The mail should now be visible by listing the user mails, if there is no automatic polling of the mail box.
You can use your favorite mail client if you configure it for GreenMail by setting the outgoing mail to the GreenMail SMTP port. By default this is localhost:3025. Of course you can also read created mail by configuring your mail client to use GreenMail POP3 (localhost:3110) or IMAP (localhost:3143). You will probably have to adjust these settings for your specific configuration.
Instead of using your favourite mail client, you can use the JMX GreenMail service for listing all current mails in of a user in the GreenMail server sandbox.
By default GreenMail accepts all incoming emails. If there is no corresponding existing email account, one is automatically created with login and password being the same as the to-address.
Check out the Maven POM. Dependencies include
GreenMail is designed to be used out of the box with no need to generate, sign or install any certificates into your keystore. GreenMail ships with a builtin keystore with a self signed RSA key. Refer to the source code of DummySSLServerSocketFactory for details.
GreenMail supports IMAP quota. Quota capbility can be toggled on and off. For details see ImapServerTest.java quota test
Maven Central contains all GreenMail artifacts.
| Name | GAV |
| GreenMail Core | com.icegreen:greenmail:1.4.1 |
| GreenMail Webapp | com.icegreen:greenmail-webapp:1.4.1:war |
| GreenMail JBoss Service | com.icegreen:greenmail-jboss-service:1.4.1:jboss-sar |
| GreenMail Spring | com.icegreen:greenmail-spring:1.4.1 |
Latest and recommended version is available via Maven repository or as a ZIP from GitHub.
| Name | GAV |
| GreenMail Core | com.icegreen:greenmail:1.4.0 |
| GreenMail Webapp | com.icegreen:greenmail-webapp:1.4.0:war |
| GreenMail JBoss Service | com.icegreen:greenmail-jboss-service:1.4.0:jboss-sar |
| GreenMail Spring | com.icegreen:greenmail-spring:1.4.0 |
Download bundle as ZIP from GitHub.
| Name | GAV |
| GreenMail Core | com.icegreen:greenmail:1.3.1b |
| GreenMail Webapp | com.icegreen:greenmail-webapp:1.3.1b:war |
| GreenMail JBoss Service | com.icegreen:greenmail-jboss-service:1.3.1b:jboss-sar |
| GreenMail Spring | com.icegreen:greenmail-spring:1.3.1b |
You can find older version at the old SourceForge download section