Guest User

Untitled

a guest
Nov 1st, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. if
  2. allof(
  3. address :is "From" "[email protected]",
  4. address :is "Cc" "[email protected]"
  5. )
  6. {
  7. fileinto "INBOX.notifications.github.direct-mention";
  8. }
  9. elsif
  10. allof(
  11. address :is "From" "[email protected]",
  12. address :is "Cc" "[email protected]"
  13. )
  14. {
  15. fileinto "INBOX.notifications.github.team-mentions";
  16. }
  17. elsif address :is "Cc" "[email protected]" {
  18. addflag "\\Seen";
  19. fileinto "INBOX.notifications.github.my-activity";
  20. removeflag "\\Seen";
  21. }
  22. elsif
  23. anyof(
  24. address :is "Cc" "[email protected]",
  25. address :is "Cc" "[email protected]"
  26. )
  27. {
  28. fileinto "INBOX.notifications.github.assignments";
  29. }
  30. elsif
  31. anyof(
  32. address :is "Cc" "[email protected]",
  33. address :is "Cc" "[email protected]",
  34. address :is "Cc" "[email protected]",
  35. address :is "Cc" "[email protected]"
  36. )
  37. {
  38. fileinto "INBOX.notifications.github.other";
  39. }
Add Comment
Please, Sign In to add comment