aboutsummaryrefslogtreecommitdiffstats
path: root/perl
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@rambler-co.ru>2010-10-01 19:01:28 +0400
committerVsevolod Stakhov <vsevolod@rambler-co.ru>2010-10-01 19:01:28 +0400
commitdcdcecb4998fd65c6248225b220637df6694dbad (patch)
treed2597d1d2dbb7e74b25d18e6948338aea261bb3d /perl
parent5cf9bd2578cab28565287b53ac4128a4970408ce (diff)
downloadrspamd-dcdcecb4998fd65c6248225b220637df6694dbad.tar.gz
rspamd-dcdcecb4998fd65c6248225b220637df6694dbad.zip
* Add ability to specify many redirector hosts and choose them round-robin
* Fix ip address parsing in redirector config * Fix logic of checking url in redirector if its domain is in exceptions list * Add dependencies in perl module (suggested by AZ) * Add BUILD_PORT define for skipping installation of FreeBSD rc scrips (suggested by AZ) * Change version of 0.3.3
Diffstat (limited to 'perl')
-rw-r--r--perl/Makefile.PL.in9
1 files changed, 7 insertions, 2 deletions
diff --git a/perl/Makefile.PL.in b/perl/Makefile.PL.in
index 31aca8f85..625e69310 100644
--- a/perl/Makefile.PL.in
+++ b/perl/Makefile.PL.in
@@ -2,5 +2,10 @@ use ExtUtils::MakeMaker;
WriteMakefile(
AUTHOR => 'Vsevolod Stakhov <vsevolod@highsecure.ru>',
VERSION_FROM => 'lib/Mail/Rspamd/Client.pm', # finds $VERSION
-);
-
+ PREREQ_PM => {
+ "IO::String" => 0,
+ "Term::ReadKey" => 0,
+ "XML::Parser" => 0,
+ "IO::Socket" => 0,
+ },
+ );