Skip to content

Instantly share code, notes, and snippets.

@endocrimes
Created November 1, 2018 11:01
Show Gist options
  • Save endocrimes/fda68d1ef93dfd9cd6834bebc28f6eae to your computer and use it in GitHub Desktop.
Save endocrimes/fda68d1ef93dfd9cd6834bebc28f6eae to your computer and use it in GitHub Desktop.
if
allof(
address :is "From" "[email protected]",
address :is "Cc" "[email protected]"
)
{
fileinto "INBOX.notifications.github.direct-mention";
}
elsif
allof(
address :is "From" "[email protected]",
address :is "Cc" "[email protected]"
)
{
fileinto "INBOX.notifications.github.team-mentions";
}
elsif address :is "Cc" "[email protected]" {
addflag "\\Seen";
fileinto "INBOX.notifications.github.my-activity";
removeflag "\\Seen";
}
elsif
anyof(
address :is "Cc" "[email protected]",
address :is "Cc" "[email protected]"
)
{
fileinto "INBOX.notifications.github.assignments";
}
elsif
anyof(
address :is "Cc" "[email protected]",
address :is "Cc" "[email protected]",
address :is "Cc" "[email protected]",
address :is "Cc" "[email protected]"
)
{
fileinto "INBOX.notifications.github.other";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment