maddy/internal/target/received.go

89 lines
2.5 KiB
Go

package target
import (
"context"
"errors"
"net"
"strings"
"time"
"github.com/foxcpp/maddy/framework/address"
"github.com/foxcpp/maddy/framework/dns"
"github.com/foxcpp/maddy/framework/module"
)
func SanitizeForHeader(raw string) string {
return strings.Replace(raw, "\n", "", -1)
}
func GenerateReceived(ctx context.Context, msgMeta *module.MsgMetadata, ourHostname, mailFrom string) (string, error) {
if msgMeta.Conn == nil {
return "", errors.New("can't generate Received for a locally generated message")
}
builder := strings.Builder{}
// Empirically guessed value that should be enough to fit
// the entire value in most cases.
builder.Grow(256 + len(msgMeta.Conn.Hostname))
if !msgMeta.DontTraceSender && (strings.Contains(msgMeta.Conn.Proto, "SMTP") ||
strings.Contains(msgMeta.Conn.Proto, "LMTP")) {
// INTERNATIONALIZATION: See RFC 6531 Section 3.7.3.
hostname, err := dns.SelectIDNA(msgMeta.SMTPOpts.UTF8, msgMeta.Conn.Hostname)
if err == nil {
builder.WriteString("from ")
builder.WriteString(hostname)
}
if tcpAddr, ok := msgMeta.Conn.RemoteAddr.(*net.TCPAddr); ok {
builder.WriteString(" (")
if msgMeta.Conn.RDNSName != nil {
rdnsName, err := msgMeta.Conn.RDNSName.GetContext(ctx)
if err == nil && rdnsName != nil && rdnsName.(string) != "" {
// INTERNATIONALIZATION: See RFC 6531 Section 3.7.3.
encoded, err := dns.SelectIDNA(msgMeta.SMTPOpts.UTF8, rdnsName.(string))
if err == nil {
builder.WriteString(encoded)
builder.WriteRune(' ')
}
}
}
builder.WriteRune('[')
builder.WriteString(tcpAddr.IP.String())
builder.WriteString("])")
}
}
if ourHostname != "" {
ourHostname, err := dns.SelectIDNA(msgMeta.SMTPOpts.UTF8, ourHostname)
if err == nil {
builder.WriteString(" by ")
builder.WriteString(SanitizeForHeader(ourHostname))
}
}
if mailFrom != "" {
// INTERNATIONALIZATION: See RFC 6531 Section 3.7.3.
mailFrom, err := address.SelectIDNA(msgMeta.SMTPOpts.UTF8, mailFrom)
if err == nil {
builder.WriteString(" (envelope-sender <")
builder.WriteString(SanitizeForHeader(mailFrom))
builder.WriteString(">)")
}
}
if msgMeta.Conn.Proto != "" {
builder.WriteString(" with ")
if msgMeta.SMTPOpts.UTF8 {
builder.WriteString("UTF8")
}
builder.WriteString(msgMeta.Conn.Proto)
}
builder.WriteString(" id ")
builder.WriteString(msgMeta.ID)
builder.WriteString("; ")
builder.WriteString(time.Now().Format(time.RFC1123Z))
return strings.TrimSpace(builder.String()), nil
}