Re: [Exim] acl_check_content & MySQL

Página Principal
Apagar esta mensagem
Responder a esta mensagem
Autor: Tom Kistner
Data:  
Para: dougal, exim-users
Assunto: Re: [Exim] acl_check_content & MySQL
Dougal McWhinney wrote:

> What command do I use to return to "demime" a list of colon separated
> values from the table?


Depends on how they are stored in the table. If they are in separate
rows, exim will return them separated with \n, which you can replace
with ":" using the sg{} operator.

Untested example:

deny message = contains blacklisted file extension ($found_extension)
      demime = ${sg{${lookup mysql {select extension\
                                    from filetypes}}}{\\n}{:}}


regards,

/tom