Python One-Liner: Debug Mail Server
·1 min
Need a pretend mail server that you can use for debugging? Try this:
```bash
python -m smtpd -n -c DebuggingServer localhost:1025
It listens on port 1025 for local connections.
Need a pretend mail server that you can use for debugging? Try this:
```bash
python -m smtpd -n -c DebuggingServer localhost:1025
It listens on port 1025 for local connections.