aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1996-11-27 17:34:00 +0000
committerEric S. Raymond <esr@thyrsus.com>1996-11-27 17:34:00 +0000
commite0ca7a370a20acf2732cbe4cd0e93d1751fb5366 (patch)
tree21f3f9fafddbb204d2fce5a5d31af2367388aa59 /driver.c
parent5c09cbae3e433ed47a60ef02f3146926ac915094 (diff)
downloadfetchmail-e0ca7a370a20acf2732cbe4cd0e93d1751fb5366.tar.gz
fetchmail-e0ca7a370a20acf2732cbe4cd0e93d1751fb5366.tar.bz2
fetchmail-e0ca7a370a20acf2732cbe4cd0e93d1751fb5366.zip
Added the wildcard option.
svn path=/trunk/; revision=575
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/driver.c b/driver.c
index 0dcdf8fc..bb810a2f 100644
--- a/driver.c
+++ b/driver.c
@@ -226,6 +226,9 @@ struct idlist **xmit_names; /* list of recipient names parsed out */
}
lname = idpair_find(&ctl->localnames, cp);
+ if (!lname && ctl->wildcard)
+ lname = cp;
+
if (lname != (char *)NULL)
{
if (outlevel == O_VERBOSE)