Documentation ¶
Index ¶
Constants ¶
View Source
const ( // The maximum total length of a reverse-path or forward-path is 256 LimitPath = 256 // The maximum total length of a user name or other local-part is 64 // however, here we double it, since a few major services don't respect that and go over LimitLocalPart = 64 * 2 // //The maximum total length of a domain name or number is 255 LimitDomain = 255 // The minimum total number of recipients that must be buffered is 100 LimitRecipients = 100 )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Parser ¶
type Parser struct { PathParams [][]string ADL []string LocalPart string Domain string NullPath bool // contains filtered or unexported fields }
Parse Email Addresses according to https://tools.ietf.org/html/rfc5321
func (*Parser) MailFrom ¶
MailFrom accepts the following syntax: Reverse-path [SP Mail-parameters] CRLF
func (*Parser) QcontentSMTP ¶
qtextSMTP / quoted-pairSMTP quoted-pairSMTP = %d92 %d32-126 qtextSMTP = %d32-33 / %d35-91 / %d93-126
Click to show internal directories.
Click to hide internal directories.