diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-06-16 19:13:53 +0100 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2015-06-16 19:13:53 +0100 |
commit | 5efd0c7fe5ebbe1fa12fd3e087feab74c8897e44 (patch) | |
tree | 47242e47357cb6f285927e24b41ef414f314917b /utils | |
parent | 5ad7492c725e5b3e383f343fbc410fcea28f7e0e (diff) | |
download | rspamd-5efd0c7fe5ebbe1fa12fd3e087feab74c8897e44.tar.gz rspamd-5efd0c7fe5ebbe1fa12fd3e087feab74c8897e44.zip |
Sort dependencies.
Diffstat (limited to 'utils')
-rwxr-xr-x | utils/redirector.pl.in | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/utils/redirector.pl.in b/utils/redirector.pl.in index b483c127f..2b8092eda 100755 --- a/utils/redirector.pl.in +++ b/utils/redirector.pl.in @@ -16,23 +16,21 @@ use strict; use POSIX qw(strftime); use HTTP::Request::Common qw(GET POST); +use HTTP::Response; use URI::Escape qw(uri_unescape); use Sys::Syslog qw/:standard :macros setlogsock/; -use HTTP::Response; use HTML::HeadParser; use Digest; use Proc::Daemon; use Proc::PidUtil; - use POE qw(@POE_LOOP@ Component::Server::TCP Filter::HTTPD Component::Client::HTTP); +use Cache::Memcached::Fast; my $with_swf = 1; my $swf_parser; my $saved_swf_url = ""; eval "require SWF::Element" or $with_swf = 0; # p5-SWF-File -require Cache::Memcached::Fast; - my $DEBUG = grep { $_ eq '-debug' } @ARGV; our %cfg = ( |