[google-appengine] advice on how to send mails to addresses on vtext.com domain

2011-02-14 Thread Sandeep Arneja
Hello I am trying to send email to phonenum...@vtext.com using google app enigne. My problem is that GAE adds a return-path header to all outgoing mail which can not be overridden. Verizon on the other hand displays the value of the return-path header as the from address. This creates all sorts

[google-appengine] Re: Does task scheduling work on dev_appserver ?

2011-02-10 Thread Sandeep Arneja
Only works in prod. On Feb 10, 6:06 am, Justin justin.worr...@gmail.com wrote: queue.yaml looks as follows: queue: - name: quotes   rate: 6/m   bucket_size: 1 The tasks all get executed, but seemingly 'as soon as possible' rather than my desired one-per-10-seconds. Have I mis-configured

[google-appengine] Re: How to trigger a function every 5 minutes

2011-02-08 Thread Sandeep Arneja
tasks and task queues should do that... schedule one task to run and let that task schedule itself in 5 mins. remember that the eta is not respected in dev env but will work once deployed. On Feb 5, 11:38 pm, momijigari r.oskol...@gmail.com wrote: Hello! I've just started to work with Google

[google-appengine] Re: wild match in url-pattern

2011-02-02 Thread Sandeep Arneja
for that. On Jan 28, 1:40 pm, Sandeep Arneja sandee...@gmail.com wrote: Hi I need help with this: /_ah/mail/* -- WORKS /_ah/mail/xyz* -- DOES NOT WORK Alhough google documentation on incomming mail has: servlet   servlet-namehandleowner/servlet-name   servlet-classHandleOwner/servlet-class

[google-appengine] Issue Parsing incoming mail from Hotmail is Back!!

2011-02-02 Thread Sandeep Arneja
I am once again getting error in GAE SDK 1.4: java.io.IOException: Truncated quoted printable data when I do part.getContent(); Incomming Mails from Google and Yahoo work. I only see the issue from Hotmail. This code given here: http://code.google.com/p/appengine-springmvc3-starter-app/ does

[google-appengine] Re: Considering using Google Accounts for authentication. Good idea?

2011-02-02 Thread Sandeep Arneja
On Tue, Feb 1, 2011 at 4:51 PM, Sandeep Arneja sandee...@gmail.com wrote: I am in favor of google auth for all the reasons you mentioned. It makes things easier, more reliable and cheaper for me. My only concern is that most of my new users feel skeptical at first glance when providing

[google-appengine] Re: Considering using Google Accounts for authentication. Good idea?

2011-02-01 Thread Sandeep Arneja
I am in favor of google auth for all the reasons you mentioned. It makes things easier, more reliable and cheaper for me. My only concern is that most of my new users feel skeptical at first glance when providing their google credentials during the sign up process. During my demos 90% of my users

[google-appengine] wild match in url-pattern

2011-01-28 Thread Sandeep Arneja
Hi I need help with this: /_ah/mail/* -- WORKS /_ah/mail/xyz* -- DOES NOT WORK Alhough google documentation on incomming mail has: servlet servlet-namehandleowner/servlet-name servlet-classHandleOwner/servlet-class /servlet servlet-mapping servlet-namehandleowner/servlet-name

[google-appengine] Re: Email Service with 10K+ addresses in the cc list

2010-06-07 Thread Sandeep Arneja
using a task queue, but it doesn't work, giving a error. I think you should split the list of receivers every 5000, and send 2 o 3 emails. Happy coding. On Jun 3, 7:45 am, Sandeep Arneja sandee...@gmail.com wrote: I am trying to send an email with about 10K+ addresses in the cc list

[google-appengine] Re: Email Service with 10K+ addresses in the cc list

2010-06-07 Thread Sandeep Arneja
a error. I think you should split the list of receivers every 5000, and send 2 o 3 emails. Happy coding. On Jun 3, 7:45 am, Sandeep Arneja sandee...@gmail.com wrote: I am trying to send an email with about 10K+ addresses in the cc list. This is not for spam but in case i have maintainence

[google-appengine] Re: Email Service with 10K+ addresses in the cc list

2010-06-07 Thread Sandeep Arneja
to my entire subscriber base.  WOuld I be saving money by using the BCC field? On Mon, Jun 7, 2010 at 8:34 AM, Sandeep Arneja sandee...@gmail.com wrote: Has anyone experimented with shorter email bcc groups? Whats the maximum number of people I can have in a group without having the task fail

[google-appengine] tasks and queues in google app engine

2010-06-02 Thread Sandeep Arneja
How do i cancel a task / queue which has already been scheduled? What is the point of the task handler? -- 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-appeng...@googlegroups.com. To unsubscribe

[google-appengine] Email Service with 10K+ addresses in the cc list

2010-06-02 Thread Sandeep Arneja
I am trying to send an email with about 10K+ addresses in the cc list. This is not for spam but in case i have maintainence on my application i send an email to all users informing them about the status. How should i design this? I see that google app engine in dev stops responding when i use

[appengine-java] duplicates when updating a detached objects field which hold a collection

2010-06-01 Thread Sandeep Arneja
i am updating a field of a detached object which holds a collection. every object in the collection have another collection. upon updating i see duplicates. the old entires in the collection are present as well as the new one. any ideas why? -- You received this message because you are

[google-appengine] Updating a detached object which has a collection which has another collection

2010-06-01 Thread Sandeep Arneja
I am update the collection field of a detached object and persisting it. Upon view the object i see that it still has the old items in its collection. @PersistenceCapable(detachable=true) @FetchGroup(name=fet_num, member...@persistent(name=numbers)}) public class DirectoryBean { public