aboutsummaryrefslogtreecommitdiffstats
path: root/sink.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2000-02-01 00:00:02 +0000
committerEric S. Raymond <esr@thyrsus.com>2000-02-01 00:00:02 +0000
commitdc23eaf3310218404301a5e5df00bd303de0bde7 (patch)
tree94da3ae9abf62c10160e9f417b264cb65ab7d206 /sink.c
parent6ae74f9b7a1ec9170efa53cab74e889eb1697a50 (diff)
downloadfetchmail-dc23eaf3310218404301a5e5df00bd303de0bde7.tar.gz
fetchmail-dc23eaf3310218404301a5e5df00bd303de0bde7.tar.bz2
fetchmail-dc23eaf3310218404301a5e5df00bd303de0bde7.zip
Debian buglist cleanup.
svn path=/trunk/; revision=2727
Diffstat (limited to 'sink.c')
-rw-r--r--sink.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/sink.c b/sink.c
index d6e25d89..2ead73d3 100644
--- a/sink.c
+++ b/sink.c
@@ -282,14 +282,19 @@ static int send_bouncemail(struct query *ctl, struct msgblk *msg,
|| SMTP_data(sock) != SM_OK)
return(FALSE);
+ /* our first duty is to keep the sacred foo counters turning... */
sprintf(boundary,
- "om-mani-padme-hum-%d-%d-%ld",
+ "foo-mani-padme-hum-%d-%d-%ld",
(int)getpid(), (int)getppid(), time((time_t *)NULL));
ts = rfc822timestamp();
if (outlevel >= O_VERBOSE)
report(stdout, "SMTP: (bounce-message body)\n");
+ else
+ /* this will usually go to sylog... */
+ report(stderr, "mail from %s bounced to %s\n",
+ daemon_name, bounce_to);
/* bouncemail headers */
SockPrintf(sock, "Return-Path: <>\r\n");