From b54db4158f8dfb521a2464fbf9969bf09ef9d5b2 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Tue, 25 Aug 1998 14:14:05 +0000 Subject: Fixed SDPS support. svn path=/trunk/; revision=2058 --- pop3.c | 26 +++++++++++--------------- 1 file changed, 11 insertions(+), 15 deletions(-) (limited to 'pop3.c') diff --git a/pop3.c b/pop3.c index 0682fd74..33aa3b49 100644 --- a/pop3.c +++ b/pop3.c @@ -551,26 +551,22 @@ static int pop3_fetch(int sock, struct query *ctl, int number, int *lenp) { int linecount = 0; -#define DUMMY_HEADER "Delivered-To: " /* will only get discarded */ -#define DUMMY_LENGTH (sizeof(DUMMY_HEADER) - 1) - strcpy(buf, DUMMY_HEADER); sdps_envto = (char *)NULL; gen_send(sock, "*ENV %d", number); do { - if (gen_recv(sock, buf + DUMMY_LENGTH, sizeof(buf) - DUMMY_LENGTH)) - { - break; - } - linecount++; - if (linecount == 5) - { - sdps_envto = strdup(buf); - error(0, 0, "*ENV returned envelope address %s"); - } + if (gen_recv(sock, buf, sizeof(buf))) + { + break; + } + linecount++; + if (linecount == 5) + { + /* Wrap address with To: <> so nxtaddr() likes it */ + sdps_envto = malloc(strlen(buf)+7); + sprintf(sdps_envto,"To: <%s>",buf); + } } while (buf[0] !='.'); -#undef DUMMY_HEADER -#undef DUMMY_LENGTH } #endif /* SDPS_ENABLE */ -- cgit v1.2.3