Συντάκτης: Colin Sampaleanu Ημερομηνία: Προς: Exim-Users (E-mail) Αντικείμενο: [Exim] assigning variables from pieces of a lookup
After looking at the documentation for quite a while, I am confused as
to how I can assign some of the data returned from an ldap lookup to an
option for the router. So I have a router declaration:
transport_home_directory=${data}
file_transport = local_delivery
unseen
cannot_route_message = Unknown user
Now my ldap lookup is working ok, and I am getting back the user home
directory from ldap. What is not working (not that I really expected it
to) is the assignment statement
transport_home_directory=${data}
where I am trying to set the home directory for the transport,
presumably since the assignment of the 'data' option doesn't actually
create a variable called 'data'.
So the question is, how can I assign a value to
transport_home_directory, short of doing another lookup?