Qpsmtpd.pm: split config args on /\s+/, was / /

This commit is contained in:
Matt Simerson 2013-04-25 17:53:55 -04:00
parent fc832262cf
commit c3c5643296

View File

@ -7,7 +7,7 @@ use Qpsmtpd::Constants;
#use DashProfiler;
$VERSION = "0.91";
$VERSION = "0.92";
my $git;
@ -377,7 +377,7 @@ sub _load_plugin {
my $self = shift;
my ($plugin_line, @plugin_dirs) = @_;
my ($plugin, @args) = split / /, $plugin_line;
my ($plugin, @args) = split /\s+/, $plugin_line;
my $package;