Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does ejabberd support offline file transfers? [closed]

Tags:

xmpp

ejabberd

I am working on an XMPP client, using ejabberd as server. My question is how can I support offline file transferring?

I only want to do the offline file transferring for image files.

For example, I can transfer an image to John even if he is offline. When John comes back online, the server will send him the image.

How can I do that?

like image 992
privateson Avatar asked Jun 05 '10 18:06

privateson


1 Answers

There is currently no extension for XMPP to allow offline file transfers.

Presumably this would need to be supported by the recipient's server, and it would need to be implemented as a server-specific plugin.

Alternatively a project that may be of interest to you is Jabber Disk, which allows you to upload a file via XMPP, and then returns a HTTP URL you can send to people (for example as an offline message).

like image 94
MattJ Avatar answered Nov 09 '22 08:11

MattJ