On 2023-09-08 Jasen Betts via Exim-users wrote:
[...]
> https://packages.debian.org/search?keywords=libfile-fcntllock-perl
> seems to exist and have existed for several years.
> It's a dependancy of debhelper and dpkg-dev both of which are needed
> to build the debian packages for exim so it will
Heloo
In exim filter, numeric values in the "is above" rule are only accepted as
integers
I have to execute the delivery command if the header value is above some
number,
unfortunately many of them are written in the header and are decimal numbers,
as a result I get an error
error in filter f
On 09/09/2023 13:43, Sławomir Dworaczek via Exim-users wrote:
In exim filter, numeric values in the "is above" rule are only accepted as
integers
I have to execute the delivery command if the header value is above some
number,
unfortunately many of them are written in the header and are decim
On Sat, Sep 09, 2023 at 02:43:52PM +0200, Sławomir Dworaczek via Exim-users
wrote:
> here is my expression
> if
> $h_X-Spam-Potential: is not "" and
> ${sg{$h_X-Spam-Potential:}{^(\d+)\..*}{$1}} is above 16
> then
> ..
> theoretically, only the number 16 before the dot should be taken in
unfortunately, it doesn't work, I get paniclog
Error in system filter: unrecognized condition word ""
Slawek
- Original Message -
From: "Evgeniy Berdnikov via Exim-users"
To:
Sent: Saturday, September 9, 2023 5:59 PM
Subject: [exim] Re: Exim filter get number before the dot
On Sat,
Heloo Jeremy
This way the values always have one digit after the decimal point
I just need the number before the decimal point
Regards
Slawek
- Original Message -
From: "Jeremy Harris via Exim-users"
To:
Sent: Saturday, September 9, 2023 3:11 PM
Subject: [exim] Re: Exim filter ge
On Sat, Sep 09, 2023 at 09:13:01PM +0200, Sławomir Dworaczek via Exim-users
wrote:
> unfortunately, it doesn't work, I get paniclog
> Error in system filter: unrecognized condition word ""
Study debug output. Probably you made a typo.
> - Original Message - From: "Evgeniy Berdnikov via
Unfortunately, any attempts to use regular expressions that attempt to
retrieve the number before the digit result in an error
$h_X-Spam-Potential:{{^(\\d+).*\$}{\$1}} is above 16
Error in system filter: unrecognized condition word ""
the workaround is to take the whole number and remove the
On 09/09/2023 22:33, Sławomir Dworaczek via Exim-users wrote:
Unfortunately, any attempts to use regular expressions that attempt to retrieve
the number before the digit result in an error
$h_X-Spam-Potential:{{^(\\d+).*\$}{\$1}} is above 16
That's written to be ambiguous, even with the ques