Just log onto your Appengine Dashboard for your app and go to the Task
Queues menu. (go here: https://appengine.google.com/ , log in, and click on
your app name to get to dashboard)

There should be a task in one of your queues with a bunch of retries. (As
people have mentioned, there's some deferred task that is attempting to send
email.. but is using a bad sender address.. and this is failing the deferred
task.. which then makes the task retry again and again.)

Cancel that task that has been retried multiple times.  Luckily, it has kept
backing off.. and you'll probably see that the scheduled start time is hours
away..

On Tue, Sep 7, 2010 at 2:09 PM, Suleyman Yalinbas <[email protected]>wrote:

> It does, but as I said the weird thing is that I am not making those calls.
> Since reset there are another 66 such calls. And there has not been any http
> calls nor any scheduled cron jobs either.
>
>
> Here's the log:
>
> Unauthorized sender
> Traceback (most recent call last):
>   File 
> "/base/python_runtime/python_lib/versions/1/google/appengine/ext/webapp/__init__.py",
>  line 513, in __call__
>     handler.post(*groups)
>   File 
> "/base/python_runtime/python_lib/versions/1/google/appengine/ext/deferred/deferred.py",
>  line 258, in post
>     run(self.request.body)
>   File 
> "/base/python_runtime/python_lib/versions/1/google/appengine/ext/deferred/deferred.py",
>  line 124, in run
>     return func(*args, **kwds)
>   File 
> "/base/data/home/apps/myapp/1.344627811942353733/djangoappengine/mail.py", 
> line 8, in _send_deferred
>     message.send()
>   File 
> "/base/python_runtime/python_lib/versions/1/google/appengine/api/mail.py", 
> line 745, in send
>     raise ERROR_MAP[e.application_error](e.error_detail)
> InvalidSenderError: Unauthorized sender
>
>
>
>
> On Tue, Sep 7, 2010 at 1:30 PM, Robert Kluin <[email protected]>wrote:
>
>> Check the application logs and see if something is getting called.
>>
>>
>>
>>
>>
>>
>> On Tue, Sep 7, 2010 at 02:08, speedbumpsy <[email protected]> wrote:
>> >
>> > Hello,
>> >
>> > I recently started experimenting Google App Engine (+Django + non-
>> > rel). After I upload a working (but very simple) code and hitting only
>> > view I see a lot of increase in "Mail API Calls" and "Recipient e-
>> > mailed" numbers. This simple experimental application has code or
>> > whatsoever about mail api calls. How come it is increasing slowly even
>> > if I do not make any http calls to the my site at all.
>> >
>> > Anyone can explain?
>> >
>> > Thanks
>> >
>> > --
>> > You received this message because you are subscribed to the Google
>> Groups "Google App Engine" group.
>> > To post to this group, send email to [email protected].
>> > To unsubscribe from this group, send email to
>> [email protected]<google-appengine%[email protected]>
>> .
>> > For more options, visit this group at
>> http://groups.google.com/group/google-appengine?hl=en.
>> >
>> >
>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Google App Engine" group.
>> To post to this group, send email to [email protected].
>> To unsubscribe from this group, send email to
>> [email protected]<google-appengine%[email protected]>
>> .
>> For more options, visit this group at
>> http://groups.google.com/group/google-appengine?hl=en.
>>
>>
>  --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected]<google-appengine%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/google-appengine?hl=en.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to