Changeset 3617

Show
Ignore:
Timestamp:
04/23/08 22:07:14
Author:
jdapena
Message:

* libtinymail-camel/tny-camel-mime-part.c:

        • (tny_camel_mime_part_is_attachment_default): consider as
          attachments parts that have filename= in disposition even
          if they're "inline".
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ChangeLog

    r3614 r3617  
     12008-04-23  José Dapena Paz  <jdapena@igalia.com> 
     2 
     3        * libtinymail-camel/tny-camel-mime-part.c: 
     4          (tny_camel_mime_part_is_attachment_default): consider as 
     5          attachments parts that have filename= in disposition even 
     6          if they're "inline". 
     7 
    182008-04-23  Philip Van Hoof <pvanhoof@gnome.org> 
    29 
  • trunk/libtinymail-camel/tny-camel-mime-part.c

    r3594 r3617  
    619619 
    620620        if (contdisp) { 
    621                 if (camel_strstrcase (contdisp, "inline")) 
    622                         return FALSE; 
    623621                if (camel_strstrcase (contdisp, "attachment")) 
    624622                        return TRUE; 
     623                if (camel_strstrcase (contdisp, "inline") && (camel_strstrcase (contdisp, "filename=") == NULL)) 
     624                        return FALSE; 
    625625        } 
    626626