[Raw Msg Headers][Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Return-Receipt-To: processing




Sorry for previous post, the following diff is more "correct":

--- transports/mailbox/mailbox.c.orig	Thu Nov 21 22:49:10 1996
+++ transports/mailbox/mailbox.c	Thu Dec  5 18:23:41 1996
@@ -2601,10 +2601,10 @@
 	  fclose(efp);
 	} else {
 	  for (cpp = &dfltform[0]; *cpp != NULL; ++cpp)
-	    if (*cpp == 0) {
+	    if (*cpp[0] == 0) {
 	      fprintf(mfp, "\tboundary=\"%s\"\n\n\n",boundarystr);
 	      fprintf(mfp, "--%s\n", boundarystr);
-	      fprintf(mfp, "Content-Type: text/plain\n");
+	      fprintf(mfp, "Content-Type: text/plain\n\n");
 	    } else
 	      fprintf(mfp, "%s\n", *cpp);
 	}