[google-appengine] Re: Mail API stops sending email from one admin address, still sends from others

2011-10-24 Thread Nevin Freeman
Good catch! Thanks for helping me figure this out! Now to figure out which part of the TOS I am in violation of, if any. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appengine@googlegroups.com.

[google-appengine] Re: Mail API stops sending email from one admin address, still sends from others

2011-10-23 Thread Nevin Freeman
10k email, i cant send more than 30 and it bugs. 2011/10/21 Nevin Freeman nevin.free...@gmail.com My app sends an email to about 10k people every morning (we are a news website, and send out an alert that tells people what the new stories are). Until today it's worked really well

[google-appengine] Mail API stops sending email from one admin address, still sends from others

2011-10-20 Thread Nevin Freeman
My app sends an email to about 10k people every morning (we are a news website, and send out an alert that tells people what the new stories are). Until today it's worked really well (for over a year). It sends from an address that is registered as an admin (since that's required) which is not

[google-appengine] Re: 1.5.2 SDK Prerelease

2011-07-25 Thread Nevin Freeman
For developers facing this issue locally, it may be useful to know that I only was able to access the old local datastore by adding the flag --default_partition= (without any quotes). -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view

[google-appengine] You cover me, I cover you!

2010-06-30 Thread Nevin Freeman
Hi all, I am the sole developer for http://riabiz.com, a news website running on App Engine. This is a great gig -- I really like that, thanks to App Engine, one amateur can make a site like this from scratch and keep it running well. The trouble is that if I am 'off the grid,' there is nobody

[google-appengine] Re: You cover me, I cover you!

2010-06-30 Thread Nevin Freeman
to be implemented using GWT, it will become much much faster and the code maintainable and clearer. Good job and very nice interface :-) i liked it regards, Rudolf Michael On Wed, Jun 30, 2010 at 9:37 PM, Nevin Freeman nevin.free...@gmail.comwrote: Hi all, I am the sole developer

[google-appengine] Very strange/unpredictable behavior today... need help!

2010-02-02 Thread Nevin Freeman
I am getting this error when I load my app on the domain www.riabiz.com: Error: Server Error The server encountered an error and could not complete your request. If the problem persists, please report your problem and mention this error message and the query that caused it. When I load it on

[google-appengine] Re: Google App Engine server down ?

2009-11-17 Thread Nevin Freeman
I had similar errors, app completely down, now seems to be back up. On Nov 17, 4:39 pm, arbi arbin...@gmail.com wrote: In fact I canno't even connect to appengine.google.com ! App completely down :( On 17 nov, 16:35, Benjamin bsaut...@gmail.com wrote: Yikes. Server error on my

[google-appengine] Need help understanding an error (not sure if it is my fault or not)

2009-08-27 Thread Nevin Freeman
someone show me the syntax to make this fail gracefully? (I think I've seen an example before, but don't remember where to find it). Thanks in advance-- Nevin Freeman --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google

[google-appengine] Could Mailman run on AppEngine?

2009-05-19 Thread Nevin Freeman
Has anyone tried to port Mailman (http://www.gnu.org/software/mailman/ index.html) to run on AppEngine? I'm assuming there would be some major barriers, but I think they might be beyond what I have time for. All comments on the topic welcome! Thanks, Nevin

[google-appengine] Re: how could you charge users for using your app?

2009-02-22 Thread Nevin Freeman
I'm also interested in this topic and can't really find anything out there on how to get started. Any information would be appreciated. Thanks, Nevin On Feb 5, 3:24 am, Sharad sharad.pa...@kworks.co.uk wrote: Alex, Is Google Checkout capable of managing subscriptions (as opposed to one-off

[google-appengine] Re: Query filter based on the Longitude attribute of a db.GeoPt property

2008-09-10 Thread Nevin Freeman
Since starting this thread, I've come up with something slightly similar to what you are suggesting here. Rather than store metadata about both lat and lng, I store a ListProperty of lngs to differing degrees of accuracy, and still use inequalities for latitude. So if you have a point with Lat,

[google-appengine] Re: GQL Query issue

2008-08-28 Thread Nevin Freeman
José, Many different workarounds are available, depending on your circumstances. The simplest (not ideal) thing to do would be to run two queries and then take the intersection of the two results, i.e.: q1 = Model.gql(WHERE prop1 :1, number1) q2 = Model.gql(WHERE prop2 :1, number2) batch1 =