An atproto PDS written in Go
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix from

Hailey 6310f91c 02dc7fbe

+1 -1
+1 -1
server/server.go
··· 340 340 } else { 341 341 mail := mailyak.New(args.SmtpHost+":"+args.SmtpPort, smtp.PlainAuth("", args.SmtpUser, args.SmtpPass, args.SmtpHost)) 342 342 mail.From(s.config.SmtpEmail) 343 - mail.From(s.config.SmtpName) 343 + mail.FromName(s.config.SmtpName) 344 344 345 345 s.mail = mail 346 346 s.mailLk = &sync.Mutex{}