From 80cf60914ca9db298b732778947492d2e8699e68 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20M=C3=BChl?= Date: Fri, 2 Jun 2017 11:37:03 +0700 Subject: [PATCH] Allow bs flag --- cmd/cmd.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/cmd.go b/cmd/cmd.go index 7988e70..b37c2b0 100644 --- a/cmd/cmd.go +++ b/cmd/cmd.go @@ -43,6 +43,7 @@ func Go() { // override defaults from cli flags flag.StringVar(&smtpAddr, "smtp-addr", smtpAddr, "SMTP server address") flag.StringVarP(&fromAddr, "from", "f", fromAddr, "SMTP sender") + flag.BoolP("long-bs", "bs", true, "Ignored. This flag exists for sendmail compatibility.") flag.BoolP("long-i", "i", true, "Ignored. This flag exists for sendmail compatibility.") flag.BoolP("long-o", "o", true, "Ignored. This flag exists for sendmail compatibility.") flag.BoolP("long-t", "t", true, "Ignored. This flag exists for sendmail compatibility.")