variable expansion not working in $myauthservid definition?

A. Schulze sca at andreasschulze.de
Thu Apr 7 20:10:49 CEST 2016


jasonsu:

> 	$mydomain = 'mail01.example.com';
> 	$myauthservid = 'amavisd.${$mydomain}';
use double quotes to allow variable expansion.
single quotes force use as literal string as you see...

-> $myauthservid = "amavisd.${$mydomain}";

Andreas



More information about the amavis-users mailing list