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:16:56 +0100 |
commit | 5f6738783f543bc8bb86bbb0ffb08304174af747 (patch) | |
tree | 7f8ec57b984425d4a1f1571f82e3e831106afdc7 | |
parent | 879063b796f89d43e5225c5b624a8b8a873b7fd6 (diff) | |
download | rspamd-5f6738783f543bc8bb86bbb0ffb08304174af747.tar.gz rspamd-5f6738783f543bc8bb86bbb0ffb08304174af747.zip |
Sort dependencies.
-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 = ( |