On Thu, 21 Jun 2007, Andreas Pettersson wrote: > So the answer is to use a regexp instead. > hosts = ^.*\.yahoo\.
That's not quite right. Try either of these hosts = \N^.*\.yahoo\.\N hosts = \N^.*?\.yahoo\.\N The second is a bit more efficient when it matches (about the same when it doesn't). -- Philip Hazel University of Cambridge Computing Service Get the Exim 4 book: http://www.uit.co.uk/exim-book -- ## List details at http://www.exim.org/mailman/listinfo/exim-users ## Exim details at http://www.exim.org/ ## Please use the Wiki with this list - http://www.exim.org/eximwiki/
