muquit / mailsend

A program to send mail via SMTP from command line
Other
295 stars 68 forks source link

Wrong MD5 checksum in releases page #53

Closed j4zzcat closed 10 years ago

j4zzcat commented 10 years ago

In https://github.com/muquit/mailsend/releases/, the file "mailsend1.16.exe.zip" has a checksum of 2bd18a2748c94e28c1cefeb8e0a28934 - I get a different result.

muquit commented 10 years ago

Thanks for catching the problem. It was because mistakenly I took the md5 of the path of the binary instead of the content (from a script I wrote).. sorry about that!

example:

$ echo -n /home/muquit/mailsend_bins/mailsend1.16.exe.zip |md5sum 2bd18a2748c94e28c1cefeb8e0a28934 -

$ md5sum /home/muquit/mailsend_bins/mailsend1.16.exe.zip 32dd01175c5b9983b4c080981d664f04 /home/muquit/mailsend_bins/mailsend1.16.exe.zip

All the checksums in the release page are wrong, however the files are not compromised in anyway. The google download page for each of the file has upload date and sha1 checksum.

I will fix the error in the release page shortly.

Thanks.