Re: [google-appengine] IMAP using OAuth2 on App Engine

2013-08-16 Thread Charlie Fineman
Yep... it's a bug; the fix is slated for the upcoming release.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [google-appengine] IMAP using OAuth2 on App Engine

2013-08-23 Thread Charlie Fineman
Ah yes, thanks for reminding me... there is also a bug with the JavaMail
1.4.2 code in how properties sent to the session are handled. I ended up
adding the lines 93-95 to the example provided on code.google.com (the
1.4.2 code does not properly honor the values passed in via the session
factory.

 81:   public static IMAPStore connectToImap(String host,
 82: int port,
 83: String userEmail,
 84: String oauthToken,
 85: boolean debug) throws
Exception {
 86: Properties props = new Properties();
 87: props.put("mail.imaps.sasl.enable", "true");
 88: props.put("mail.imaps.sasl.mechanisms", "XOAUTH2");
 89: props.put(OAuth2SaslClientFactory.OAUTH_TOKEN_PROP, oauthToken);
 90: Session session = Session.getInstance(props);
 91: session.setDebug(debug);
 92:
 93: session.getProperties().setProperty("mail.imaps.sasl.enable",
"true");
 94: session.getProperties().setProperty("mail.imaps.sasl.mechanisms",
"XOAUTH2");
 95:
session.getProperties().setProperty(OAuth2SaslClientFactory.OAUTH_TOKEN_PROP,
oauthToken);


On Fri, Aug 23, 2013 at 4:07 AM, Gonzalo Zamarro <
gzama...@intelligencepartner.com> wrote:

> Hi friend,
>
> I've the same problem than you...
> I've been researching, and I think the session isn't instantiated
> correctly. I attached a picture that shows the difference.
>
> At the top of the image shows the contents of the variable "props" which
> is the same values for the AppEngine project (left image) that the project
> Normal(right image).
> The down images shows the contents of the Session variable, and within
> this, the contents of the variables Properties. Like you can see in the
> left case, is null. But in the right case have values.
>
> It really is a bug, is there any workaround?
>
> Thank you very much in advance.
>
> Regards!
>
>
>
> El viernes, 16 de agosto de 2013 21:53:46 UTC+2, Charlie Fineman escribió:
>
>> Yep... it's a bug; the fix is slated for the upcoming release.
>>
>  --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To post to this group, send email to google-appengine@googlegroups.com.
> Visit this group at http://groups.google.com/group/google-appengine.
> For more options, visit https://groups.google.com/groups/opt_out.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.


[google-appengine] Re: Heartbleed bug?

2014-04-09 Thread Charlie Fineman
Please see: http://googleonlinesecurity.blogspot.com/

On Tuesday, April 8, 2014 7:19:49 AM UTC-7, Doug Anderson wrote:
>
> Is App Engine's SSL protected from the OpenSSL heartbleed bug?  Since a 
> Google Engineer discovered the bug I figure there's a good chance App 
> Engine has the patch. ???
>
> http://heartbleed.com/
> https://www.openssl.org/news/secadv_20140407.txt
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.


Re: [google-appengine] Heartbleed Bug

2014-04-11 Thread Charlie Fineman
Please see the following:
http://googleonlinesecurity.blogspot.com/2014/04/google-services-updated-to-address.html

AppEngine front ends have had the appropriate patches applied.


On Fri, Apr 11, 2014 at 4:19 AM, Vizay Soni  wrote:

> Hi,
>
> Does Google App Engine servers Vulnerable to 
> heartbleedBug?
>
> *--vs*
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google App Engine" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to google-appengine+unsubscr...@googlegroups.com.
> To post to this group, send email to google-appengine@googlegroups.com.
> Visit this group at http://groups.google.com/group/google-appengine.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.