Hi Mike,
it seems to be already late in this time zone ;-)
> There's a subtlety here. When using qw() - quote words - you do not use
> commas to separate entities. Eg:
>
> qw(a b c) # Correct
> qw(a,b,c) # Incorrect
Strange (or: nice) though that it works even with commas as soon as the
additional nesting level is removed:
OK:
| @local_domains_maps = ( qw( dom1.tld, dom2.tld, dom3.tld ) );
| @local_domains_maps = ( qw( dom1.tld dom2.tld dom3.tld ) );
| @local_domains_maps = ([ qw( dom1.tld dom2.tld dom3.tld ) ]);
Not OK:
| @local_domains_maps = ([ qw( dom1.tld, dom2.tld, dom3.tld ) ]);
;-)
Good night, and thanks again
-hannes
-------------------------------------------------------------------------
Check out the new SourceForge.net Marketplace.
It's the best place to buy or sell services for
just about anything Open Source.
http://sourceforge.net/services/buy/index.php
_______________________________________________
AMaViS-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/amavis-user
AMaViS-FAQ:http://www.amavis.org/amavis-faq.php3
AMaViS-HowTos:http://www.amavis.org/howto/