vote up 1 vote down star

I would like to set up a web application on my company's Linux box for enabling secure file exchange with our customers. I'm looking for an open source application, preferably with a large user base, that supports these features:

  • works over HTTPS (so SFTP or other similar solutions are out of the question)
  • allows users to upload files using credentials that we provide them with in advance
  • the files thus uploaded should only be visible when using the same account (or an admin account)
  • allows an admin to upload files into a user account for the user to download (this doesn't necessarily have to happen via the webapp)
  • (optional) it should provide email notification when new files are uploaded by users
  • (optional) it should ensure automatic cleanup of the uploaded files, preferably after a period of time that the uploader can set

I've spent some time searching for such an application both on Google and stack overflow, but I haven't found anything compelling yet. Maybe someone here knows about such a thing and can help me with a pointer? Thanks in advance.

flag
A while ago, I had to develop my own applications to do that. Nowadays, I would recommend using a paid service to do just that. – David Segonds Feb 17 at 21:09

2 Answers

vote up 1 vote down check

A solution can be F*EX, see http://fex.rus.uni-stuttgart.de/

link|flag
Sounds brilliant. I would even say "exactly what I asked for", which is why I set this as the "accepted answer" to my question. There's a catch, though, which I failed to specify exactly. I need it to runnable within Apache, since I can't take Apache down and I can't move it to another port. – bdumitriu Feb 26 at 7:37
And, as you mention in the FAQ, this is not possible. I see you mention two other projects there, I will have a look, maybe I find what I need there. In either case, thanks for writing and pointing me to F*EX. – bdumitriu Feb 26 at 7:39
You can run F*EX on another port, see fex.rus.uni-stuttgart.de:8080 – Ulli Horlacher Feb 26 at 16:42
For more questions, contact me directly by e-mail: framstag@rus.uni-stuttgart.de – Ulli Horlacher Feb 26 at 16:43
vote up 1 vote down

How about WebDAV? This is what subversion uses to sync files over HTTPS. Here's a list of open source WebDAV projects.

link|flag
Thanks for the tip. I've started experimenting with WebDAV yesterday and it got me some steps ahead. It's not quite as plug-and-play as I would have wished, but I might be able to use it. Still hoping for a slightly more friendly web application. – bdumitriu Feb 18 at 17:13

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.