From 0b916e9e3663695177768804728855a82d6d217b Mon Sep 17 00:00:00 2001 From: David Levine Date: Mon, 9 Jul 2012 21:25:36 -0500 Subject: [PATCH] Correction to previous commit, 704bdde497da69854846d51d86c440fc980c5489, to restore the behavior when using SMTP and with any blind addresses. Don't quit the SMTP session between sending the message and bcc's, but instead reset it. --- uip/post.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/uip/post.c b/uip/post.c index cc44a1d..9c9bec9 100644 --- a/uip/post.c +++ b/uip/post.c @@ -1532,7 +1532,7 @@ post (char *file, int bccque, int talk, char *envelope) close (fd); fflush (stdout); - sm_end (OK); + sm_end (!(msgflags & MINV) || bccque ? OK : DONE); sigoff (); if (verbose) { -- 1.7.10.4