Re: [Exim] "x@y"@z

トップ ページ
このメッセージを削除
このメッセージに返信
著者: Dennis Davis
日付:  
To: Hawk
CC: exim-users
題目: Re: [Exim] "x@y"@z
>To: exim-users@???
>From: Hawk <black.hawk@???>
>Subject: Re: [Exim] "x@y"@z
>Date: Fri, 14 Feb 2003 11:33:55 +0100
>
>Exim 3.35


Well, you can use a director of the form:

refuse_multihop_relaying:
driver = smartuser
domains = *
local_parts = ^.*[@%!/|]
verify_only
fail_verify

fairly close to the top of your list of directors.

And if you want to stop your users doing this when mailing external
sites, use a similar router with a lookuphost driver. Again you'll
need it close to the top of your list of routers.

And seriously consider upgrading to exim4. It's been out for
a year or so now.

>At 11.10 14/02/2003, Kirill Miazine wrote:
>>black.hawk wrote:
>>
>> > i have a problem with address formatted like "x@y"@z
>> >
>> > If z is one of my relay domains, Exim accept mail and delivers to x@y
>> > (y isn't in my local or relay domains)
>> >
>> > Spammers use this type of receiver....
>> >
>> > how can i block this type of spam?
>>
>>Which version of Exim?
>>
>>If Exim 4 - see the ACL section of the default configuration file. There
>>you will see:
>>
>>   deny    local_parts   = ^.*[@%!/|] : ^\\.

>>
>>This will block nasty local parts.