From e0ca7a370a20acf2732cbe4cd0e93d1751fb5366 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Wed, 27 Nov 1996 17:34:00 +0000 Subject: Added the wildcard option. svn path=/trunk/; revision=575 --- fetchmail.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'fetchmail.h') diff --git a/fetchmail.h b/fetchmail.h index 451b3234..194b472c 100644 --- a/fetchmail.h +++ b/fetchmail.h @@ -63,6 +63,7 @@ struct query /* per-host data */ char servername [HOSTLEN+1]; struct idlist *localnames; + int wildcard; /* true if unmatched names should be passed through */ int protocol; int port; int authenticate; @@ -105,7 +106,8 @@ struct query #endif /* HAVE_GETHOSTBYNAME */ }; -#define MULTIDROP(ctl) ((ctl)->localnames && (ctl)->localnames->next) +#define MULTIDROP(ctl) (ctl->wildcard || \ + ((ctl)->localnames && (ctl)->localnames->next)) struct method { -- cgit v1.2.3