de.inoxio:mailster-smtp

A NIO SMTP server API written in Java

License

License

GroupId

GroupId

de.inoxio
ArtifactId

ArtifactId

mailster-smtp
Last Version

Last Version

1.0.6
Release Date

Release Date

Type

Type

jar
Description

Description

de.inoxio:mailster-smtp
A NIO SMTP server API written in Java
Project URL

Project URL

https://github.com/inoxio/MailsterSMTP
Source Code Management

Source Code Management

http://github.com/inoxio/MailsterSMTP/tree/master

Download mailster-smtp

How to add to project

<!-- https://jarcasting.com/artifacts/de.inoxio/mailster-smtp/ -->
<dependency>
    <groupId>de.inoxio</groupId>
    <artifactId>mailster-smtp</artifactId>
    <version>1.0.6</version>
</dependency>
// https://jarcasting.com/artifacts/de.inoxio/mailster-smtp/
implementation 'de.inoxio:mailster-smtp:1.0.6'
// https://jarcasting.com/artifacts/de.inoxio/mailster-smtp/
implementation ("de.inoxio:mailster-smtp:1.0.6")
'de.inoxio:mailster-smtp:jar:1.0.6'
<dependency org="de.inoxio" name="mailster-smtp" rev="1.0.6">
  <artifact name="mailster-smtp" type="jar" />
</dependency>
@Grapes(
@Grab(group='de.inoxio', module='mailster-smtp', version='1.0.6')
)
libraryDependencies += "de.inoxio" % "mailster-smtp" % "1.0.6"
[de.inoxio/mailster-smtp "1.0.6"]

Dependencies

compile (1)

Group / Artifact Type Version
org.apache.mina : mina-core jar 2.1.4

runtime (3)

Group / Artifact Type Version
org.slf4j : slf4j-api jar 1.7.30
com.sun.mail : jakarta.mail jar 2.0.0
commons-validator : commons-validator jar 1.7

Project Modules

There are no modules declared in this project.

MailsterSMTP

Download

A NIO SMTP server API written in Java

This is a fork from the original (https://github.com/edeoliveira/MailsterSMTP)

Setup repository

repositories {
    mavenCentral()
} 

Dependency

compile("de.inoxio:mailster-smtp:1.0.6")

Start a server

var server = new SMTPServer(new MessageListenerAdapter() {
    @Override
    public void deliver(SessionContext ctx, String from, String recipient, InputStream data) {
        System.out.println("New message received");
    }
});

Check for new dependencies

./gradlew dependencyUpdates -Drevision=release

Release

Change version in build.gradle.kts, README.md and SMTPServerConfig.java and issue:

./gradlew bintrayUpload
de.inoxio

inoxio Quality Services GmbH

Versions

Version
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2