This commit is contained in:
Chris Mann 2023-07-23 10:56:25 +02:00
parent b6bcb80f0c
commit f0a3f5ea67
2 changed files with 16 additions and 16 deletions

26
gpas.go
View file

@ -46,18 +46,18 @@ func passwordLost(user User, config *ConfigFile, ldapConn *ldap.Conn) error {
log.Printf("Il n'y a pas d'utilisateur qui correspond %v", searchReq) log.Printf("Il n'y a pas d'utilisateur qui correspond %v", searchReq)
return errors.New("Il n'y a pas d'utilisateur qui correspond") return errors.New("Il n'y a pas d'utilisateur qui correspond")
} }
// Préparation du courriel à envoyer Préparation du courriel à envoyer
// code := "GPas" code := "GPas"
// templateMail := template.Must(template.ParseFiles(templatePath + "/invite_mail.txt")) templateMail := template.Must(template.ParseFiles(templatePath + "/invite_mail.txt"))
// buf := bytes.NewBuffer([]byte{}) buf := bytes.NewBuffer([]byte{})
// templateMail.Execute(buf, &CodeMailFields{ templateMail.Execute(buf, &CodeMailFields{
// To: user.OtherMailbox, To: user.OtherMailbox,
// From: config.MailFrom, From: config.MailFrom,
// InviteFrom: "GPas", InviteFrom: "GPas",
// Code: code, Code: code,
// WebBaseAddress: config.WebAddress, WebBaseAddress: config.WebAddress,
// }) })
message := []byte("Hi " + user.OtherMailbox) // message := []byte("Hi " + user.OtherMailbox)
log.Printf("Sending mail to: %s", user.OtherMailbox) log.Printf("Sending mail to: %s", user.OtherMailbox)
// var auth sasl.Client = nil // var auth sasl.Client = nil
// if config.SMTPUsername != "" { // if config.SMTPUsername != "" {
@ -65,7 +65,7 @@ func passwordLost(user User, config *ConfigFile, ldapConn *ldap.Conn) error {
// } // }
auth := smtp.PlainAuth("", config.SMTPUsername, config.SMTPPassword, config.SMTPServer) auth := smtp.PlainAuth("", config.SMTPUsername, config.SMTPPassword, config.SMTPServer)
log.Printf("auth: %v", auth) log.Printf("auth: %v", auth)
err = smtp.SendMail(config.SMTPServer+":587", auth, config.SMTPUsername, []string{user.OtherMailbox}, message) err = smtp.SendMail(config.SMTPServer+":587", auth, config.SMTPUsername, []string{user.OtherMailbox}, buf)
if err != nil { if err != nil {
log.Printf("email send error %v", err) log.Printf("email send error %v", err)
return err return err

View file

@ -1,13 +1,13 @@
From: {{.From}} From: {{.From}}
To: {{.To}} To: {{.To}}
Subject: Code d'invitation Deuxfleurs Subject: Code d'invitation GVoisin.com
Content-type: text/plain; charset=utf-8 Content-type: text/plain; charset=utf-8
Vous avez été invité à créer un compte sur Deuxfleurs par {{.InviteFrom}} :) Vous avez été invité à créer un compte sur GVoisin.com par {{.InviteFrom}} :)
Pour créer votre compte, rendez-vous à l'addresse suivante: Pour créer votre compte, rendez-vous à l'addresse suivante:
{{.WebBaseAddress}}/invitation/{{.Code}} {{.WebBaseAddress}}/invitation/{{.Code}}
À bientôt sur Deuxfleurs ! À bientôt sur GVoisin.com !