aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-10-24 05:42:43 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-10-24 05:42:43 +0000
commitf1c7b68c3c5edc45d51478f4ca681d529b2d8e16 (patch)
tree877f3966e847a7e56acccbca6f854caf23b692cc /fetchmail.c
parentc870802ae6af1f6473b20c976a1573dbcce681df (diff)
downloadfetchmail-f1c7b68c3c5edc45d51478f4ca681d529b2d8e16.tar.gz
fetchmail-f1c7b68c3c5edc45d51478f4ca681d529b2d8e16.tar.bz2
fetchmail-f1c7b68c3c5edc45d51478f4ca681d529b2d8e16.zip
Don't need to pacify exim any more.
svn path=/trunk/; revision=372
Diffstat (limited to 'fetchmail.c')
-rw-r--r--fetchmail.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/fetchmail.c b/fetchmail.c
index 08a762b4..3e5a991d 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -180,18 +180,6 @@ char **argv;
else
strcpy(hostp->localname, user);
- /*
- * Turn the localname into a full Internet address...
- * otherwise exim (somebody's smail equivalent) becomes
- * annoyed much later when the SMTP interface tries to
- * ship it a local name in a RCPT TO command.
- */
- if (strchr(hostp->localname, '@') == 0)
- {
- strcat(hostp->localname, "@");
- strcat(hostp->localname, hostp->smtphost);
- }
-
/* check that delivery is going to a real local user */
if ((pw = getpwnam(user)) == (struct passwd *)NULL)
exit(PS_SYNTAX); /* has to be from bad rc file */