summaryrefslogtreecommitdiff
path: root/sieve/examples/ex-2.5.1.sv
blob: 921b465e693846e0e7b780827bd99cd8ba7bdbd7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  require "fileinto";
  
  if anyof (
       not exists ["From", "Date"],
       header :contains "from" "fool@example.edu"
       )
  {
     discard;
  }
  if header :contains "from" "coyote"
  {
     fileinto "popbox"; # "pop://sam:passwed@fw";
  }

Return to:

Send suggestions and report system problems to the System administrator.