Index: fetchmail.c =================================================================== RCS file: /home/cvs/debian/fetchmail/fetchmail.c,v retrieving revision 1.1.1.11 diff -u -r1.1.1.11 fetchmail.c --- fetchmail.c 2001/03/18 13:00:03 1.1.1.11 +++ fetchmail.c 2001/04/12 03:40:13 @@ -1078,7 +1078,8 @@ * We're going to assume the via name is true unless it's * localhost. */ - if (ctl->server.via && strcmp(ctl->server.via, "localhost")) + if ((ctl->server.via) && + (! MULTIDROP(ctl) || strcmp(ctl->server.via, "localhost"))) ctl->server.queryname = xstrdup(ctl->server.via); else ctl->server.queryname = xstrdup(ctl->server.pollname);