On Sun, Mar 7, 2010 at 11:48 AM,  <vszak...@users.sourceforge.net> wrote:
>
>  * contrib/hbtip/sendmail.prg
>    ! Fixed mime type spec: "text/plain;filename=" -> "text/plain; name="

Many thanks, all the return strings should be changed also.

For example:

...
CASE ( cFile LIKE ".+\.vbd" ); RETURN "application/activexdocument=" +
cFname + cFext
CASE ( cFile LIKE ".+\.(asn|asz|asd)" ); RETURN "application/astound="
+ cFname + cFext
...

with

CASE ( cFile LIKE ".+\.vbd" ); RETURN "application/activexdocument;
name=" + cFname + cFext
CASE ( cFile LIKE ".+\.(asn|asz|asd)" ); RETURN "application/astound;
name=" + cFname + cFext

best regards,
Lorenzo
_______________________________________________
Harbour mailing list (attachment size limit: 40KB)
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to