Skip to content

Instantly share code, notes, and snippets.

@gwire
Last active April 18, 2024 15:20
Show Gist options
  • Save gwire/ea97360062bc9b729e783bc9bff6e54f to your computer and use it in GitHub Desktop.
Save gwire/ea97360062bc9b729e783bc9bff6e54f to your computer and use it in GitHub Desktop.
Sieve script to file mails containing iCal events
require["mime","fileinto"];
## IANA registered type is "text/calendar", but some sources use "application/ics"
if header :mime :anychild :subtype "Content-Type" ["calendar","ics"] {
fileinto "calendar";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment