chiark / gitweb /
user-spam.m4: Fix indentation in the output.
[exim-config] / user-spam.m4
CommitLineData
3865ac97
MW
1### -*-m4-*-
2###
3### User-configurable spam filtering for distorted.org.uk Exim configuration
4###
5### (c) 2012 Mark Wooding
6###
7
8###----- Licensing notice ---------------------------------------------------
9###
10### This program is free software; you can redistribute it and/or modify
11### it under the terms of the GNU General Public License as published by
12### the Free Software Foundation; either version 2 of the License, or
13### (at your option) any later version.
14###
15### This program is distributed in the hope that it will be useful,
16### but WITHOUT ANY WARRANTY; without even the implied warranty of
17### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18### GNU General Public License for more details.
19###
20### You should have received a copy of the GNU General Public License
21### along with this program; if not, write to the Free Software Foundation,
22### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23
24DIVERT(null)
25###--------------------------------------------------------------------------
26### User-configurable spam thresholds.
27
ff58aaf8
MW
28m4_define(<:USER_SPAMLIMIT_ROUTER:>,
29<:SPAMLIMIT_ROUTER(fetch_spam_limit_$1_$2)
30 check_local_user
31 local_part_suffix = CONF_user_suffix_list
32 local_part_suffix_optional = true
33 $3:>)
34
35m4_define(<:USER_SPAMLIMIT_ROUTERS:>,
36<:USER_SPAMLIMIT_ROUTER(<:lookup:>, <:$1:>,
37 <:$5SPAMLIMIT_LOOKUP(<:CONF_userconf_dir/spam-limit:>,
33dbcec9 38 <:$2:>, <:$3:>, <:$4:>, <:user=$local_part:>):>)
ff58aaf8 39USER_SPAMLIMIT_ROUTER(<:userv:>, <:$1:>,
87d3edd4 40 <:$5SPAMLIMIT_USERV(<:$local_part:>,
33dbcec9 41 <:$2:>, <:$3:>, <:$4:>, <:user=$local_part:>):>):>)
ff58aaf8 42
d057af07
MW
43m4_define(<:CURRENT_LOCAL_PART:>,
44 <:$local_part_prefix$local_part$local_part_suffix:>)
45
ff58aaf8
MW
46m4_define(<:ORIGINAL_ADDRESS:>, <:$original_local_part@$original_domain:>)
47m4_define(<:PARENT_ADDRESS:>, <:$parent_local_part@$parent_domain:>)
48m4_define(<:CURRENT_ADDRESS:>, <:CURRENT_LOCAL_PART@$domain:>)
49
3865ac97
MW
50SECTION(routers, allspam)m4_dnl
51## If we're verifying an address and the recipient has a `~/.mail/spam-limit'
52## file, then look up the recipient and sender addresses to find a plausible
53## limit and insert it into the `address_data' where the RCPT ACL can find
54## it. This router always declines, so it doesn't affect the overall outcome
55## of the verification.
ff58aaf8
MW
56##
57## As a result of forwarding and aliasing, the original envelope recipient
58## may have been set a while ago, so we'll search through the history until
59## we find a match.
60USER_SPAMLIMIT_ROUTERS(<:original:>,
61 <:$original_local_part:>, <:$original_domain:>, <:$sender_address:>,
62 <:condition = ${if !eq{ORIGINAL_ADDRESS}{PARENT_ADDRESS}}
3e7e168c 63 :>)
ff58aaf8
MW
64USER_SPAMLIMIT_ROUTERS(<:parent:>,
65 <:$parent_local_part:>, <:$parent_domain:>, <:$sender_address:>,
66 <:condition = ${if !eq{PARENT_ADDRESS}{CURRENT_ADDRESS}}
3e7e168c 67 :>)
ff58aaf8
MW
68USER_SPAMLIMIT_ROUTERS(<:current:>,
69 <:CURRENT_LOCAL_PART:>, <:$domain:>, <:$sender_address:>)
3865ac97
MW
70
71DIVERT(null)
72###----- That's all, folks --------------------------------------------------