From 4c6f5aedfd9d0305a315305a1a04acb4db3c439e Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Thu, 25 Apr 2013 17:53:55 -0400 Subject: [PATCH] Qpsmtpd.pm: split config args on /\s+/, was / / --- lib/Qpsmtpd.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Qpsmtpd.pm b/lib/Qpsmtpd.pm index ec7c0ef..87b30f9 100644 --- a/lib/Qpsmtpd.pm +++ b/lib/Qpsmtpd.pm @@ -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;