X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=sbr%2Faddrsbr.c;h=ea017f4da0cdd908bce55005fcb48a85ef709430;hb=ec019f1e02bfc457c156a81bd6cc879e89644c21;hp=4876d09fa1c473b82a8233a032916ca1ed1e8d09;hpb=e6a372ac5444651ff2f156580b01e6a6ee8e30de;p=mmh diff --git a/sbr/addrsbr.c b/sbr/addrsbr.c index 4876d09..ea017f4 100644 --- a/sbr/addrsbr.c +++ b/sbr/addrsbr.c @@ -6,6 +6,7 @@ ** complete copyright information. */ +#include #include #include #include @@ -107,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; } @@ -235,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 @@ -372,3 +373,28 @@ local_test: ; return 0; } + +/* + * 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) +{ + struct mailname *mp, *next; + char *cp; + size_t i = 0; + + next = (*element)->m_next; + + while ((cp = getname(line))) { + mp = getm(cp, NULL, 0, AD_HOST, NULL); + (*element)->m_next = mp; + *element = mp; + i++; + } + + (*element)->m_next = next; + return i; +}