[ Murray Jones writes: ]
>
> I am trying to set the advertise field in my <list>.config files so that
> only email addresses in the local domain can receive output from the
> "lists" command.
[...]
> Output is:
> This is the command (qq~Murray.Jones@scitec.com.au~ =~
> /scitec\.com\.au/)
Which the eval will interpolate to:
qq~Murray.Jones~ =~ /scitec\.com\.au/
if you're running Perl version 5. You need to make the following change
to the line:
- $command = "(qq~$reply_addr~ =~ $i)";
+ $command = "(q~$reply_addr~ =~ $i)";
--
Dave Wolfe *Not a spokesman for Motorola*
Motorola MMTG 6501 Wm. Cannon Dr. W. OE112 Austin TX 78735-8598
Follow-Ups:
References:
|
|