aboutsummaryrefslogtreecommitdiffstats
path: root/fetchmail.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>1997-12-01 08:11:03 +0000
committerEric S. Raymond <esr@thyrsus.com>1997-12-01 08:11:03 +0000
commit3a9bd90ec9f22692e249b62bd9b076a084e3d5cd (patch)
tree7424a48c807fa389c45a32de935e9b13fa52ac4d /fetchmail.c
parentbf32bf553b664f8fcef0dab2458eed6cbde144dc (diff)
downloadfetchmail-3a9bd90ec9f22692e249b62bd9b076a084e3d5cd.tar.gz
fetchmail-3a9bd90ec9f22692e249b62bd9b076a084e3d5cd.tar.bz2
fetchmail-3a9bd90ec9f22692e249b62bd9b076a084e3d5cd.zip
Allow multidrop to be handled if all sites have `no dns' on.
svn path=/trunk/; revision=1552
Diffstat (limited to 'fetchmail.c')
-rw-r--r--fetchmail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c
index 493cb247..8165fea0 100644
--- a/fetchmail.c
+++ b/fetchmail.c
@@ -664,7 +664,7 @@ static int load_params(int argc, char **argv, int optind)
#if !defined(HAVE_GETHOSTBYNAME) || !defined(HAVE_RES_SEARCH)
/* can't handle multidrop mailboxes unless we can do DNS lookups */
- if (ctl->localnames && ctl->localnames->next)
+ if (ctl->localnames && ctl->localnames->next && ctl->server.dns)
{
fputs("fetchmail: can't handle multidrop mailboxes without DNS\n",
stderr);