Jay Lee writes:
the Return-Path no longer gets added, has the code changed? I've tried
turning backscatter on but that doesn't seem to suppress these messages
(possibly because they are local until maildrop CCs them?). What should
be happening here? Thanks for any clues,
The problem is that the original envelope sender is not available to
maildrop any more, at this time.
I am leaning towards using a null return path for forwarded mail. If the
forwarded mail bounces, it'll get lost forever, but I guess if you set up
mail forwarding, and it doesn't work, it's on your head.
The following patch to maildrop should force a null sender for forwarded
mail. Haven't really tested it, but it's a no-brainer.
Index: maildrop/deliver.C
===================================================================
RCS file: /cvsroot/courier/courier/maildrop/maildrop/deliver.C,v
retrieving revision 1.13
diff -U3 -r1.13 deliver.C
--- maildrop/deliver.C 30 Jan 2005 14:50:37 -0000 1.13
+++ maildrop/deliver.C 28 Mar 2005 23:35:53 -0000
@@ -64,7 +64,7 @@
cmdbuf=sendmail;
- cmdbuf += ' ';
+ cmdbuf += " -f '' ";
cmdbuf += mailbox+1;
}
else