authelia/internal/notification/const.go

19 lines
259 B
Go
Raw Normal View History

package notification
const (
fileNotifierMode = 0600
fileNotifierHeader = "Date: %s\nRecipient: %s\nSubject: %s\n"
)
const (
smtpPortSUBMISSIONS = 465
)
const (
posixNewLine = "\n"
)
var (
posixDoubleNewLine = []byte(posixNewLine + posixNewLine)
)