X-Git-Url: http://git.marmaro.de/?p=mmh;a=blobdiff_plain;f=sbr%2Faddrsbr.c;h=ea017f4da0cdd908bce55005fcb48a85ef709430;hp=2327e47ad064a6034fa45eb330f9992587abedf5;hb=00b5842e0c5feef345a8e69cdb501f8a4c5c8c0f;hpb=83e04675b53374a1436029a367283d6d4ee05a07 diff --git a/sbr/addrsbr.c b/sbr/addrsbr.c index 2327e47..ea017f4 100644 --- a/sbr/addrsbr.c +++ b/sbr/addrsbr.c @@ -6,6 +6,7 @@ ** complete copyright information. */ +#include #include #include #include @@ -40,9 +41,6 @@ static char *note = NULL; static char err[BUFSIZ]; static char adr[BUFSIZ]; -/* static prototype */ -char *OfficialName(char *); - char * getname(char *addrs) @@ -110,7 +108,7 @@ getm(char *str, char *dfhost, int dftype, int wanthost, char *eresult) if (eresult) strcpy(eresult, "insufficient memory to represent address"); else if (wanthost == AD_HOST) - adios(NULL, "insufficient memory to represent address"); + adios(EX_OSERR, NULL, "insufficient memory to represent address"); return NULL; } @@ -238,13 +236,13 @@ int ismymbox(struct mailname *np) { int oops; - register int len, i; - register char *cp; - register char *pp; + int len, i; + char *cp; + char *pp; char buffer[BUFSIZ]; struct mailname *mp; static char *am = NULL; - static struct mailname mq={NULL}; + static struct mailname mq; /* ** If this is the first call, initialize @@ -376,49 +374,27 @@ local_test: ; return 0; } - -/* -** Moved from hosts.c -- find out the official name of a host -*/ - /* -** In the SendMail world, we really don't know what the valid -** hosts are. We could poke around in the sendmail.cf file, but -** that still isn't a guarantee. As a result, we'll say that -** everything is a valid host, and let SendMail worry about it. -*/ - -#include - - -char * -OfficialName(char *name) + * Insert mailname after element and returns the + * number of parsed addresses. element is set to + * the last parsed addresse. + */ +size_t +getmboxes(char *line, struct mailname **element) { - unsigned char *p; - char *q, site[BUFSIZ]; - struct addrinfo hints, *res; - - static char buffer[BUFSIZ]; + struct mailname *mp, *next; + char *cp; + size_t i = 0; - for (p = name, q = site; *p && (q - site < sizeof(site) - 1); p++, q++) - *q = isupper(*p) ? tolower(*p) : *p; - *q = '\0'; - q = site; + next = (*element)->m_next; - if (!mh_strcasecmp(LocalName(), site)) - return LocalName(); - - memset(&hints, 0, sizeof(hints)); - hints.ai_flags = AI_CANONNAME; - hints.ai_family = PF_UNSPEC; - - if (getaddrinfo(q, NULL, &hints, &res) == 0) { - strncpy(buffer, res->ai_canonname, sizeof(buffer)); - buffer[sizeof(buffer) - 1] = '\0'; - freeaddrinfo(res); - return buffer; + while ((cp = getname(line))) { + mp = getm(cp, NULL, 0, AD_HOST, NULL); + (*element)->m_next = mp; + *element = mp; + i++; } - strncpy(buffer, site, sizeof(buffer)); - return buffer; + (*element)->m_next = next; + return i; }