Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@mumumu
Last active April 23, 2020 09:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mumumu/b1e1c39f222e379f62b9d2f1f8f341f5 to your computer and use it in GitHub Desktop.
Save mumumu/b1e1c39f222e379f62b9d2f1f8f341f5 to your computer and use it in GitHub Desktop.

人にメールを転送しつつ、自分のメールボックスに入れる maildropfilter(1) の設定。


下記では駄目


if (....)
{
    to "! wife@example.com"
}

以下のようにしなければいけない(´ー`; )

if (....)
{
    cc "! wife@example.com"
    to ".INBOX"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment