backup/restore from-to Gmail? [closed] - iphone

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
I would like to implement in my app, written in Lua,the option to save a backup file to Gmail and restore it from there.
I just need how to save one file and restore that from the same account again.
Several apps use that feature now ( i guess using the Gmail as HD Feature).
Any ideas? I could read also PHP, Object-C and Java sources if you have nothing in Lua :)
I searched for infos in the net, but did not found a single demo source.

A google search turned up these IMAP clients:
luaimap
imapfilter
And from the Lua mailing list
limap

Related

Alternative self hosted solution for google apps (mainly document/spreadsheet)? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
As titled, I'm finding for a software can be installed on my own server, to replace for google apps.
I'm open to commercial solution, the point is I want to keep the data on my own server.
Any advice is appreciated
Okie doke. This is actually pretty challenging -- you're asking for online editing, which is very cloud-oriented, but using a private server. If all you wanted was file services, then you'd have a lot of options -- OwnCloud.org is a personal favorite, but there are a bunch.
If you really want to be able to edit online but save to a private server, SharePoint comes to mind first. Alfresco and its ilk are also out there, but that's enterprise-oriented. There are theoretically some ways to use OpenOffice programs in a browser (see also this) but I've never seen them in action.
Hope that gets you started. Good luck.

Looking For Joomla Plugin [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
This isn't a development question, I'm Looking for a plugin for Joomla that allows users to login to a secure zone with universal credentials that will be provided by admin. After logging in that user will be granted access and will be able to download private files.
Any help will be appreciated.
Thank you
You want a component, not a plugin. The word 'plugin' has special meaning in Joomla. See here for an explanation:
http://docs.joomla.org/Extension_types_%28general_definitions%29
I would suggest looking at something like DocMan:
http://www.joomlatools.eu/products/docman

Is there an opensource "MSWord doc to PDF" convert library [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am trying to convert word(.doc) into PDF on iOS device. Is there an opensource solution where I can use as a C/C++ lib or something?
There really is no conveniently open-source library that will do this for you: you may get some mileage out of WvWare but I've never seen it used on iOS and I'm not sure what platform dependencies it may need.
If your iphone is connected to the net, then you can call a Docmosis web service to do it. You need to sign up though.

IMAP Libraries for iPhone [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I have been trying to build the framework MailCore which is a dependency in a open source project, that is ReMail. I have followed all the steps given on ReMail Website (http://code.google.com/p/remail-iphone/) to get that project from their repo, but the code is still not getting built. Is there any other good alternative to MailCore for talking a IMAP server and pulling the mails from it?
Thanks,
Ulhas
MailCore is basically a wrapper around libetpan. A wrapper around a very old version of libetpan.
There is a new libetpan version available that I use successfully in an app.

Can my app be launched from mail? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I'm working on a new app and would love to have the following feature. If the user is in Apple's Mail, s/he can have the option to open my app.
EDIT: The comments have pointed me to this question, which is perfect for handling attachments, which I also want to do, but I also want the user to be able to copy some text, a date or an e-mail address, and then open my app with that information in tow.
Is there an API set up whereby I can do this?
Thanks!
You can create a custom URL scheme for your app, something like app://path - this is how Facebook handles things, they have URLs like fb://profile/12345.
http://iosdevelopertips.com/cocoa/launching-your-own-application-via-a-custom-url-scheme.html