Sophie

Sophie

distrib > Fedora > 13 > x86_64 > media > updates > by-pkgid > 9d4c71bd5a34a5c439fb1f50efd4a0e4 > files > 5

ingo-1.2.5-1.fc13.noarch.rpm

<?php
/**
 * $Horde: ingo/config/fields.php.dist,v 1.5.12.1 2007-12-20 14:05:46 jan Exp $
 *
 * This file defines the set of default match items to display when creating
 * a new filter rule.
 * These fields will only appear if the driver can handle it.
 * Users will have to manually insert the name of the header on the rule
 * creation screen if it does not appear in this list.
 *
 * Format of $ingo_fields array:
 *   'LABEL' => array(
 *     MANDATORY:
 *     'label' => (string)  The gettext label for the entry.
 *     'type'  => (integer) The type of test. Either:
 *                          INGO_STORAGE_TYPE_HEADER  --  Header test
 *                          INGO_STORAGE_TYPE_SIZE    --  Message size test
 *                          INGO_STORAGE_TYPE_BODY    --  Body test
 *     OPTIONAL:
 *     'tests' => (array)   Force these tests to be used only.
 *                          If not set, will use the fields generally
 *                          available to the driver.
 *   )
 */
$ingo_fields = array(
  'To' => array(
    'label' => _("To"),
    'type' => INGO_STORAGE_TYPE_HEADER
  ),
  'Subject' => array(
    'label' => _("Subject"),
    'type' => INGO_STORAGE_TYPE_HEADER
  ),
  'Sender' => array(
    'label' => _("Sender"),
    'type' => INGO_STORAGE_TYPE_HEADER
  ),
  'From' => array(
    'label' => _("From"),
    'type' => INGO_STORAGE_TYPE_HEADER
  ),
  'Cc' => array(
    'label' => _("Cc"),
    'type' => INGO_STORAGE_TYPE_HEADER
  ),
  'Bcc' => array(
    'label' => _("Bcc"),
    'type' => INGO_STORAGE_TYPE_HEADER
  ),
  'Resent-from' => array(
    'label' => _("Resent-From"),
    'type' => INGO_STORAGE_TYPE_HEADER
  ),
  'Resent-to' => array(
    'label' => _("Resent-To"),
    'type' => INGO_STORAGE_TYPE_HEADER
  ),
  'List-Id' => array(
    'label' => _("List-ID"),
    'type' => INGO_STORAGE_TYPE_HEADER
  ),
  'Received' => array(
    'label' => _("Received"),
    'type' => INGO_STORAGE_TYPE_HEADER
  ),
  'X-Spam-Level' => array(
    'label' => _("X-Spam-Level"),
    'type' => INGO_STORAGE_TYPE_HEADER
  ),
  'X-Spam-Score' => array(
    'label' => _("X-Spam-Score"),
    'type' => INGO_STORAGE_TYPE_HEADER
  ),
  'X-Spam-Status' => array(
    'label' => _("X-Spam-Status"),
    'type' => INGO_STORAGE_TYPE_HEADER
  ),
  'X-Priority' => array(
    'label' => _("X-Priority"),
    'type' => INGO_STORAGE_TYPE_HEADER
  ),
  'To,Cc,Bcc,Resent-to' => array(
    'label' => _("Destination (To,Cc,Bcc,etc)"),
    'type' => INGO_STORAGE_TYPE_HEADER
  ),
  'From,Sender,Reply-to,Resent-from' => array(
    'label' => _("Source (From,Reply-to,etc)"),
    'type' => INGO_STORAGE_TYPE_HEADER
  ),
  'To,Cc,Bcc,Resent-to,From,Sender,Reply-to,Resent-from' => array(
    'label' => _("Participant (From,To,etc)"),
    'type' => INGO_STORAGE_TYPE_HEADER
  ),
  'Size' => array(
    'label' => _("Size"),
    'type' => INGO_STORAGE_TYPE_SIZE,
    'tests' => array('greater than', 'less than')
  ),
  'Body' => array(
    'label' => _("Body"),
    'type' => INGO_STORAGE_TYPE_BODY,
    'tests' => array('contains', 'not contain', 'is', 'not is', 'begins with',
                     'not begins with', 'ends with', 'not ends with', 'regex',
                     'matches', 'not matches')
  )
);