troxlinux a écrit :
> I solved my problem , the problema was this line
> 
> @local_domains_maps = ( [".$mydomain .domain.net.ni .domain.org.ni"] )
> 

you were quoting the whole list, which makes it a single string.

> y changed this form
> 
> @local_domains_maps = ( [".$mydomain"] )
> 

if you need to add domains, use a ',' to separate domains and do not
quote the whole list.

for example:

@local_domains_maps =
        ( ["localhost", ".example.com", ".$mydomain",
           ".joe.example"
        ] );



------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables 
unlimited royalty-free distribution of the report engine 
for externally facing server and web deployment. 
http://p.sf.net/sfu/businessobjects
_______________________________________________
AMaViS-user mailing list
AMaViS-user@lists.sourceforge.net 
https://lists.sourceforge.net/lists/listinfo/amavis-user 
 AMaViS-FAQ:http://www.amavis.org/amavis-faq.php3 
 AMaViS-HowTos:http://www.amavis.org/howto/ 

Reply via email to