google-apps

Feedback on availability with Google App Engine

We've had some good experiences building an app on Google App Engine, this first app's target audience are Google Apps users, so no issues there in terms of it being hosted on Google infrastructure. We like it so much that we would like to investigate using it for another app, however this next project is for a client who is not really ...

One click login to my google apps solution how can I do it?

Hi guys I'm developing a google apps solution and I'm building on the tutorial application give by google at http://code.google.com/googleapps/marketplace/tutorial_php.html - the thing is that the example given sets up the application such that the user has to enter in manually the email address or username and then it takes the user thr...

Can't retrieve more than 2 gmail messages using Zend framework imap access - server dies - doens't report any error

Hi guys I'm working on a google apps application. Basically I've set it up so users can add multiple gmail addresses and check on their inboxes in the application. It works fine with a google apps email address however when I add a gmail address it just dies out. I'm using this code here: $mail = new Zend_Mail_Storage_Imap($mail_option...

How do I log into a google apps account associated with my custom application without prompting the user?

Hi guys, I'm working on a google apps based application - its a project management system and I'm setting it such that it requires a single google apps account to be used for all users of a particular installed instance. I.E someone installs it using a google apps account he/she can create users who can log in from a separate login scree...

Can I retain a Google apps session token permanently for a specific user who logs into my google application?

Hi guys, is it possible to retain upon authorization a single session token for a user who signs into my gogle application. CUrrently my application seems to every now and then require the user to authenticate into google apps. I think it has to do with session dying out or so. I have the following code: function getCurrentUrl() { g...

GData is user part of Apps Premier domains or Apps Standard domains

Is there a way do figure out if a user is part of Apps Premier domains, Apps Standard domains or just a regular google account? ...

Login google account without openID

Can I make a login form on my outside website that would allow users to login to our Google App? Is there an other possibility than using OpenID? ...

How do I seamlessly authenticate users to use services associated with a Google Apps account?

Hi guys I'm building a Google Apps based solution. Basically I'm setting it up such that: When a Google Apps account holder installs it he/she enters the authentication details for a single Googles Apps account to be used - that account would be used by all users of the instance of the installed system for uploading to Google Docs asso...

Is there a user provisioning API, and/or account migration/transition tool for Gmail on Google Apps?

I've decided to move all the mail accounts in my domain to Google Apps: Is there a subtle migration tool that can make the transition painless, since I want all the mail history and folders to be intact. I'm also looking to duplicate the user provisioning API with Google Apps Users alternative. Are my goals realistic? Are there any tool...

How can I set Invitee in Google Calendar through Python?

I am Setting Google Calendar via python command like this def _InsertQuickAddEvent(self, content="Tennis with dddddd on 5/19/2010 4am-5:30am"): """Creates an event with the quick_add property set to true so the content is processed as quick add content instead of as an event description.""" event = gdata.calendar.CalendarEventEntry()...

How to build a private "Google Apps Marketplace" apps for gmail intergration like Rapportive does

Google Apps Marketplace (http://www.google.com/enterprise/marketplace/) has enabled contextual gadgets so I could integrate my functionality in gmail. I would like to do so but I don't want to publish the app. Is this possible? (http://developer.googleapps.com/marketplace/getting-started tells me I have to become a vendor.) If I can do s...

google apps single sign on

Hi, I want to integrate my app with google apps so that the users will be able to use gmail with single sign on facility. I have gone through the documentation and I know that I will need to setup an identity management on my side and will have to talk to gapps with one of the specified protocol (http://code.google.com/googleapps/domai...

Change Gmail message routing on individual mailboxes

We are using dual delivery for one of our Google Apps domains and need to be able to disable mail delivery to the Gmail account. You can manually update the settings on a per user basis through the Admin interface by unchecking the box next to "Google Apps Email" in the Email routing section. From the Google Apps API documentation for t...

DotNetOpenAuth - Using OpenIdButton for Google Apps

I am an ASP.NET newbie and I am trying to design an OpenID/SSO system for an internal web application. The web application is pretty simple and the authentication is currently being managed by a database with usernames and passwords. I want to replace the existing accounts stored in the database with Google Apps accounts. I have downl...

Access Google-apps public spreadsheet via Javascript

Spent a bunch of time looking at this.. It seems that what little info there was about accessing a Google-apps spreadsheet is not very well maintained.. At Google IO this year there was an announcement of enhanced Google-apps script. Including UI elements.. That got me to thinking of creating a widget based on data in Google spreadsheet...

Application in which I need Auto-update just like Gmail inbox,calendar Face-Book etc

I have made application in which I have kept calendar,now I need that if admin changes his calendar and if it is affected to user and if that user is currently looking that calendar then whatever changes Admin has done that should reflect to user without refreshing the page, just like when email comes to Gmail then without refreshing we ...

Google App Engine in your domain: what about the URIs (mail, jabber, etc.)

Reading Google's documentation (http://code.google.com/appengine/articles/domains.html), I understand I can allow users to access my application from my own domain. I've done that for few NGOs in the past and access like http://mail.[domain]/ is redirected to http://mail.google.com/a/[domain]/. My questions: Does it mean an access to...

ASP.Net : Error in sending EMail from Google Apps hosted at Godaddy

Hello, I want to send EMail from my Website hosted at GoDaddy, and we are using Google Apps for Emails. Here is my code in ASP.Net/ C# MailMessage mMailMessage = new MailMessage(); mMailMessage.From = new MailAddress("[email protected]", "GotFeedback", System.Text.Encoding.UTF8); mMailMessage.To.Add(new MailAddress("feed...

Has anyone successfully set up their email settings on EngineYard?

I am attempting to add email capabilities to my app (forgotten password, notifications, etc.) and I am using EngineYard for hosting. I have successfully configured email in my test environment but upon uploading to EY it seems to error out in Production. I don't pay for their support and the only resource is a bit vague (or beyond me). ...

Coversion of exchange server's fetched XML to Google Calendar compitable XML

I want to migrate my calendar from exchange server to Google calendar, I fetched exchange server's XML now I have to pass that XML to google calendar's python code so that my calendar can be set, Now my question is how can i convert my exchange server's XML to Google's compatible XML? ...