{{define "title"}}Allow/Block List - Email Server{{end}} {{define "page_title"}}Allow/Block List{{end}} {{define "content"}}

Allow/Block List {{.mailbox.Email}}

Back to Mailboxes
A pattern is either an exact address (spam@evil.com) or a whole domain (@evil.com). Block entries reject mail at RCPT time; allow entries bypass spam scoring entirely for that sender.
Allow List
{{if .allow}}
    {{range .allow}}
  • {{.Pattern}}
  • {{end}}
{{else}}

No allow-list entries.

{{end}}
Block List
{{if .block}}
    {{range .block}}
  • {{.Pattern}}
  • {{end}}
{{else}}

No block-list entries.

{{end}}
{{end}}