diff options
author | Tom Kistner <tom@duncanthrax.net> | 2008-12-04 11:24:17 +0100 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2008-12-12 23:18:56 +0100 |
commit | f8a8bc98f9a77d24e0fce2abd73c9512bcf26f2d (patch) | |
tree | 84af841fdb450b60d54e590ec02b9ddb0e671cba /cgi/exilog_cgi_param.pm | |
parent | a35e1469841bfbc7e58b66dcefb108993bc4b494 (diff) | |
download | exilog-f8a8bc98f9a77d24e0fce2abd73c9512bcf26f2d.zip exilog-f8a8bc98f9a77d24e0fce2abd73c9512bcf26f2d.tar.gz exilog-f8a8bc98f9a77d24e0fce2abd73c9512bcf26f2d.tar.bz2 |
Forward unreleased changes
- IPv6 address parsing
- Some queue management
- Better SQL quoting
- More misc stuff
Signed-off-by: Tom Kistner <tom@duncanthrax.net>
Diffstat (limited to 'cgi/exilog_cgi_param.pm')
-rw-r--r-- | cgi/exilog_cgi_param.pm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/cgi/exilog_cgi_param.pm b/cgi/exilog_cgi_param.pm index 5096ee3..5948530 100644 --- a/cgi/exilog_cgi_param.pm +++ b/cgi/exilog_cgi_param.pm @@ -57,11 +57,17 @@ sub _init_cgi_params { 'deferrals', 'rejects', 'queue' ], + 'q_qw' => [ 'frozen', + 'deferred', + 'bounce' ], 'ss' => '-all', + 'q_ss' => '-all', 'tr' => '-10m', - #'qt' => 'all', + 'q_tr' => '-5m', 'qs' => "", - 'sr' => [ keys %{ $config->{servers} } ] + 'q_qs' => "", + 'sr' => [ keys %{ $config->{servers} } ], + 'q_sr' => [ keys %{ $config->{servers} } ] }; foreach (keys %{ $defaults }) { |