forked from voodoodyne/subethasmtp
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
34 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Run a demo SubethaSMTP Server # | ||
|
||
1. Download the most recent `subethasmtp.jar` file from the releases section on Github | ||
2. Run the command `java -cp subetha.jar org.sebethamail.examples.BasicSMTPServer` | ||
3. Use `TELNET` or an SMTP client to connect to the now-running server on TCP port 25000. | ||
|
||
|
||
# Enable logging # | ||
|
||
Note that SubethaSMTP uses the SLF4J logging framework. When the program starts up, it will look for a compatible logging connector in the classpath. If none is found it will print a warning message to the console and then silently toss any log messages generated by the program. | ||
|
||
If you want to see the logging messages, you need a compatible connector in the classpath. | ||
|
||
You can download connectors from the [SLF4J website](http://www.slf4j.org/download.html). The `Simple` connector is very simple and just prints log messages to stderr. Note that the version of the connector must match the version that SubethaSMTP was built against. | ||
|
||
|
||
# Editing in Eclipse | ||
|
||
1. Clone the repository from GitHub to your local machine. | ||
2. Open Eclipse and do `Import->Maven->Existing Maven Projects` | ||
3. Right click on the `POM.XML` file and select `Run As->Maven Install` | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.