We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f96506 commit 85b8781Copy full SHA for 85b8781
.gitignore
@@ -0,0 +1 @@
1
+bin
main.go
@@ -13,5 +13,10 @@ func main() {
13
Handler: handler,
14
Name: *flagServerName,
15
}
16
+ fmt.Println("start the smtp server on address: ", *flagListenAddr)
17
+ fmt.Println("specified maximum body size: ", *flagMaxMessageSize, " bytes")
18
+ fmt.Println("specified server name: ", *flagServerName)
19
+ fmt.Println("specified webhook: ", *flagWebhook)
20
+ fmt.Println("validating the incoming FROM header: ", *flagStrictValidation)
21
fmt.Println(srv.ListenAndServe())
22
0 commit comments