comparison config/config.go @ 338:dabe189369ad

Configuration: Port numbers are integers. Mail port defaults to 465 (SSL).
author Sascha L. Teichmann <teichmann@intevation.de>
date Fri, 03 Aug 2018 22:20:06 +0200
parents bd292a554b6e
children 3cfab707f909
comparison
equal deleted inserted replaced
337:e48da6f427c8 338:dabe189369ad
59 59
60 fl.String("service-user", "postgres", "user to do service tasks") 60 fl.String("service-user", "postgres", "user to do service tasks")
61 fl.String("service-password", "", "password of user to do service tasks") 61 fl.String("service-password", "", "password of user to do service tasks")
62 62
63 fl.String("mail-host", "localhost", "server to send mail with") 63 fl.String("mail-host", "localhost", "server to send mail with")
64 fl.Uint("mail-port", 464, "port of server to send mail with") 64 fl.Uint("mail-port", 465, "port of server to send mail with")
65 fl.String("mail-user", "gemma", "user to send mail with") 65 fl.String("mail-user", "gemma", "user to send mail with")
66 fl.String("mail-password", "", "password of user to send mail with") 66 fl.String("mail-password", "", "password of user to send mail with")
67 fl.String("mail-from", "noreplay@localhost", "from line of mails") 67 fl.String("mail-from", "noreplay@localhost", "from line of mails")
68 fl.String("mail-helo", "localhost", "name of server to send mail from.") 68 fl.String("mail-helo", "localhost", "name of server to send mail from.")
69 69