X-Git-Url: http://git.marmaro.de/?a=blobdiff_plain;f=uip%2Finc.c;h=7886411cdf4892278ef4f2d1a20d6121d28112d1;hb=ad3d5c36b428d68a3a2cad85168ec90bf25c8932;hp=9c8049ab3c9ff820e99408a64a319dcf2bb43247;hpb=365996ecb8f3c61c9912988ee0d9a99d616e33c8;p=mmh diff --git a/uip/inc.c b/uip/inc.c index 9c8049a..7886411 100644 --- a/uip/inc.c +++ b/uip/inc.c @@ -3,6 +3,10 @@ * inc.c -- incorporate messages from a maildrop into a folder * * $Id$ + * + * This code is Copyright (c) 2002, by the authors of nmh. See the + * COPYRIGHT file in the root directory of the nmh distribution for + * complete copyright information. */ #ifdef MAILGROUP @@ -40,7 +44,7 @@ #include #include #include -#include +#include #include #include @@ -245,6 +249,7 @@ main (int argc, char **argv) #ifdef POP int nmsgs, nbytes, p = 0; char *pass = NULL; + char *MAILHOST_env_variable; #endif #ifdef MHE @@ -253,7 +258,6 @@ main (int argc, char **argv) #ifdef HESIOD struct hes_postoffice *po; - char *tmphost; #endif /* absolutely the first thing we do is save our privileges, @@ -275,7 +279,6 @@ main (int argc, char **argv) argp = arguments; #ifdef POP -# ifdef HESIOD /* * Scheme is: * use MAILHOST environment variable if present, @@ -283,8 +286,9 @@ main (int argc, char **argv) * If that fails, use the default (if any) * provided by mts.conf in mts_init() */ - if ((tmphost = getenv("MAILHOST")) != NULL) - pophost = tmphost; + if ((MAILHOST_env_variable = getenv("MAILHOST")) != NULL) + pophost = MAILHOST_env_variable; +# ifdef HESIOD else if ((po = hes_getmailhost(getusername())) != NULL && strcmp(po->po_type, "POP") == 0) pophost = po->po_host;