in reply to Email-based Content Generation Reflector
As for security, as long as you are not executing arbitrary commands you should be alright.use strict; use Config::General; use Data::Dumper; my $conf = Config::General->new('/usr/local/apache/conf/httpd.conf'); my %conf = $conf->getall; print Dumper \%conf;
Also, why are you doing this:
when you can use single quotes:my $server_from = "\"Foo Reflector\" <er\@foo.bar>";
my $server_from = '"Foo Reflector" <er@foo.bar>';
|
|---|