Skip to content

Commit 85b8781

Browse files
committed
added .gitignore
1 parent 5f96506 commit 85b8781

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
bin

main.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,10 @@ func main() {
1313
Handler: handler,
1414
Name: *flagServerName,
1515
}
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)
1621
fmt.Println(srv.ListenAndServe())
1722
}

0 commit comments

Comments
 (0)