~ubuntu-branches/ubuntu/trusty/postfix/trusty-updates

« back to all changes in this revision

Viewing changes to src/cleanup/cleanup.h

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones
  • Date: 2011-02-22 11:20:43 UTC
  • mfrom: (1.1.27 upstream)
  • Revision ID: james.westby@ubuntu.com-20110222112043-c34ht219w3ybrilr
Tags: 2.8.0-2
* a little more lintian cleanup
* Fix missing format strings in smtp-sink.c

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
#include <string_list.h>
34
34
#include <cleanup_user.h>
35
35
#include <header_body_checks.h>
 
36
#include <dsn_mask.h>
36
37
 
37
38
 /*
38
39
  * Milter library.
283
284
  */
284
285
extern void cleanup_addr_sender(CLEANUP_STATE *, const char *);
285
286
extern void cleanup_addr_recipient(CLEANUP_STATE *, const char *);
286
 
extern void cleanup_addr_bcc(CLEANUP_STATE *, const char *);
 
287
extern void cleanup_addr_bcc_dsn(CLEANUP_STATE *, const char *, const char *, int);
 
288
 
 
289
#define NO_DSN_ORCPT    ((char *) 0)
 
290
#define NO_DSN_NOTIFY   DSN_NOTIFY_NEVER
 
291
#define DEF_DSN_NOTIFY  (0)
 
292
 
 
293
#define cleanup_addr_bcc(state, addr) \
 
294
    cleanup_addr_bcc_dsn((state), (addr), NO_DSN_ORCPT, NO_DSN_NOTIFY)
287
295
 
288
296
 /*
289
297
  * cleanup_bounce.c.