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

« back to all changes in this revision

Viewing changes to src/lmtp/lmtp.c

Tags: upstream-2.2.6
ImportĀ upstreamĀ versionĀ 2.2.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
64
64
/* CONFIGURATION PARAMETERS
65
65
/* .ad
66
66
/* .fi
67
 
/*      Changes to \fBmain.cf\fR are picked up automatically, as lmtp(8)
 
67
/*      Changes to \fBmain.cf\fR are picked up automatically, as \fBlmtp\fR(8)
68
68
/*      processes run for only a limited amount of time. Use the command
69
69
/*      "\fBpostfix reload\fR" to speed up a change.
70
70
/*
71
71
/*      The text below provides only a parameter summary. See
72
 
/*      postconf(5) for more details including examples.
 
72
/*      \fBpostconf\fR(5) for more details including examples.
73
73
/* COMPATIBILITY CONTROLS
74
74
/* .ad
75
75
/* .fi
157
157
/* .IP "\fBlmtp_data_done_timeout (600s)\fR"
158
158
/*      The LMTP client time limit for sending the LMTP ".", and for
159
159
/*      receiving the server response.
160
 
/* .IP "\fBlmtp_rset_timeout (120s)\fR"
161
 
/*      The LMTP client time limit for sending the RSET command, and for
162
 
/*      receiving the server response.
 
160
/* .IP "\fBlmtp_rset_timeout (20s)\fR"
 
161
/*      The LMTP client time limit for sending the RSET command, and
 
162
/*      for receiving the server response.
163
163
/* .IP "\fBlmtp_quit_timeout (300s)\fR"
164
164
/*      The LMTP client time limit for sending the QUIT command, and for
165
165
/*      receiving the server response.
200
200
/*      bounce(8), delivery status reports
201
201
/*      qmgr(8), queue manager
202
202
/*      postconf(5), configuration parameters
 
203
/*      master(5), generic daemon options
203
204
/*      services(4), Internet services and aliases
204
205
/*      master(8), process manager
205
206
/*      syslogd(8), system logging
330
331
     * Note: `state' was made global (to this file) so that we can cache
331
332
     * connections and so that we can close a cached connection via the
332
333
     * MAIL_SERVER_EXIT function (cleanup). The alloc for `state' is
333
 
     * performed in the MAIL_SERVER_PRE_INIT function (pre_init).
 
334
     * performed in the MAIL_SERVER_POST_INIT function (post_init).
334
335
     * 
335
336
     */
336
337
    why = vstring_alloc(100);