Olaf
I think I found a work-around for the problem ... but it seems very strange, so I thought I would let you know and see if it makes sense to you:
it appears that your line (in db_config.php):
define("ADMIN_MAIL", "
[email protected]");
or my eqivalent line:
define("ADMIN_MAIL", "
[email protected]");
needs to be either deleted or replaced with
define("ADMIN_MAIL", "");
The reason for this is
1. the 'register.php' script calls the method 'register_user'.
2. the register_user method calls send_mail() and
3 send_mail() uses the existance of 'this->admin_mail' (which was initialized to be: ADMIN_MAIL) as the criteria for sending a request msg to the administrator rather than a full full msg to the new user saying "you can login".
(this distinction does not seem to depend on the value of $auto_activation)
so far things seem to work with admin_mail deleted ... I can find no other refernces to this constant or the instance variable by the same name.
So, is this interpretation correct? will deleting that line cause me any problems further down the line?
Thanx again for any help.