hi kevin,
have a look at rcmail_login in program/include/main.inc, 303-305:
// exit if IMAP login failed if (!($imap_login = $IMAP->connect($host, $user, $pass, $imap_port, $imap_ssl))) return FALSE;
if the imap login fails, then the function exits before creating a new user.
cheers justin
Kevin Landers wrote:
Question in regards to using auto-create. Will it only create the users in the SQL table that successfully login against the IMAP server? Or will there be extraeneous users created if say someone tried logging in as "johndoe" instead of "jdoe". (Would there be an auto created user for both johndoe and jdoe in the SQL table?)