diff options
author | Eric S. Raymond <esr@thyrsus.com> | 2001-04-23 07:38:27 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2001-04-23 07:38:27 +0000 |
commit | 650e0bdca1f75632795b5518c432e3d8b5f02465 (patch) | |
tree | 4226d24ff6e8d2eedec0325c104e6b24410e4a30 /driver.c | |
parent | c9ed21946a25b9a075b09504092232a8a0e06a89 (diff) | |
download | fetchmail-650e0bdca1f75632795b5518c432e3d8b5f02465.tar.gz fetchmail-650e0bdca1f75632795b5518c432e3d8b5f02465.tar.bz2 fetchmail-650e0bdca1f75632795b5518c432e3d8b5f02465.zip |
Ready to try HH's Kerberos patch.
svn path=/trunk/; revision=3292
Diffstat (limited to 'driver.c')
-rw-r--r-- | driver.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1846,7 +1846,8 @@ const int maxfetch; /* maximum number of messages to fetch */ { ctl->wehavesentauthnote = 1; stuff_warning(ctl, - _("Subject: fetchmail authentication failed\r\n")); + _("Subject: fetchmail authentication failed on %s@%s\r\n"), + ctl->remotename, ctl->server.truename); stuff_warning(ctl, _("Fetchmail could not get mail from %s@%s.\r\n"), ctl->remotename, @@ -1910,7 +1911,8 @@ is restored.")); if (!open_warning_by_mail(ctl, (struct msgblk *)NULL)) { stuff_warning(ctl, - _("Subject: fetchmail authentication OK\r\n")); + _("Subject: fetchmail authentication OK on %s@%s\r\n"), + ctl->remotename, ctl->server.truename); stuff_warning(ctl, _("Fetchmail was able to log into %s@%s.\r\n"), ctl->remotename, |