diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2000-02-01 00:00:02 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2000-02-01 00:00:02 +0000 |
commit | dc23eaf3310218404301a5e5df00bd303de0bde7 (patch) | |
tree | 94da3ae9abf62c10160e9f417b264cb65ab7d206 /sink.c | |
parent | 6ae74f9b7a1ec9170efa53cab74e889eb1697a50 (diff) | |
download | fetchmail-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.c | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -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"); |