<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">Hi,<div class=""><br class=""></div><div class="">if a new User registers and ACCOUNT_APPROVAL_REQUIRED is true</div><div class="">an Email should be send to people in ADMINS. </div><div class=""><br class=""></div><div class="">But instead of *only* using this tuple it seams geonode-user-accounts is trying </div><div class="">to send an Email to all admins ?! As some admin adresses seem not valid anymore my SMTP</div><div class="">Server replies with Error 550 User not found (in production page load forever ...).</div><div class=""><br class=""></div><div class="">Is this the expected behavior, if so is it possible to only use adresses</div><div class="">in ADMINS?</div><div class=""><br class=""></div><div class="">Thanks!</div><div class=""><br class=""></div><div class="">Toni</div><div class=""><br class=""></div><div class="">#################################</div><div class="">Geonode 2.4<b class=""> / local_settings.py</b></div><div class=""><br class=""></div><div class="">ADMINS = (<br class="">            (’toni, '<a href="mailto:toni.schoenbuchner@csgis.de" class="">toni.schoenbuchner@csgis.de</a>'),<br class="">         )<br class=""><br class=""># Account registration<br class="">REGISTRATION_OPEN = True<br class="">ACCOUNT_EMAIL_CONFIRMATION_EMAIL = True<br class="">ACCOUNT_EMAIL_CONFIRMATION_REQUIRED = True<br class="">ACCOUNT_APPROVAL_REQUIRED = True<br class=""><br class=""># Uncomment the following to use a Gmail account as the email backend<br class="">EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'<br class="">EMAIL_USE_TLS = True<br class="">EMAIL_USE_SSL = True<br class="">EMAIL_HOST = '<a href="http://mail.xxx.de" class="">mail.xxx.de</a>'<br class="">EMAIL_HOST_USER = '<a href="mailto:geoserv@xxx.de" class="">geoserv@xxx.de</a>'<br class="">EMAIL_HOST_PASSWORD = 'xxx'<br class="">EMAIL_PORT = 587<br class="">DEFAULT_FROM_EMAIL = EMAIL_HOST_USER<br class="">THEME_ACCOUNT_CONTACT_EMAIL = '<a href="mailto:geoserv@xxx.de" class="">geoserv@xxx.de</a>‘</div><div class=""><br class=""></div><div class="">#################################</div></body></html>