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

« back to all changes in this revision

Viewing changes to src/smtp/smtp.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:
121
121
#define SMTP_FEATURE_PIX_DELAY_DOTCRLF  (1<<17) /* PIX smtp fixup mode */
122
122
#define SMTP_FEATURE_XFORWARD_PORT      (1<<18)
123
123
#define SMTP_FEATURE_EARLY_TLS_MAIL_REPLY (1<<19)       /* CVE-2009-3555 */
 
124
#define SMTP_FEATURE_XFORWARD_IDENT     (1<<20)
124
125
 
125
126
 /*
126
127
  * Features that passivate under the endpoint.
146
147
#define SMTP_MISC_FLAG_CONN_LOAD        (1<<6)
147
148
#define SMTP_MISC_FLAG_CONN_STORE       (1<<7)
148
149
#define SMTP_MISC_FLAG_COMPLETE_SESSION (1<<8)
 
150
#define SMTP_MISC_FLAG_PREF_IPV6        (1<<9)
 
151
#define SMTP_MISC_FLAG_PREF_IPV4        (1<<10)
149
152
 
150
153
#define SMTP_MISC_FLAG_CONN_CACHE_MASK \
151
154
        (SMTP_MISC_FLAG_CONN_LOAD | SMTP_MISC_FLAG_CONN_STORE)
176
179
 
177
180
extern MAPS *smtp_generic_maps;         /* make internal address valid */
178
181
extern int smtp_ext_prop_mask;          /* address externsion propagation */
 
182
extern unsigned smtp_dns_res_opt;       /* DNS query flags */
179
183
 
180
184
#ifdef USE_TLS
181
185