diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-11-07 21:16:32 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-11-07 21:16:32 +0000 |
commit | b1b6ddf9079453caa64484f31887cb4273c045bc (patch) | |
tree | 1b373f96732a206faa0017de5dc82532f46a08cc /driver.c | |
parent | ad27c0a72aac927955335303e6cfab5f3ee58ad0 (diff) | |
download | fetchmail-b1b6ddf9079453caa64484f31887cb4273c045bc.tar.gz fetchmail-b1b6ddf9079453caa64484f31887cb4273c045bc.tar.bz2 fetchmail-b1b6ddf9079453caa64484f31887cb4273c045bc.zip |
Added LMTP support.
svn path=/trunk/; revision=2177
Diffstat (limited to 'driver.c')
-rw-r--r-- | driver.c | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1234,7 +1234,7 @@ static void send_size_warnings(struct query *ctl) */ if (open_warning_by_mail(ctl)) return; - stuff_warning_line(ctl, OVERHD); + stuff_warning(ctl, OVERHD); if (run.poll_interval == 0) max_warning_poll_count = 0; @@ -1248,7 +1248,7 @@ static void send_size_warnings(struct query *ctl) { nbr = current->val.status.mark; size = atoi(current->id); - stuff_warning_line(ctl, + stuff_warning(ctl, "\t%d msg %d octets long skipped by fetchmail.", nbr, size); } @@ -1499,15 +1499,15 @@ const struct method *proto; /* protocol method table */ if (run.poll_interval && !ctl->authfailcount && !open_warning_by_mail(ctl)) { - stuff_warning_line(ctl, + stuff_warning(ctl, "Subject: fetchmail authentication failed\r\n"); - stuff_warning_line(ctl, + stuff_warning(ctl, "Fetchmail could not get mail from %s@%s.", ctl->remotename, ctl->server.truename); - stuff_warning_line(ctl, + stuff_warning(ctl, "The attempt to get authorization failed."); - stuff_warning_line(ctl, + stuff_warning(ctl, "This probably means your password is invalid."); close_warning_by_mail(ctl); ctl->authfailcount++; |