It works for mysql - if it doesn't work for postgres I'd be stunned...
It's off topic, but: MySQL is one of the only SQL servers that will always do case insensitive matches. With other servers, you must be explicit about your desire for a case insensitive match, usually by crafting your SELECT statement like so:
SELECT fields
FROM passwd
WHERE LOWER(mail) = LOWER('[EMAIL PROTECTED]')
------------------------------------------------------- This sf.net email is sponsored by:ThinkGeek Welcome to geek heaven. http://thinkgeek.com/sf _______________________________________________ courier-users mailing list [EMAIL PROTECTED] Unsubscribe: https://lists.sourceforge.net/lists/listinfo/courier-users
