Hi all, I've got exim working with cygwin correctly so far, even with SMTP AUTH. Here are my 'authenticators': plain: driver = plaintext public_name = PLAIN server_prompts = : server_condition = "\ ${if and {{!eq{$2}{}}{!eq{$3}{}} \ {eq{$3}{${extract{1}{:} \ {${lookup{$2}lsearch{/etc/exim.passwd}{$value}{*:*}}}}}}}{1}{0}}" server_set_id = $2
login: driver = plaintext public_name = LOGIN server_prompts = "Username:: : Password::" server_condition = "\ ${if and {{!eq{$1}{}}{!eq{$2}{}} \ {eq{$2}{${extract{1}{:} \ {${lookup{$1}lsearch{/etc/exim.passwd}{$value}{*:*}}}}}}}{1}{0}}" server_set_id = $1 Like this, auth uses the file '/etc/exim.passwd' for authentication data. Here goes my question: How would these authenticators have to look if I wanted to use the Windows User database for authentication instead? Gruss, -------------------------------------------- Peter -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/