[EMAIL PROTECTED] wrote: > is it possible to use in the DATA ACL the ip address over the email arrive the > exim? so that i can do > > deny message = This message contains an attachment of a type which we > do not accept (.$found_extension) > demime = bat > $incommingip = 192.168.0.1 > > if it is possible, how is the variablename? > > thx > > kai > >
$interface_address See: http://exim.org/exim-html-4.62/doc/html/spec_html/ch11.html#SECTexpvar You'll need to use it in a "condition = ${if eq and since it's a cheaper operation than mime-decoding, you should place that before the demime line. - Jeremy -- ## List details at http://www.exim.org/mailman/listinfo/exim-users ## Exim details at http://www.exim.org/ ## Please use the Wiki with this list - http://www.exim.org/eximwiki/
