On 11/11/05, Henrik Stoerner wrote:
You can either list individual hosts, but then you must use commas
to separate hostnames. Like
HOST=www.domain1.com <http://www.domain1.com>,www.domain2.com<http://www.domain2.com>
,www.domain3.com <http://www.domain3.com>
or you can use regular expressions - these begin with a '%' sign,
followed by the regex. How you'll define that obviously depends on
the hostnames involved, for your example it might be
HOST=%www.domain[123].com
Thank you, it works like a charm now. I had a blankspace before my hosts ie:
HOST= domain1.com <http://domain1.com>,etc,etc instead of:
HOST=domain1.com <http://domain1.com>,etcetc
That's why it didn't work before.
/ Martin