~ubuntu-branches/ubuntu/saucy/postfix/saucy

« back to all changes in this revision

Viewing changes to src/smtpd/smtpd_expand.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:
 
1
/*++
 
2
/* NAME
 
3
/*      smtpd_expand 3h
 
4
/* SUMMARY
 
5
/*      SMTP server macro expansion
 
6
/* SYNOPSIS
 
7
/*      #include <smtpd.h>
 
8
/*      #include <smtpd_expand.h>
 
9
/* DESCRIPTION
 
10
/* .nf
 
11
 
 
12
 /*
 
13
  * Utility library.
 
14
  */
 
15
#include <vstring.h>
 
16
#include <mac_expand.h>
 
17
 
 
18
 /*
 
19
  * External interface.
 
20
  */
 
21
VSTRING *smtpd_expand_filter;
 
22
void    smtpd_expand_init(void);
 
23
const char *smtpd_expand_lookup(const char *, int, char *);
 
24
int     smtpd_expand(SMTPD_STATE *, VSTRING *, const char *, int);
 
25
 
 
26
/* LICENSE
 
27
/* .ad
 
28
/* .fi
 
29
/*      The Secure Mailer license must be distributed with this software.
 
30
/* AUTHOR(S)
 
31
/*      Wietse Venema
 
32
/*      IBM T.J. Watson Research
 
33
/*      P.O. Box 704
 
34
/*      Yorktown Heights, NY 10598, USA
 
35
/*--*/