userdb lookup not possible with only userdb prefetch
Hello,
I am setting up a new server and migrating my Dovecot 1.2.9 config to the new 2.2.9 version. There wasn't much to keep from the old version so I had to recreate the config from scratch. Now I think I'm done but I can't login to IMAP. The log says this:
That doesn't help me a lot. Here's parts of my configuration, dumped with 'dovecot -n':
What's the problem here? How can I resolve this issue?
-- Yves Goergen http://unclassified.de http://dev.unclassified.de
Am 07.12.2014 um 00:22 schrieb Yves Goergen:
You did fulfill the requzirements for prefetch to work documented in the wiki?
http://wiki2.dovecot.org/UserDatabase/Prefetch
Alexander
Am 07.12.2014 um 00:56 schrieb Alexander Dalloz:
Ehm, this is my SQL configuration 'dovecot-sql.conf.ext':
Now that I've found the page you gave me (didn't see it before, but I must say that wiki is not easily readable, pretty confusing) I think the column names must be different.
Instead of: username, domain, password, home, mail Should I return: username, domain, password, userdb_home, userdb_mail?
And what does that comment in the example mean? "# The userdb below is used only by lda." Should I use only userdb:driver=prefetch, or should I include a separate userdb section as if I wouldn't use prefetch? Again, confusing. Why does it have to be two separate queries at all? Just use one and take what you get. If some required column is missing and the value isn't set in the configuration, you can still throw an error.
-- Yves Goergen http://unclassified.de http://dev.unclassified.de
On 12/7/2014 5:04 AM, Yves Goergen wrote:
I too made a similar mistake and struggled for a while to understand why my attempts were failing. If using the prefetch userdb driver you have to return values from your database using appropriate aliases to match the expected names.
Here is what I'm using for the 'password_query':
password_query =
SELECT email AS user, password,
'vmail' AS userdb_uid,
'vmail' AS userdb_gid,
'/var/vmail/%d/%n' as userdb_home
FROM virtual_users
WHERE email = '%u'
AND enabled = '1';
Depending on your db layout you'll have different source values, but as long as you end up returning the values under the right column names (or aliases) it should work. My current db design needs improvement (as the static placeholder values in the above query shows), but it works as-is for now.
I can't speak to the design, but from what I've read the userdb sections have a "fall through" approach. If one doesn't provide the sought after information the next userdb section is used.
From the http://wiki2.dovecot.org/UserDatabase/Prefetch wiki page:
Here are my values for the auth-sql.conf.ext file (comments removed):
passdb { driver = sql args = /etc/dovecot/dovecot-sql.conf.ext } userdb { driver = prefetch } userdb { driver = sql args = /etc/dovecot/dovecot-sql.conf.ext }
Here are my comments for the last userdb entry as a reminder to myself:
To circle back, here are the remaining two queries from my copy of dovecot-sql.conf.ext:
NEEDED for LDA/LMTP if we don't include a static userdb entry
user_query = SELECT email as user,
'/var/vmail/%d/%n' as home
FROM virtual_users
WHERE email = '%u'
AND enabled = '1';
iterate_query = SELECT email AS user
FROM virtual_users
WHERE enabled='1';
My comments for the last query:
P.S.
The substitution used ('%u' vs '%n') will depend on how you have your user information stored. The comments in dovecot-sql.conf.ext provide some sample queries to illustrate that.
As my queries suggest, my db setup uses the 'username@example.org' format for user names. Had I thought about it a little more I might have opted to instead store the user and domain values in separate fields, but then again maybe not. Something to be aware of anyway.
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1
On Sun, 7 Dec 2014, Yves Goergen wrote:
it's a bad decision to post only "parts of" the conf mostly.
[cut]
once you've resolved the prefetch problem with deoren's advice, also read:
[found by searching for "prefetch"]
http://wiki2.dovecot.org/UserDatabase/Prefetch
"... the passdb returns the userdb information in extra fields with userdb_ prefixes. For example if a userdb typically returns uid, gid and home fields, the passdb would have to return userdb_uid, userdb_gid and userdb_home fields."
Also note the the snippet: "If you're using LDA, you still need a valid userdb which can be used to locate the users." This advice applies to all services, that need to know user information without to auth' before, e.g. the LDA or doveadm.
IMHO, you should add the fall-back SQL-userdb as shown in the Wiki page.
Steffen Kaiser -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux)
iQEVAwUBVIVb3Hz1H7kL/d9rAQKn5QgAhnbpqd6Xvewvzy6FTTzFU1eHH6rRUK7+ PEQWm8UYPm4a9wBdM1tMHCAaCp1BKSlRVEhrOKgyyk4rE8GQzbyerN8noN7E0jvl tS5RwntMxmYr9mgo8l04dKnd4iEPVg1s9bvYbkig1xrWxkVmAP2+w7v9Aum6pBaO yHfQsHyUNQYDtRVBtDix7h8ApvmbnAOtZRot9/6TP553ZdW0n13I165dlk1owVAq KnkxwxOOPeg4+9J2Az3rO3eBpq1quRmW/wLVCbyg6Ru8avkihWDMzj2O72DF6nO1 PnjQI+60d4iZV42IKnRCB2Mc/2bxMG+fcOLnHfZtNk/lItypJ5sWiw== =/AS/ -----END PGP SIGNATURE-----
participants (4)
-
Alexander Dalloz
-
deoren
-
Steffen Kaiser
-
Yves Goergen