Merge branch 'CHUNKING'
authorJeremy Harris <jgh146exb@wizmail.org>
Sat, 6 Aug 2016 13:04:45 +0000 (14:04 +0100)
committerJeremy Harris <jgh146exb@wizmail.org>
Sat, 6 Aug 2016 13:04:45 +0000 (14:04 +0100)
1  2 
doc/doc-docbook/spec.xfpt
doc/doc-txt/NewStuff
src/src/deliver.c
src/src/dkim.c
src/src/functions.h
src/src/receive.c
src/src/transport.c
src/src/transports/smtp.c
test/stderr/5410
test/stderr/5420

Simple merge
index 587dc65084331b8370a9e7a75e97493a2b33f8b3,9e2be8372108b895f13570b67a598dd0fb5d0bea..719bedf3179f9e937de9e57eabfa86e77b847d98
@@@ -26,8 -26,11 +26,13 @@@ Version 4.8
      the queue to be used for a message.  A $queue_name variable gives
      visibility.
  
 - 6. The CHUNKING ESMTP extension from RFC 3030.  May give some slight
 + 6. New expansion operators base32/base32d.
 +
++ 7. The CHUNKING ESMTP extension from RFC 3030.  May give some slight
+     performance increase and network load decrease.  Main config option
+     chunking_advertise_hosts, and smtp transport option hosts_try_chunking
+     for control.
  
  Version 4.87
  ------------
Simple merge
diff --cc src/src/dkim.c
Simple merge
Simple merge
Simple merge
index 8e0a802400c0ae6268cb80793e883ae91522e8e7,88d925e39904fd2c98a71345e397f0648ae24fde..a68c22f298bb82df888c5ecbd24f0b104c3d31a4
@@@ -608,10 -616,13 +616,8 @@@ Arguments
    addr                  (chain of) addresses (for extra headers), or NULL;
                            only the first address is used
    fd                    file descriptor to write the message to
-   sendfn              function for output
-   use_crlf            turn NL into CR LF
-   rewrite_rules         chain of header rewriting rules
-   rewrite_existflags    flags for the rewriting rules
++  tctx                  transport context
+   sendfn              function for output (transport or verify)
 -  wck_flags
 -    use_crlf          turn NL into CR LF
 -    use_bdat          callback before chunk flush
 -  rewrite_rules         chain of header rewriting rules
 -  rewrite_existflags    flags for the rewriting rules
 -  chunk_cb            transport callback function for data-chunk commands
  
  Returns:                TRUE on success; FALSE on failure.
  */
index bbfef0632a61181905de5113a62e4770aa67ebe7,25e493433e54c347b55eeb2cf876e4738d2500ff..52b2b913f4fde5eb99e835ceb27c17189145b727
      | (tblock->headers_only   ? topt_no_body : 0)
      | (tblock->return_path_add        ? topt_add_return_path : 0)
      | (tblock->delivery_date_add ? topt_add_delivery_date : 0)
 -    | (tblock->envelope_to_add        ? topt_add_envelope_to : 0),
 +    | (tblock->envelope_to_add        ? topt_add_envelope_to : 0)
    };
  
+   /* If using CHUNKING we need a callback from the generic transport
+   support to us, for the sending of BDAT smtp commands and the reaping
+   of responses.  The callback needs a whole bunch of state so set up
+   a transport-context structure to be passed around. */
+   if (peer_offered & PEER_OFFERED_CHUNKING)
+     {
+     tctx.check_string = tctx.escape_string = NULL;
+     tctx.options |= topt_use_bdat;
+     tctx.chunk_cb = smtp_chunk_cmd_callback;
+     tctx.inblock = &inblock;
+     tctx.outblock = &outblock;
+     tctx.host = host;
+     tctx.first_addr = first_addr;
+     tctx.sync_addr = &sync_addr;
+     tctx.pending_MAIL = pending_MAIL;
+     tctx.pending_BDAT = FALSE;
+     tctx.good_RCPT = ok;
+     tctx.completed_address = &completed_address;
+     tctx.cmd_count = 0;
+     tctx.buffer = buffer;
+     }
+   else
+     tctx.options |= topt_end_dot;
+   /* Save the first address of the next batch. */
+   first_addr = addr;
+   /* Responses from CHUNKING commands go in buffer.  Otherwise,
+   there has not been a response. */
+   buffer[0] = 0;
    sigalrm_seen = FALSE;
    transport_write_timeout = ob->data_timeout;
    smtp_command = US"sending data block";   /* For error messages */
Simple merge
Simple merge