Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/config/email.go
akuma06 bd59f3afd1 Forgot to move Token config
Tokens config are now in config/tokens.go
2017-05-29 17:39:13 +02:00

25 lignes
Pas d'EOL
716 o
Go

package config
import "time"
// TODO: Perform email configuration at runtime
// Future hosts shouldn't have to rebuild the binary to update a setting
const (
// SendEmail : Enable Email
SendEmail = true
// EmailFrom : email address by default
EmailFrom = "donotrespond@nyaa.pantsu.cat"
// EmailTestTo : when testing to who send email
EmailTestTo = ""
// EmailHost : Host of mail server
EmailHost = "localhost"
// EmailUsername : Username needed for the connection
EmailUsername = ""
// EmailPassword : Password needed for the connection
EmailPassword = ""
// EmailPort : Mail Server port
EmailPort = 465
// EmailTimeout : Timeout for waiting server response
EmailTimeout = 10 * time.Second
)