Skip to content
  • This project
    • Loading...
  • Sign in

John McEleney / mailutils

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • mailutils
  • sieve
  • examples
  • t-fileinto.sv
  • Sam Roberts's avatar
    Commiting my example/test sieve scripts so I can maintain them with cvs · 12f56edd ...
    12f56edd
    (I use them at work and home).
    Sam Roberts authored 2001-08-03 01:37:11 +0000
t-fileinto.sv 128 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14
require "fileinto";

if allof(
		size :over 10 ,
		exists "x-caffeine"
	)
{
	fileinto "jetfuel";
}
else
{
	fileinto "decaf";
}