My Askbot instance is running into the private network of my company and has no authorized access to the web. An other aspect is that Credentials are managed with the internal LDAP. Even if is not critical, we do not want to create automatically records based on the emails in the gravatar database.
So, I would like to know what's the best way to disable requests to gravatar.com. Knowing that I want to keep the possibility to the user to upload the image he wants and it does not matter if the image by default is the same for all the users.
This was solved: as admin go to "settings" ... -> "user settings" -> uncheck "use automatic avatars from gravatar.com".
Well the matter I want to point is in the user_get_avatar_url function from models/__init__.py
In this function, we have :
...
logging.critical(message)
raise django_exceptions.ImproperlyConfigured(message)
else:
return self.get_gravatar_url(size)
else:
...
But shouldn't it be
...
logging.critical(message)
raise django_exceptions.ImproperlyConfigured(message)
else:
if askbot_settings.ENABLE_GRAVATAR:
return self.get_gravatar_url(size)
else:
return self.get_default_avatar_url(size)
else:
...
in order to entirely disable requests to gravatar website?
Create your Q&A site at askbot.com. Managed Askbot hosting at just $15/mo. Dedicated hosting, support contracts, consulting services.
create your Q&A siteAsked: 2011-11-09 05:55:10 -0500
Seen: 171 times
Last updated: Jul 30 '12
Feature request: Add classes to body in default skin
Search related questions when posting a question
Please allow diacritic characters for user names.
Please allow hyphens for user names.
Can the interface for searching with tags be improved?
can (should) users send email or post messages to moderators? [done]
Plans to support attachments other than images? [done]
Copyright Askbot, 2010-2011. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.
Just an aside: Generating robot avatars using http://robohash.org/ could be a useful alternative to gravatar.
Joseph ( 2011-11-16 03:30:21 -0500 )editWe should get this done soon, someone is looking at this feature.
Evgeny ( 2011-11-24 12:13:44 -0500 )edit