diff options
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index da2e715..07fab65 100644 --- a/src/main.rs +++ b/src/main.rs @@ -114,7 +114,7 @@ async fn lmtp_deliver( let rcpt = cfg.rcpt.unwrap_or(to); expect!("220"); - io!(wr.write_all(b"LHLO alpha\r\n")); + io!(wr.write_all(b"LHLO localhost\r\n")); expect!("250"); io!(wr.write_all(format!("MAIL FROM:<{from}>\r\n").as_bytes())); expect!("250"); |
