[CentOS] exim-mysql without MySQL support from epel

Wed Jul 23 09:47:24 UTC 2014
John Doe <jdmls at yahoo.com>

From: Fosforo <fosforo at gmail.com>
> The .so seems to be included:
> # locate lookup | grep mysql
> /usr/lib64/exim/4.72-5.el6/lookups/mysql.so
> but no suppport builtin in the binary:

If it is a module, isn't it normal that it is not built-in?
What is your error message...?
It just works here, with a conf like:

  hide mysql_servers = .../.../...

  CHECK_ACCESS = ${lookup mysql \
                  {select ... from ... where ... = '${quote_mysql:$local_part}'} \
                  {$value}fail}

  ...

  localuser_virtual:
    driver = accept
    condition = CHECK_ACCESS
    retry_use_local_part
    transport = local_delivery_virtual

JD