Last active
August 29, 2015 14:04
-
-
Save tekwiz/8f2ca30016d8c6450c2d to your computer and use it in GitHub Desktop.
GMail Trello Filter
This file contains hidden or 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
<?xml version='1.0' encoding='UTF-8' ?> | |
<feed xmlns='http://www.w3.org/2005/Atom' | |
xmlns:apps='http://schemas.google.com/apps/2006'> | |
<title>Mail Filters</title> | |
<entry> | |
<category term='filter'></category> | |
<title>Mail Filter</title> | |
<content></content> | |
<apps:property name='from' value='trello.com'/> | |
<!-- | |
Set the subject value to your Trello board title. Note: you should | |
surround the title with double-quotes to force an exact-match in the | |
email subject. Example: | |
<apps:property name='subject' value='"ACME Development"'/> | |
--> | |
<apps:property name='subject' value=''/> | |
<apps:property name='shouldMarkAsRead' value='true'/> | |
<apps:property name='shouldArchive' value='true'/> | |
<!-- | |
Set the forwardTo value to your target email address. Example: | |
<apps:property name='forwardTo' value='[email protected]'/> | |
--> | |
<apps:property name='forwardTo' value=''/> | |
</entry> | |
</feed> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment