Hmmm, I can't think of a really slick solution, but I did come up with this:
1. Create a Bookmark of your server, and set the default Mac folder to a place where you can download file server files, and set the Server folder to the location that people send files.
2. Install Growl (
www.growl.info) and set it up so that Yummy will send an email (to whoever is interested) whenever a download completes
3. Create an AppleScript using Script Editor (HD -> Applications -> AppleScript) and copy the following into it:
tell application "Yummy FTP"
connect "Bookmark Name"
if result is 0 then
using connection "Bookmark Name" set mode "Replace"
repeat
delay 60
with timeout of 32000 seconds
using connection "Bookmark Name" download "*"
end timeout
end repeat
end if
end tell
4. Replace "Bookmark Name" with the name of your Bookmark.
5. Quit Yummy FTP
6. Run the Script.
What will happen:
Yummy will be launched and a connection will be opened to your server. Every 60 seconds, Yummy will try to download everything in the server folder. If something is downloaded an email notification will be sent. If nothing is downloaded, no notification will be sent. Yummy will check again in 60 seconds.
Obviously you'll need to move the files out of the server folder otherwise you'll get constant notifications, but I expect that happens as you process them anyway, and you'll also need to cleanup the downloaded files, but it
will give you the notification you're looking for. If needed, I could add some script to move the server files somewhere else after being downloaded, and also clean up the downloaded files, but let's see what you think of my proposed solution first

Any good?