We are always looking to better our hosting and support. Currently we have a fully functional and secure core system. There are always improvements to be made, and we would love to hear from you if you would like a new feature. The following is a list of ideas. If you think any of these should be implemented, please consider using the feedback link on the left of the screen to suggest it.
To help mirror a file, you would have to download the file and publish it's metadata. Here is a small script to do that:
#!/bin/bash
echo UNTESTED
exit 1
mirrorpath='http://example.com/mirrordir'
url=$1
bs=`basename "$url"`
#Download the file
wget -O "$bs" "$url"
#Create MD5 hash
md5sum "$bs" > "$bs"_md5.txt
#Post Metadata
wget http://www.dynmirror.net/add/?url="$mirrorpath/$bs"_md5.txt
#Done, you are now a registered mirror of that file