Skip to content

Latest commit

 

History

History
103 lines (67 loc) · 2.29 KB

README.md

File metadata and controls

103 lines (67 loc) · 2.29 KB

Outlook 2013

  • Root: "Inbox"
  • to recognize standard folder names delete .pst/.ost file after account setup
  • (Outlook 2007) empty folder subscription, see: mail/courier-outlook-subscribe-bug.sh

Set up Google Apps mailing

https://toolbox.googleapps.com/apps/checkmx/

Mail account migration

see: mail/imapsync

Email sending and receiving

  • SSL?
  • headers: From, from name, To, Reply-to, Return-path, SMTP "MAIL FROM:"

Courier catchall address

http://www.courier-mta.org/makehosteddomains.html

Online email tests

Spamassassin test

spamassassin --test-mode -D < msg.eml
# specific test, see: man spamassassin-run
spamassassin --test-mode -D dkim < msg-signed.eml
opendkim -vvv -t msg-signed.eml

Bulk email

https://support.google.com/mail/answer/81126?hl=en

Sender ID

SPF (MAIL FROM:)

  • setup
  • check
  • monitor

DKIM

ADSP

DMARC

Specs: https://datatracker.ietf.org/doc/draft-kucherawy-dmarc-base/?include_text=1

Headers

  • List-Unsubscribe:
  • Precedence: bulk
  • Return-Path:, Reply-to:, From:, To:, Subject:
  • SMTP "MAIL FORM: from@addre.ss"

Content

  • online version
  • who (email address) is subscribed
  • contact
  • unsubscribe link
  • HTML and plain payload

White lists

Courier kitchen sink

  • echo > /etc/courier/aliasdir/.courier-kitchensink
  • alias: any.address@any-domain.net: kitchensink@localhost

Scan Class C network

for I in $(seq 1 255); do host -t A 1.2.3.${I}; done