Little modifikation I have added an singly qut masqreding to the script because it fails when in the subject is an single qout:
Original: if ($header =~ m/<em>Subject<\/em>:(.*)/) { $subject = $1; }
New: if ($header =~ m/<em>Subject<\/em>:(.*)/) { ($subject = $1) =~ s/'/\\'/g; }
This works fine.
Tiny compile bugfix I found a tiny bug in the Makefile that would prevent successful compilation on some systems (although everything works fine on mine). It's been fixed, so compilation and installation should run smoothly now.
A C language version of lzip.
A Linux embedded appliance framework.
Little modifikation
I have added an singly qut masqreding to the script because it fails when in the subject is an single qout:
Original:
if ($header =~ m/<em>Subject<\/em>:(.*)/) { $subject = $1; }
New:
if ($header =~ m/<em>Subject<\/em>:(.*)/) { ($subject = $1) =~ s/'/\\'/g; }
This works fine.