# HG changeset patch # User Pawel Solyga # Date 1235059984 0 # Node ID da41001a097e6b48d9876b5f087328cc45dc2913 # Parent 237f4cf6936d57dfb2d1d1afe1671f3d09d9e300 Add noreply email property to Site model. Still missing cleaner method and changes in notifications module. Patch by: Pawel Solyga Reviewed by: to-be- reviewed diff -r 237f4cf6936d -r da41001a097e app/soc/models/site.py --- a/app/soc/models/site.py Thu Feb 19 08:10:25 2009 +0000 +++ b/app/soc/models/site.py Thu Feb 19 16:13:04 2009 +0000 @@ -52,3 +52,10 @@ gmaps_api_key.help_text = ugettext( 'Valid Google Maps API Key. This key is used for ' 'embedding Google Maps into the website.') + + #: No Reply Email address used for sending notification emails to site users + noreply_email = db.EmailProperty(verbose_name=ugettext('No reply email')) + noreply_email.help_text = ugettext( + 'No reply email address is used for sending emails to site users. ' + 'Email address provided in this field needs to be added as Developer ' + 'in GAE admin console.')