Quoting Sander Smeenk ([email protected]): > > > local_parts = ^[.] : ^...@%!/|] > > How to read this? > Starting with a single dot, or starting with @, %, !, / or |. > The : is a delimiter in this 'list' of local_parts. > > > Am I right? > No :-) Read 'man regexp' and 'man pcre'
If i have a big mouth, i should at least give correct answers. The last bit: '^...@%!/|]' matches localparts containing @, %, !, / or |, but not specifically at the beginning of the localpart. Example: b...@[email protected] would match. Sorry :) -Sndr. -- | If you think nobody cares, try missing a couple of payments. | 1024D/08CEC94D - 34B3 3314 B146 E13C 70C8 9BDB D463 7E41 08CE C94D -- ## List details at http://lists.exim.org/mailman/listinfo/exim-users ## Exim details at http://www.exim.org/ ## Please use the Wiki with this list - http://wiki.exim.org/
