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

« back to all changes in this revision

Viewing changes to src/global/int_filt.h

  • 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
 /*
15
15
  * External interface.
16
16
  */
17
 
#define INT_FILT_NONE           (0)
18
 
#define INT_FILT_NOTIFY         (1<<1)
19
 
#define INT_FILT_BOUNCE         (1<<2)
 
17
#define INT_FILT_MASK_NONE              (0)
 
18
#define INT_FILT_MASK_NOTIFY            (1<<1)
 
19
#define INT_FILT_MASK_BOUNCE            (1<<2)
20
20
 
21
21
extern int int_filt_flags(int);
22
22