SubEtha SMTP.
A multithreaded standalone SMTP mail server implementation and test harness..
Here is the list of declaration for subethasmtp. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.subethamail</groupId> <artifactId>subethasmtp</artifactId> <version>2.1.0</version> </dependency>
If you think this Maven repository POM file listing for subethasmtp is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:The Apache Software License, Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.txt.
The subethasmtp-2.1.0 has 4 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
JEE | activation 1.1 JavaBeans Activation Framework (JAF) is a standard extension to the Java platform that lets you take advantage of standard services to: determine the type of an arbitrary piece of data; encapsulate access to it; discover the operations available on it; and instantiate the appropriate bean to perfor... | 369 |
Network | mail 1.4 The JavaMail API provides a platform-independent and protocol-independent framework to build mail and messaging applications. | 461 |
The following table lists the most popular artifacts which are depending on subethasmtp-2.1.0. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Log | logback-classic 1.0.0 Logback: the reliable, generic, fast and flexible logging library for Java. | 65 |
Log | logback-classic 1.1.2 logback-classic module | 162 |
Log | logback-classic 0.9.28 Logback: the reliable, generic, fast and flexible logging library for Java. | 22 |
Log | logback-classic 1.1.0 logback-classic module | 6 |
Log | logback-classic 1.0.12 logback-classic module | 32 |
Log | logback-classic 1.0.7 logback-classic module | 135 |
Log | logback-classic 1.1.1 logback-classic module | 32 |
Log | logback-classic 1.0.9 logback-classic module | 107 |
Log | logback-classic 1.0.6 logback-classic module | 19 |
Log | logback-classic 0.9.29 Logback: the reliable, generic, fast and flexible logging library for Java. | 51 |
Log | logback-classic 1.0.11 logback-classic module | 46 |
Log | logback-classic 0.9.27 Logback: the reliable, generic, fast and flexible logging library for Java. | 6 |
Log | logback-classic 0.9.30 Logback: the reliable, generic, fast and flexible logging library for Java. | 34 |
Log | logback-classic 1.0.10 logback-classic module | 36 |
Log | logback-classic 1.0.13 logback-classic module | 299 |
The following plugins are used in the subethasmtp-2.1.0.jar
The following packages are defined in the subethasmtp-2.1.0.jar
org.subethamail.smtp org.subethamail.smtp.auth org.subethamail.smtp.command org.subethamail.smtp.server org.subethamail.smtp.server.io org.subethamail.smtp.util org.subethamail.wiser
Here is the content of the POM file.
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>org.subethamail</groupId> <artifactId>subethasmtp</artifactId> <version>2.1.0</version> <name>SubEtha SMTP</name> <description>A multithreaded standalone SMTP mail server implementation and test harness.</description> <url>http://subethasmtp.tigris.org/</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <dependencies> <!-- Activation --> <dependency> <groupId>javax.activation</groupId> <artifactId>activation</artifactId> <version>1.1</version> </dependency> <!-- Mail --> <dependency> <groupId>javax.mail</groupId> <artifactId>mail</artifactId> <version>1.4</version> </dependency> <!-- Mina Filter SSL, Integration, Core (supplied by both of the two former) --> <dependency> <groupId>org.apache.mina</groupId> <artifactId>mina-filter-ssl</artifactId> <version>1.1.7</version> </dependency> <dependency> <groupId>org.apache.mina</groupId> <artifactId>mina-integration-jmx</artifactId> <version>1.1.7</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-eclipse-plugin</artifactId> <configuration> <downloadSources>true</downloadSources> </configuration> </plugin> </plugins> </build> </project>