[exim] Add custom headers for DKIM, SPF, DMARC check status

2017-04-18 Thread Фадеев Виталий Львович via Exim-users
Hello! For our custom scripts we want that exim would add custom headers, for example X-DKIM-Status, X-SPF-Status, X-DMARC-Status with status of checking this. How I can do this? Great thanks! -- ## List details at https://lists.exim.org/mailman/listinfo/exim-users ## Exim details at

Re: [exim] Add custom headers for DKIM, SPF, DMARC check status

2017-04-18 Thread Jeremy Harris
On 18/04/17 12:54, Фадеев Виталий Львович via Exim-users wrote: > For our custom scripts we want that exim would add custom headers, for > example X-DKIM-Status, X-SPF-Status, X-DMARC-Status with status of checking > this. > How I can do this? Either headers_add or add_headers. One in ACL and

[exim] Removing all headers with the same prefix

2017-04-18 Thread Stefan Unterweger
Hi, I want to scrub certain kinds of headers for all incoming messages so that I can use them for myself—and trust them. In particular, I want to get rid of all headers which start with ‘Spam-’, no matter what comes after that prefix (be it ‘Spam-Score’, ‘Spam-Whitelisted’ or whatever my

[exim] Exim lsearch lookup in multiple files at the same time

2017-04-18 Thread Rustam via Exim-users
I often need to have exim do a lookup in multiple files at the same time. For example, to send a plain auth based on per-domain data: PLAIN: driver = plaintext client_send = ${lookup{$sender_address}lsearch{/etc/exim/domain1}} The way I solve it for now is to wrap a subsequent lookup into

Re: [exim] Removing all headers with the same prefix

2017-04-18 Thread Jeremy Harris
On 18/04/17 19:07, Stefan Unterweger wrote: > I want to scrub certain kinds of headers for all incoming messages so > that I can use them for myself—and trust them. In particular, I want to > get rid of all headers which start with ‘Spam-’, no matter what comes > after that prefix (be it

Re: [exim] Exim lsearch lookup in multiple files at the same time

2017-04-18 Thread Jeremy Harris
On 18/04/17 19:36, Rustam via Exim-users wrote: > So my proposal is to allow a* list of files* as an argument to lsearch. Of > if there is an easier solution, I'm open to suggestions. Wrap the lookup in one of the list-handling expansion items - reduce or map, probably. The problem will be