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

« back to all changes in this revision

Viewing changes to src/oqmgr/qmgr.c

Tags: upstream-2.3.1
ImportĀ upstreamĀ versionĀ 2.3.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
116
116
/*      one would request \fBA F D\fR; in order to notify the queue manager
117
117
/*      of the arrival of new mail one would request \fBI\fR.
118
118
/* STANDARDS
119
 
/* .ad
120
 
/* .fi
121
 
/*      None. The \fBqmgr\fR(8) daemon does not interact with the outside world.
 
119
/*      RFC 3463 (Enhanced status codes)
 
120
/*      RFC 3464 (Delivery status notifications)
122
121
/* SECURITY
123
122
/* .ad
124
123
/* .fi
220
219
/*      How much time a Postfix daemon process may take to handle a
221
220
/*      request before it is terminated by a built-in watchdog timer.
222
221
/* .IP "\fBdefer_transports (empty)\fR"
223
 
/*      The names of message delivery transports that should not be delivered
224
 
/*      to unless someone issues "\fBsendmail -q\fR" or equivalent.
 
222
/*      The names of message delivery transports that should not deliver mail
 
223
/*      unless someone issues "\fBsendmail -q\fR" or equivalent.
 
224
/* .IP "\fBdelay_logging_resolution_limit (2)\fR"
 
225
/*      The maximal number of digits after the decimal point when logging
 
226
/*      sub-second delay values.
225
227
/* .IP "\fBhelpful_warnings (yes)\fR"
226
228
/*      Log warnings about problematic configuration settings, and provide
227
229
/*      helpful suggestions.
326
328
int     var_local_con_lim;              /* XXX */
327
329
int     var_proc_limit;
328
330
bool    var_verp_bounce_off;
329
 
bool    var_sender_routing;
330
331
int     var_qmgr_clog_warn_time;
331
332
 
332
333
static QMGR_SCAN *qmgr_incoming;
557
558
    static CONFIG_BOOL_TABLE bool_table[] = {
558
559
        VAR_ALLOW_MIN_USER, DEF_ALLOW_MIN_USER, &var_allow_min_user,
559
560
        VAR_VERP_BOUNCE_OFF, DEF_VERP_BOUNCE_OFF, &var_verp_bounce_off,
560
 
        VAR_SENDER_ROUTING, DEF_SENDER_ROUTING, &var_sender_routing,
561
561
        0,
562
562
    };
563
563