]> git.deb.at Git - deb/packages.git/blob - mail/dot.forward-default
Merge branch 'master' of ssh://spaillar-guest@git.debian.org/git/webwml/packages
[deb/packages.git] / mail / dot.forward-default
1 # Exim Filter
2 # /org/packages.debian.org/mail/.forward-default
3
4 # This filter looks up the package name in the maintainer database, if it is
5 # not found then a bounce message is generated. Although the docs say you
6 # can put spaces in the $lookup stuff you can't, don't try it.
7 if ${lookup{${local_part}}lsearch{/org/packages.debian.org/files/maintainerdb}{$value}{unknown}} is "unknown"
8 then
9    save /dev/null
10 else
11    seen deliver ${lookup{${local_part}}partial-lsearch{/org/packages.debian.org/files/maintainerdb}{$value}}
12 endif
13