Skip to content

Instantly share code, notes, and snippets.

@koki-h
Last active December 18, 2015 04:58
Show Gist options
  • Select an option

  • Save koki-h/6e8caef074c63cabc2ba to your computer and use it in GitHub Desktop.

Select an option

Save koki-h/6e8caef074c63cabc2ba to your computer and use it in GitHub Desktop.
自分から届いたメールを.Sentディレクトリに自動的に移動する
#差出人が自分の場合は送信済みフォルダにメールを移動する
myaddress=`pwd | cut -d/ -f5` #自分のメールアドレス
if ( /^From:\s*(.*)${myaddress}@example.com/) #この例では自ドメインはexample.comとする
{
to "maildir/.Sent/"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment