~ubuntu-branches/debian/stretch/alpine/stretch

« back to all changes in this revision

Viewing changes to web/cgi/alpine/filter.tcl

  • Committer: Bazaar Package Importer
  • Author(s): Asheesh Laroia
  • Date: 2010-10-03 15:31:55 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20101003153155-2exypc96j1e8tw0p
Tags: 2.02-1
* New upstream release, based on re-alpine project
* Updated debian/copyright to reflect this fact
* re-alpine removed the non-free from the tarball, so now
  we do not repack the upstream tarball. (Yay!)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id: filter.tcl 391 2007-01-25 03:53:59Z mikes@u.washington.edu $
2
 
# ========================================================================
3
 
# Copyright 2006 University of Washington
4
 
#
5
 
# Licensed under the Apache License, Version 2.0 (the "License");
6
 
# you may not use this file except in compliance with the License.
7
 
# You may obtain a copy of the License at
8
 
#
9
 
#     http://www.apache.org/licenses/LICENSE-2.0
10
 
#
11
 
# ========================================================================
12
 
 
13
 
#  filter.tcl
14
 
#
15
 
#  Purpose:  Common filter management data/routines
16
 
 
17
 
set pattern_id {
18
 
    nickname            {"Nickname"                             freetext}
19
 
    comment             {"Comment"                              freetext}
20
 
}
21
 
 
22
 
set pattern_fields {
23
 
    to                  {"To"                                   freetext}
24
 
    from                {"From"                                 freetext}
25
 
    sender              {"Sender"                               freetext}
26
 
    cc                  {"Cc"                                   freetext}
27
 
    recip               {"Recipients"                           freetext}
28
 
    partic              {"Participants"                         freetext}
29
 
    news                {"Newsgroups"                           freetext}
30
 
    subj                {"Subject"                              freetext}
31
 
    alltext             {"All Text"                             freetext}
32
 
    bodytext            {"Body Text"                            freetext}
33
 
    age                 {"Age Interval"                         freetext}
34
 
    size                {"Size Interval"                        freetext}
35
 
    score               {"Score Interval"                       freetext}
36
 
    keyword             {"Keyword"                              freetext}
37
 
    charset             {"Character Set"                        freetext}
38
 
    headers             {"Extra Headers"                        headers}
39
 
    stat_new            {"Message is New"                       status}
40
 
    stat_rec            {"Message is Recent"                    status}
41
 
    stat_del            {"Message is Deleted"                   status}
42
 
    stat_imp            {"Message is Important"                 status}
43
 
    stat_ans            {"Message is Answered"                  status}
44
 
    stat_8bitsubj       {"Subject contains raw 8bit characters" status}
45
 
    stat_bom            {"Beginning of Month"                   status}
46
 
    stat_boy            {"Beginning of Year"                    status}
47
 
    addrbook            {"Address in address book"              addrbook}
48
 
}
49
 
 
50
 
 
51
 
set pattern_actions {
52
 
    kill {"kill"}
53
 
    folder {"Folder"}
54
 
    move_only_if_not_deleted {"moind"}
55
 
}
56
 
 
57
 
set pattern_colors {
58
 
    indexcolor {indexcolor}
59
 
}
60
 
 
61
 
set pattern_scores {
62
 
    scores {scores}
63
 
}