~ubuntu-branches/ubuntu/vivid/postfix/vivid-proposed

« 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 05:26:41 UTC
  • mto: (33.1.4 natty) (39.1.4 oneiric)
  • mto: This revision was merged to the branch mainline in revision 36.
  • Revision ID: james.westby@ubuntu.com-20110222052641-9kcxe1gt157c31j9
Tags: upstream-2.8.0
ImportĀ upstreamĀ versionĀ 2.8.0

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
/*--*/