~ubuntu-branches/ubuntu/maverick/postfix/maverick-security

« back to all changes in this revision

Viewing changes to src/global/int_filt.c

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones, Wietse Venema, LaMont Jones
  • Date: 2009-06-03 14:17:08 UTC
  • mfrom: (1.1.22 upstream)
  • Revision ID: james.westby@ubuntu.com-20090603141708-o9u59xlor7nmd2x1
[Wietse Venema]

* New upstream release: 2.6.2~rc1

[LaMont Jones]

* move postfix-add-{filter,policy} manpages to section 8, and deliver
* provide: default-mta on ubuntu

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
/*      the internal_mail_filter_classes configuration parameter.
15
15
/*
16
16
/*      Specify one of the following:
17
 
/* .IP INT_FILT_NONE
 
17
/* .IP INT_FILT_MASK_NONE
18
18
/*      Mail that must be excluded from inspection (address probes, etc.).
19
 
/* .IP INT_FILT_NOTIFY
 
19
/* .IP INT_FILT_MASK_NOTIFY
20
20
/*      Postmaster notifications from the smtpd(8) and smtp(8)
21
21
/*      protocol adapters.
22
 
/* .IP INT_FILT_BOUNCE
 
22
/* .IP INT_FILT_MASK_BOUNCE
23
23
/*      Delivery status notifications from the bounce(8) server.
24
24
/* DIAGNOSTICS
25
25
/*      Fatal: invalid mail category name.
54
54
int     int_filt_flags(int class)
55
55
{
56
56
    static const NAME_MASK table[] = {
57
 
        "notify", INT_FILT_NOTIFY,
58
 
        "bounce", INT_FILT_BOUNCE,
 
57
        INT_FILT_CLASS_NOTIFY, INT_FILT_MASK_NOTIFY,
 
58
        INT_FILT_CLASS_BOUNCE, INT_FILT_MASK_BOUNCE,
59
59
        0,
60
60
    };
61
61
    int     filtered_classes = 0;