diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2010-09-21 20:11:34 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2010-09-21 20:11:34 +0400 |
commit | f795dc8138d929b96f9ffbac48793497d6b32a6f (patch) | |
tree | 6eb2148fdf9986355f707ac7844e05bee1c58e25 /rspamc.pl.in | |
parent | 0287117599edd2cb87822b2cac50b14a58dc3d9a (diff) | |
download | rspamd-f795dc8138d929b96f9ffbac48793497d6b32a6f.tar.gz rspamd-f795dc8138d929b96f9ffbac48793497d6b32a6f.zip |
* New trie based url scanner (based on libcamel)
* Small fixes to rspamd perl client
* Write fuzzy hashes info to log
Diffstat (limited to 'rspamc.pl.in')
-rwxr-xr-x | rspamc.pl.in | 17 |
1 files changed, 1 insertions, 16 deletions
diff --git a/rspamc.pl.in b/rspamc.pl.in index a261f66c9..9843bf384 100755 --- a/rspamc.pl.in +++ b/rspamc.pl.in @@ -14,7 +14,7 @@ use Mail::Rspamd::Config; use Data::Dumper; my %cfg = ( - 'conf_file' => '@CMAKE_INSTALL_PREFIX@/etc/rspamd.conf', + 'conf_file' => '@CMAKE_INSTALL_PREFIX@/etc/rspamd.xml', 'command' => 'SYMBOLS', 'hosts' => ['localhost:11333', ], 'require_input' => 0, @@ -53,21 +53,6 @@ imap format: imap:user:<username>:password:[<password>]:host:<hostname>:mbox:<mb Password may be omitted and then it would be asked in terminal imaps requires IO::Socket::SSL -IMAP search strings samples: -ALL - All messages in the mailbox; -FROM <string> - Messages that contain the specified string in the envelope structure's FROM field; -HEADER <field-name> <string> - Messages that have a header with the specified field-name and that - contains the specified string in the text of the header (what comes after the colon); -NEW - Messages that have the \\Recent flag set but not the \\Seen flag. - This is functionally equivalent to "(RECENT UNSEEN)". -OLD - Messages that do not have the \\Recent flag set. -SEEN - Messages that have the \\Seen flag set. -SENTBEFORE <date> - Messages whose [RFC-2822] Date: header (disregarding time and timezone) - is earlier than the specified date. -TO <string> - Messages that contain the specified string in the envelope structure's TO field. -TEXT <string> - Messages that contain the specified string in the header or body of the message. -OR <search-key1> <search-key2> - Messages that match either search key (same for AND and NOT operations). - Version: @RSPAMD_VERSION@ EOD exit; |