Skip to content

Commit

Permalink
added .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
alash3al committed Nov 12, 2018
1 parent 5f96506 commit 85b8781
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
bin
5 changes: 5 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,10 @@ func main() {
Handler: handler,
Name: *flagServerName,
}
fmt.Println("start the smtp server on address: ", *flagListenAddr)
fmt.Println("specified maximum body size: ", *flagMaxMessageSize, " bytes")
fmt.Println("specified server name: ", *flagServerName)
fmt.Println("specified webhook: ", *flagWebhook)
fmt.Println("validating the incoming FROM header: ", *flagStrictValidation)
fmt.Println(srv.ListenAndServe())
}

0 comments on commit 85b8781

Please sign in to comment.