From d41dfdd96ba79d489c6bbfb7e57b225d3cc3c4bc Mon Sep 17 00:00:00 2001 From: Jamie Cameron Date: Fri, 2 Nov 2007 19:35:41 +0000 Subject: [PATCH] Display embedded images from outlook --- mailboxes/folders-lib.pl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/mailboxes/folders-lib.pl b/mailboxes/folders-lib.pl index c5744f717..0ff798ec9 100644 --- a/mailboxes/folders-lib.pl +++ b/mailboxes/folders-lib.pl @@ -2264,7 +2264,7 @@ sub editable_mail return $_[0]->{'header'}->{'subject'} !~ /DON'T DELETE THIS MESSAGE.*FOLDER INTERNAL DATA/; } -# fix_cids(html, &attachments, url-prefix, &cid-list) +# fix_cids(html, &attachments, url-prefix) # Replaces HTML like img src=cid:XXX with img src=detach.cgi?whatever sub fix_cids { @@ -2300,7 +2300,6 @@ sub fix_contentlocation { local ($cont) = grep { $_->{'header'}->{'content-location'} eq $_[0] || $_->{'header'}->{'content-location'} eq "<$_[0]>" } @{$_[1]}; -print STDERR "looking for content-location $_[0] = $cont\n"; if ($cont) { return "$_[2]&attach=$cont->{'idx'}"; }