diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1999-01-05 03:34:55 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1999-01-05 03:34:55 +0000 |
commit | ee409a69c7f931c02aac69553c92817dfa7951db (patch) | |
tree | c26ee26a14577973ee1b0dd739fbdc3dd442bd9b /sink.c | |
parent | 9d4a8e55f814678639d2dc5354000a7e694c3370 (diff) | |
download | fetchmail-ee409a69c7f931c02aac69553c92817dfa7951db.tar.gz fetchmail-ee409a69c7f931c02aac69553c92817dfa7951db.tar.bz2 fetchmail-ee409a69c7f931c02aac69553c92817dfa7951db.zip |
First step towards splitting error from progress messages.
svn path=/trunk/; revision=2326
Diffstat (limited to 'sink.c')
-rw-r--r-- | sink.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -162,7 +162,7 @@ static int smtp_open(struct query *ctl) ctl->destaddr = ctl->smtpaddress ? ctl->smtpaddress : ( ctl->smtphost ? ctl->smtphost : "localhost"); if (outlevel >= O_DEBUG && ctl->smtp_socket != -1) - error(0, 0, _("forwarding to %s"), ctl->smtphost); + progress(0, 0, _("forwarding to %s"), ctl->smtphost); return(ctl->smtp_socket); } @@ -284,7 +284,7 @@ static int send_bouncemail(struct msgblk *msg, int userclass, ts = rfc822timestamp(); if (outlevel >= O_VERBOSE) - error(0, 0, "SMTP: (bounce-message body)"); + progress(0, 0, "SMTP: (bounce-message body)"); /* bouncemail headers */ SockPrintf(sock, "Return-Path: <>"); @@ -637,7 +637,7 @@ int open_sink(struct query *ctl, struct msgblk *msg, if (outlevel >= O_DEBUG) - error(0, 0, _("about to deliver with: %s"), before); + progress(0, 0, _("about to deliver with: %s"), before); #ifdef HAVE_SETEUID /* |