Work around for uuencode attachments not displaying in Thunderbird 24.5.0

Written by James McDonald

June 16, 2014

I use a backup script to gzip and then email my webserver backups to my gmail account.

I was using the following line of code to attach the gzip / tar.bz2 files to an email.

( echo backup of $ETC; uuencode $DBDIR/$ETC $ETC ) | mail -s "Backup of $ETC $DATE" $TO

However when I viewed the resulting email in Thunderbird I see the encoded text in the body of the email instead of it being an attachment.
displayed_as_encoded_text_not_attachment

Looking for a work-a-round because I’m stuck with my version of Thunderbird I discovered I could change the way I send the backup files by changing from using the mail utility to mutt:

echo backup of $ETC | mutt -s "Backup of $ETC $DATE" -a $DBDIR/$ETC -- $TO

This changes the internal composition of the email so that Thunderbird is happy with it:
mutt_created_attachment_message_source

The way you should see your attachments in an email client:
displayed_as_attachment_ok

0 Comments

Submit a Comment

Your email address will not be published. Required fields are marked *

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

The reCAPTCHA verification period has expired. Please reload the page.

You May Also Like…

Clear HSTS Settings in CHrome

Open chrome://net-internals/#hsts enter the domain in the query field and click Query to confirm it has HSTS settings...

Ubuntu on Hyper-v

It boils town to installing linux-azure # as root or sudo apt-get update apt-get install linux-azure...