Greylisting of suspicious sources daemon configuration file
/etc/grossd.conf
grossd\|(8) reads configuration data from /etc/grossd.conf (or the file specified with -f on the command line). An example configuration file is installed by default. You have to set some configuration options in order to get grossd\|(8) running in your environment. The format is as follows:
name = value [ ; param ] ...
Not all options accept parameters - refer to individual descriptions. The comment separator is `#', everything after it is ignored by the config file parser.
is the address the server should listen for queries. Default is `localhost'.
is the port the server should listen for queries. Default is 5525.
is the address to listen for communication with the peer. It defaults to the host setting.
is the address of the peer used when running in clustered mode.
is the tcp port number to listen to and connect to in communication with the peer. Default is 5524.
is the address grossd\|(8) listens for status queries. Default is `localhost'.
is the port number grossd\|(8) listens for status queries. Default is 5522.
activates the server protocols grossd\|(8) will support. Valid settings are `sjsms', `postfix' and `milter'.
is the socket address for the Milter service. The format is `proto:port@host'. Refer to Milter documentation for the specifics.
You can probably leave the default values for these settings. If your daily mail flow exceeds millions of messages per day you may want to tweak query_timelimit and/or pool_maxthreads. If you run grossd\|(8) in a server with limited memory you may want to adjust filter_bits.
is the size of the Bloom filter. The size will be 2^filter_bits. Lowering this value will increase the probability of false matches in each individual filter. Default is 24.
is the number of Bloom filters used in the ring queue. Raising this value will cause an entry to stay in the server's memory longer. Default is 8.
is the number of seconds between Bloom filter rotations. Let N := number_buffers and I := rotate_interval. An entry will stay in the server's memory for N - 0.5 * I seconds on average. Defaults to 3600 seconds (one hour).
is the way server updates the database. Valid options are `grey' and `always'. If set to `grey', which is the default, grossd\|(8) will update the database only if the response is `\s-1STATUS_GREY\s+1'. Setting it to `always' may reduce the impact on \s-1DNS\s+1 servers.
is the mask for grossd\|(8) to use when matching the `smtp-client-ip' against the database. Default is 24, which makes grossd\|(8) to treat addresses like a.b.c.d as a.b.c.0. Setting grey_mask to 32 makes grossd\|(8) to require that consecutive attempts are made from the same `smtp-client-ip'.
is the full path of the file that the server uses to store the state information. Default is not to have a statefile. You may want to configure a statefile especially if you do not configure replication.
is the full path of the file grossd\|(8) writes its pid into. You can set parameter `check', if you want to keep grossd\|(8) from starting should pidfile already exist.
is the time in seconds new triplets are kept on the greylist. Default is 180.
is the query timeout in milliseconds. You may have to adjust this if you exceed millions of queries a day.
is the maximum threadcount per pool. You may have to raise the limit from the default if you get more than 100 queries per second and/or have slow \s-1DNS\s+1 servers. The rule of thumb is to decide how many queries you want grossd\|(8) to be able to handle per second, and multiply that with query_timelimit (in seconds, of course). It defaults to 100.
is the threshold after which grossd\|(8) sends a permanent error to the client. Every check that considers `smtp-client-ip' as suspicious returns a value (check weight). When sum of these values gets equivalent or greater than block_threshold grossd\|(8) sends a \s-1STATUS_BLOCK\s+1 response. Default is 0 which disables this functionality.
is the reason given when client is too suspicious, see block_threshold. Default is “Bad reputation”.
is analogous to block_threshold, except at the threshold grossd\|(8) sends a \s-1STATUS_GREY\s+1 response. Default is 1. If set to 0 grossd\|(8) will greylist by default. This makes it possible to combine a traditional greylister and rbl checks.
is the reason given when client is suspicious enough to be greylisted, see grey_threshold. Default is “Please try again later.”.
is used to choose the logging method. Currently the only implemented method is `syslog', which is the default.
sets the logging verbosity. Possible values in the order of increasing verbosity are `error', `warning', `notice', `info' and `debug'. log_level defaults to `info'.
is the facility syslog sends log messages with. It defaults to `mail'.
is the name of the requested statistic. It is of multivalued type. The valid options are:
`full'
log all possible statistics,
`none'
no statistics logging,
`status'
basic set of statistics,
`since_startup'
basic set since the startup and
`delay'
log processing delay statistics.
Default is `none'. Setting both `none' and `full' is undefined.
is the number of seconds between status log entries. Default is 3600.
is a multivalued option, that is, you can configure multiple checks by setting check option multiple times. Currently implemented checks are `dnsbl', `dnswl', `rhsbl' and `blocker'. Refer to sections describing the checks below. If you don't configure any checks grossd\|(8) will act as a traditional greylisting server.
is a \s-1DNS\s0 domain name of the dnsbl that `dnsbl' check will query. There are no defaults, but the default configuration file lists a few as an example. If you have any locally administered block lists then you should be aware that grossd\|(8) makes all queries as fully qualified. You may assign different weights for the dnsbls, default weight is 1. Refer to grey_threshold and block_threshold about the weights. dnsbl is a multivalued option.
is analogous to dnsbl. Remember that dnswl is a definitive check, that is grossd\|(8) waits for the check to complete before deciding how to respond. This may cause unwanted latency, although you can adjust the maximum latency by query_timelimit option. dnswl is highly recommended if you use grossd\|(8) as a traditional greylister. This is a multivalued option.
is analogous to dnsbl, but the check is made with the right hand side of the sender address (the email domain) instead of the IP address. This is a multivalued option.
is the host name of the Sophos blocker server. This is used only if check = `blocker' is set.
is the \s-1TCP\s+1 port of the Sophos blocker service. Default is 4466.
is the weight of the blocker check. See description of grey_threshold and block_threshold regarding the weights.
You may configure the responses grossd\|(8) sends over to grosscheck library.
is the mapping result template grossd\|(8) uses for a \s-1STATUS_GREY\s+1 result. Default is `$X4.4.3|$N%reason%', where `%reason%' is the template for the reason string.
is the mapping result template grossd\|(8) uses for a \s-1STATUS_MATCH\s+1 result. Default is `$Y'.
is the mapping result template grossd\|(8) uses for a \s-1STATUS_TRUST\s+1 result. Default is `$Y'.
is the mapping result template grossd\|(8) uses for a \s-1STATUS_BLOCK\s+1 result. Default is `$N%reason%', where `%reason%' is the template for the reason string.
is the response template grossd\|(8) uses for a \s-1STATUS_GREY\s+1 result. Default is `action=defer_if_permit %reason%', where `%reason' is the template for the reason string.
is the response template grossd\|(8) uses for a \s-1STATUS_BLOCK\s+1 result. Default is `action=reject %reason%', where `%reason' is the template for the reason string.
You have to add a mapping entry to set \s-1SJSMS\s+1 to query grossd\|(8). It's also a good idea to exclude postmaster and abuse addresses before querying grossd\|(8).
Here is an example:
ORIG_MAIL_ACCESS
! allow all DSNs and MDNs TCP|*|*|*|*|*|*|tcp_local||*|* $Y$E ! allow all incoming mail to postmaster and abuse TCP|*|*|*|*|*|*|tcp_local|*|*|postmaster@* $Y$E TCP|*|*|*|*|*|*|tcp_local|*|*|abuse@* $Y$E ! use gross to check all triplets (client_ip,sender,recipient) TCP|*|*|*|*|SMTP/*|*|tcp_local|*|*|* $[/usr/lib/i386-linux-gnu/grosscheck.so,grosscheck,10.10.13.1,10.10.13.2,5525,$2,$=$8$_,$=$6$_,$=$4$_]
Mapping call parameters are as follows:
Grossd implements native Postfix policy delegation protocol. Just specify grossd server address at the `smtpd_recipient_restrictions' in the main configuration file
main.cf :
/etc/postfix/main.cf: smtpd_recipient_restrictions = ... reject_unauth_destination check_policy_service inet:host:port ...
Refer to Postfix documentation at <http://www.postfix.org> for specifics.
Exim can be configured to query grossd\|(8) via Postfix policy delegation protocol.
Main section:
GROSS_QUERY = sender=$sender_address\\n\\ recipient=$local_part@$domain\\n\\ client_address=$sender_host_address\\n\\ grossd_mode=single\\n\\n
Acl section:
# gross warn set acl_c0 = ${readsocket{inet:127.0.0.1:5525}{GROSS_QUERY}}
defer message = Please try again later. condition = ${if match {$acl_c0}{action=defer_if_permit}}
deny message = ${if match {$acl_c0}{action=reject (.*)}{$1}\\ {Rejected by Gross.}} condition = ${if match {$acl_c0}{action=reject}}
Sendmail can query grossd via milter protocol. Insert this in sendmail.mc and configure milter_listen accordingly:
INPUT_MAIL_FILTER(`Gross', `S=inet:5523@localhost, T=R:20s')
You can check if your version of Sendmail has Milter support compiled in by issuing the following command:
sendmail -bt -d0.1
grossd\|(8)
Gross project site: <http://code.google.com/p/gross/>
Bloom filters: <http://en.wikipedia.org/wiki/Bloom_filter>
Eino Tuominen and Antti Siira