~ubuntu-branches/debian/sid/postfix/sid

« back to all changes in this revision

Viewing changes to src/verify/verify.c

  • Committer: Package Import Robot
  • Author(s): LaMont Jones
  • Date: 2012-03-20 13:47:16 UTC
  • mfrom: (1.1.34) (39.1.16 trunk)
  • Revision ID: package-import@ubuntu.com-20120320134716-o62kosz3odzt1rh6
Tags: 2.9.1-2
Drop unnecessary openssl check, since sonames will save us.

Show diffs side-by-side

added added

removed removed

Lines of Context:
78
78
/*
79
79
/*      The text below provides only a parameter summary. See
80
80
/*      \fBpostconf\fR(5) for more details including examples.
 
81
/* PROBE MESSAGE CONTROLS
 
82
/* .ad
 
83
/* .fi
 
84
/* .IP "\fBaddress_verify_sender ($double_bounce_sender)\fR"
 
85
/*      The sender address to use in address verification probes; prior
 
86
/*      to Postfix 2.5 the default was "postmaster".
 
87
/* .PP
 
88
/*      Available with Postfix 2.9 and later:
 
89
/* .IP "\fBaddress_verify_sender_ttl (0s)\fR"
 
90
/*      The time between changes in the time-dependent portion of address
 
91
/*      verification probe sender addresses.
81
92
/* CACHE CONTROLS
82
93
/* .ad
83
94
/* .fi
84
95
/* .IP "\fBaddress_verify_map (see 'postconf -d' output)\fR"
85
96
/*      Lookup table for persistent address verification status
86
97
/*      storage.
87
 
/* .IP "\fBaddress_verify_sender ($double_bounce_sender)\fR"
88
 
/*      The sender address to use in address verification probes; prior
89
 
/*      to Postfix 2.5 the default was "postmaster".
90
98
/* .IP "\fBaddress_verify_positive_expire_time (31d)\fR"
91
99
/*      The time after which a successful probe expires from the address
92
100
/*      verification cache.
221
229
#include <post_mail.h>
222
230
#include <data_redirect.h>
223
231
#include <verify_clnt.h>
 
232
#include <verify_sender_addr.h>
224
233
 
225
234
/* Server skeleton. */
226
235
 
237
246
int     var_verify_neg_exp;
238
247
int     var_verify_neg_try;
239
248
int     var_verify_scan_cache;
240
 
char   *var_verify_sender;
241
249
 
242
250
 /*
243
251
  * State.
490
498
            if (msg_verbose)
491
499
                msg_info("PROBE %s status=%d probed=%ld updated=%ld",
492
500
                         STR(addr), addr_status, now, updated);
493
 
            post_mail_fopen_async(strcmp(var_verify_sender, "<>") == 0 ?
494
 
                                  "" : var_verify_sender, STR(addr),
 
501
            post_mail_fopen_async(make_verify_sender_addr(), STR(addr),
495
502
                                  INT_FILT_MASK_NONE,
496
503
                                  DEL_REQ_FLAG_MTA_VRFY,
497
504
                                  (VSTRING *) 0,
699
706
        VAR_VERIFY_NEG_EXP, DEF_VERIFY_NEG_EXP, &var_verify_neg_exp, 1, 0,
700
707
        VAR_VERIFY_NEG_TRY, DEF_VERIFY_NEG_TRY, &var_verify_neg_try, 1, 0,
701
708
        VAR_VERIFY_SCAN_CACHE, DEF_VERIFY_SCAN_CACHE, &var_verify_scan_cache, 0, 0,
 
709
        VAR_VERIFY_SENDER_TTL, DEF_VERIFY_SENDER_TTL, &var_verify_sender_ttl, 0, 0,
702
710
        0,
703
711
    };
704
712