Created
May 11, 2016 16:34
-
-
Save SimonSapin/36484911e5fe1c96ac648bd2e1617ac4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if address :is ["To"] ["[email protected]"] { | |
if header :is ["X-GitHub-Reason"] ["manual", "author", "comment", "mention", "assign"] { | |
fileinto "Mozilla.Servo.mentions"; | |
stop; | |
} | |
if header :matches ["Subject"] "Re: *" { | |
fileinto "Mozilla.Servo.replies"; | |
stop; | |
} | |
fileinto "Mozilla.Servo"; | |
stop; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment