All Projects → greenmail-mail-test → Greenmail

greenmail-mail-test / Greenmail

Licence: apache-2.0
Official master for the Greenmail project

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Greenmail

GemBox.Email.Examples
Read and write email files (MSG, EML, MHTML), and compose, receive and send email messages using POP, IMAP, SMTP, and EWS in a simple and efficient way.
Stars: ✭ 18 (-95.75%)
Mutual labels:  imap, smtp
yggmail
End-to-end encrypted email for the mesh networking age
Stars: ✭ 72 (-83.02%)
Mutual labels:  imap, smtp
fs2-mail
asynchronous library for sending and receiving mail via fs2._
Stars: ✭ 39 (-90.8%)
Mutual labels:  imap, smtp
Mailcow Dockerized
mailcow: dockerized - 🐮 + 🐋 = 💕
Stars: ✭ 4,573 (+978.54%)
Mutual labels:  imap, smtp
Excision-Mail
Fullstack, security focused mailserver based on OpenSMTPD for OpenBSD using ansible
Stars: ✭ 108 (-74.53%)
Mutual labels:  imap, smtp
skirnir
Skirnir Email Server
Stars: ✭ 31 (-92.69%)
Mutual labels:  imap, smtp
MailRipV3
SMTP and IMAP checker / cracker for mailpass combolists with a user-friendly GUI, automated inbox test and many more features.
Stars: ✭ 28 (-93.4%)
Mutual labels:  imap, smtp
mnm-hammer
mnm implements TMTP protocol. Let Internet sites message members directly, instead of unreliable, insecure email. Contributors welcome! (Client)
Stars: ✭ 66 (-84.43%)
Mutual labels:  imap, smtp
ESP-Mail-Client
⚡️Arduino Mail Client Library to send, read and get incoming mail notification for ESP32, ESP8266 and SAMD21 devices. The library also supported other Arduino devices using Clients interfaces e.g. WiFiClient, EthernetClient, and GSMClient.
Stars: ✭ 78 (-81.6%)
Mutual labels:  imap, smtp
dokku-posteio
Poste.io plugin for Dokku
Stars: ✭ 27 (-93.63%)
Mutual labels:  imap, smtp
fortran-curl
Fortran 2008 interface bindings to libcurl
Stars: ✭ 25 (-94.1%)
Mutual labels:  imap, smtp
Mailkit
A cross-platform .NET library for IMAP, POP3, and SMTP.
Stars: ✭ 4,477 (+955.9%)
Mutual labels:  smtp, imap
Mail
The Hoa\Mail library.
Stars: ✭ 24 (-94.34%)
Mutual labels:  imap, smtp
Rainloop Webmail
Simple, modern & fast web-based email client
Stars: ✭ 3,618 (+753.3%)
Mutual labels:  smtp, imap
fapro
Fake Protocol Server
Stars: ✭ 1,338 (+215.57%)
Mutual labels:  imap, smtp
autoconfig
The ISPDB, Thunderbird's database of mail configuration files.
Stars: ✭ 25 (-94.1%)
Mutual labels:  imap, smtp
imail
small mail server
Stars: ✭ 88 (-79.25%)
Mutual labels:  imap, smtp
Matrix-EmailBridge
A bridge written in Golang to receive and write emails in matrix
Stars: ✭ 101 (-76.18%)
Mutual labels:  imap, smtp
docker-protonmail-bridge
Run ProtonMail Bridge in a docker container
Stars: ✭ 34 (-91.98%)
Mutual labels:  imap, smtp
Deltachat Core Rust
Delta Chat Rust Core library, used by Android/iOS/desktop apps and bindings
Stars: ✭ 300 (-29.25%)
Mutual labels:  smtp, imap

GreenMail

GreenMail is an open source, intuitive and easy-to-use test suite of email servers for testing purposes. Supports SMTP, POP3, IMAP with SSL socket support, and can be run either embedded in a junit test, as a standalone Java application or as a docker container. GreenMail is the first and only library that offers a test framework for both receiving and retrieving emails from Java.

Go to the project site for details:

The GreenMail project welcomes any contribution, so go ahead and fork/open a pull request! See the guidelines below.

Note: GreenMail recently moved to Github and was previously hosted on SF.

Development Build status Maven Central StackOverflow Docker Pulls javadoc

  • Build GreenMail from source

    mvn clean install -Pdocker

    Make sure you got Maven 3.6 or higher, and run a JDK 8 or newer. If you want to skip building the docker image, leave out the -Pdocker profile option.

    If you want to skip the long running tests, use the Maven option -DskipITs .

  • Build the Maven site (and the optional example report)

    mvn site -Psite

  • Build and deploy a release

    For rolling a release including version increment and release upload, do

    mvn clean release:prepare -Prelease,release-ossrh,docker,docker-tag-latest mvn release:perform -Prelease,release-ossrh,docker,docker-tag-latest

    For a tagged release and deployment to Sonatype OpenSource Repository Hosting and later syncing to Maven Central, do

    mvn clean deploy -Prelease,release-ossrh,docker,docker-tag-latest

    Note: Do only use docker-tag-latest profile if you really want the tag latest, e.g. for newest release of highest version.

  • Build and deploy a snapshot

    For a Maven Snapshot deployment to Sonatype, do

    mvn clean deploy -Prelease-ossrh,docker

  • Check Sonar report

Roadmap

  • 1.6 (current)
    • Bugfix / maintenance
  • 1.7
    • Deprecations (no GreenMailRule in greenmail-core, ...)
    • Jersey 3.x (jakarta)
  • 2.x
    • JakartaMail 2.x

Contribution guidelines

We really appreciate your contribution! To make it easier for integrating your contribution, have a look at the following guidelines.

Be concise

Try to keep your changes focused. Please avoid (major) refactorings and avoid re-formatting existing code. A good check is looking at the diff of the your pull requrest. Also, please refer to the open issue you're fixing by including a reference in your commit message.

Code formatter

Please set your code formatter to use 4 spaces for indentation of Java files (not tabs) and to two spaces for xml files (like the pom.xml). As a general best practise, your contribution should adhere to existing code style.

Bill of Materials

We have the pom.xml in the root where we set the versions of all dependencies to keep them consistent among subprojects. Please do not add any version tags into the child pom.xml files.

Please also do not introduce new dependencies as we try to keep these to a minimum. If you think you require a new dependencies or dependency update, discuss this up front with committers.

Starting your pull request

The best strategy for opening a pull request after a fork is to add the this repository as the "upstream" to your .git/config such as:

[remote "upstream"]
url = https://github.com/greenmail-mail-test/greenmail.git
fetch = +refs/heads/*:refs/remotes/upstream/*

Then you fetch "upstream" and create a new branch at upstream/master (name it issue-XXX or something like that). Now you can add commits on that branch and then create a pull request for that branch (after pushing it to your github). That way commits are isolated for one feature.

Tests for your pull request

Please also create a test for every feature you add. We know that currently there aren't many tests but in the medium term we want to increase test coverage.

Misc

Many thanks to JProfiler and Jetbrains for supporting this project with free OSS licenses

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].