From 50628af5fdf554c1fc23b11deb6133b1c5a05ab0 Mon Sep 17 00:00:00 2001 From: James Hillyerd Date: Mon, 30 May 2022 10:20:51 -0700 Subject: [PATCH] README.md: Use IPv4 notation for localhost (#771) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7ede42c..44dc7d0 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ match mailer.send(&email) { ## Testing The `lettre` tests require an open mail server listening locally on port 2525 and the `sendmail` command. If you have python installed -such a server can be launched with `python -m smtpd -n -c DebuggingServer localhost:2525` +such a server can be launched with `python -m smtpd -n -c DebuggingServer 127.0.0.1:2525` Alternatively only unit tests can be run by doing `cargo test --lib`.