Skip to content

Update integration.md#111

Open
tobybryans wants to merge 1 commit into
rspamd:masterfrom
tobybryans:patch-1
Open

Update integration.md#111
tobybryans wants to merge 1 commit into
rspamd:masterfrom
tobybryans:patch-1

Conversation

@tobybryans

Copy link
Copy Markdown

In the modern full exim milter header configuration example, two $s in set acl_m_milter_add and set acl_m_milter_del respectively need to be escaped otherwise you get an error with the config: Failed: $ not followed by letter, digit, or {.

exim’s string expansion sees $ and tries to interpret it as the start of a variable like $variable or ${...}. When it hits $} it complains because } is not a valid variable-name character.

To fix it, escape the regex end-of-line anchor so exim passes a literal $ through to the PCRE engine.

In the modern full exim milter header configuration example, two $s in `set acl_m_milter_add` and `set acl_m_milter_del` respectively need to be escaped otherwise you get an error with the config: `Failed: $ not followed by letter, digit, or {`. 

exim’s string expansion sees $ and tries to interpret it as the start of a variable like $variable or ${...}. When it hits $} it complains because } is not a valid variable-name character.

To fix it, escape the regex end-of-line anchor so exim passes a literal $ through to the PCRE engine
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant