A smtp server unconditionally accepts any incoming messages
This product is to create a simple SMTP server without any validation. It serves as the gate of a mail delivery system.
You can use telnet to connect to the server and send a mail. The default port is 25.
telnet localhost 25
Then you can send a mail like this:
HELO localhost
MAIL FROM: [email protected]
RCPT TO: [email protected]
DATA
Subject: Test mail
From: [email protected]
To: [email protected]
This is a test mail.
.
QUIT
The initial code of this project is branched from fake-smtp-server v2.3.0. I've changed the package names to match with my other products but many thanks to the original authors.