Mailing List Archive

Please untainted string
Helo
please untainted string
thank you and regards
deny

message = "no no no"

condition = ${if exists{/etc/exim/${local_part}@${domain}}{1}{0}}

senders = ! /etc/exim/${local_part}@${domain}

--
## subscription configuration (requires account):
## https://lists.exim.org/mailman3/postorius/lists/exim-users.lists.exim.org/
## unsubscribe (doesn't require an account):
## exim-users-unsubscribe@lists.exim.org
## Exim details at http://www.exim.org/
## Please use the Wiki with this list - http://wiki.exim.org/
Re: Please untainted string [ In reply to ]
On 2023-08-17, S?awomir Dworaczek via Exim-users <exim-users@lists.exim.org> wrote:
> Helo
> please untainted string
> thank you and regards
> deny
>
> message = "no no no"
>
> condition = ${if exists{/etc/exim/${local_part}@${domain}}{1}{0}}

use lookup-dsearch

condition = ${if!eq{}{${lookup{{local_part}@${domain}}dsearch{/etc/exim}}}}




> senders = ! /etc/exim/${local_part}@${domain}

I have no idea what that is meant to mean. possibly this:

! senders = ${lookup{{local_part}@${domain}}dsearch{/etc/exim}}


--
Jasen.
???????? ????? ???????

--
## subscription configuration (requires account):
## https://lists.exim.org/mailman3/postorius/lists/exim-users.lists.exim.org/
## unsubscribe (doesn't require an account):
## exim-users-unsubscribe@lists.exim.org
## Exim details at http://www.exim.org/
## Please use the Wiki with this list - http://wiki.exim.org/
Re: Please untainted string [ In reply to ]
On 18/08/2023 14:03, Jasen Betts via Exim-users wrote:
>> senders = ! /etc/exim/${local_part}@${domain}
>
> I have no idea what that is meant to mean

"If an item in a domain, host, address, or local part list is an absolute filename (beginning with a slash character), each line of the file is read and processed as if it were an independent item in the list, except that further filenames are not allowed, and no expansion of the data from the file takes place."
--
Cheers,
Jeremy


--
## subscription configuration (requires account):
## https://lists.exim.org/mailman3/postorius/lists/exim-users.lists.exim.org/
## unsubscribe (doesn't require an account):
## exim-users-unsubscribe@lists.exim.org
## Exim details at http://www.exim.org/
## Please use the Wiki with this list - http://wiki.exim.org/
Re: Please untainted string [ In reply to ]
this rule is to prevent sending email to a group of users.only allow users stored in file local_part@domaineg. in file accounts@domain.comstore jan@domain.comeric@domain.comonly abowe users to post accounts@domain.com
-------- Oryginalna wiadomo?? --------Od: Jeremy Harris via Exim-users <exim-users@lists.exim.org> Data: 18.08.2023 15:56 (GMT+01:00) Do: exim-users@lists.exim.org Temat: [exim] Re: Please untainted string On 18/08/2023 14:03, Jasen Betts via Exim-users wrote:>> senders = ! /etc/exim/${local_part}@${domain}> > I have no idea what that is meant to mean"If an item in a domain, host, address, or local part list is an absolute filename (beginning with a slash character), each line of the file is read and processed as if it were an independent item in the list, except that further filenames are not allowed, and no expansion of the data from the file takes place."-- Cheers,   Jeremy-- ## subscription configuration (requires account):##   https://lists.exim.org/mailman3/postorius/lists/exim-users.lists.exim.org/## unsubscribe (doesn't require an account):##   exim-users-unsubscribe@lists.exim.org## Exim details at http://www.exim.org/## Please use the Wiki with this list - http://wiki.exim.org/

--
## subscription configuration (requires account):
## https://lists.exim.org/mailman3/postorius/lists/exim-users.lists.exim.org/
## unsubscribe (doesn't require an account):
## exim-users-unsubscribe@lists.exim.org
## Exim details at http://www.exim.org/
## Please use the Wiki with this list - http://wiki.exim.org/
Re: Please untainted string [ In reply to ]
Helo
Thank you for your answer
Unfortunately
failed to expand ACL string
"${if!eq{}{${lookup{{local_part}@${domain}}dsearch{/etc/exim}}}}": missing
lookup type

Regards
Slawek

--
## subscription configuration (requires account):
## https://lists.exim.org/mailman3/postorius/lists/exim-users.lists.exim.org/
## unsubscribe (doesn't require an account):
## exim-users-unsubscribe@lists.exim.org
## Exim details at http://www.exim.org/
## Please use the Wiki with this list - http://wiki.exim.org/
Re: Please untainted string [ In reply to ]
On 2023-08-21, S?awomir Dworaczek via Exim-users <exim-users@lists.exim.org> wrote:
> Helo
> Thank you for your answer
> Unfortunately
> failed to expand ACL string
> "${if!eq{}{${lookup{{local_part}@${domain}}dsearch{/etc/exim}}}}": missing
> lookup type


Oops! Missing $ before {local_part}


${if!eq{}{${lookup{${local_part}@${domain}}dsearch{/etc/exim}}}}


--
Jasen.
???????? ????? ???????

--
## subscription configuration (requires account):
## https://lists.exim.org/mailman3/postorius/lists/exim-users.lists.exim.org/
## unsubscribe (doesn't require an account):
## exim-users-unsubscribe@lists.exim.org
## Exim details at http://www.exim.org/
## Please use the Wiki with this list - http://wiki.exim.org/