Gossamer Forum
Home : Products : Gossamer Mail : Discussion :

Re: [dig.it] Error forwarding attachments...

Quote Reply
Re: [dig.it] Error forwarding attachments... In reply to
If you take a look at Compose.pm, line ~149, you'll see:
Code:
$write = "$attchdir/" . ($_->{msgdata_suggestedname} || $i++);
The filename there should be escaped, so it should be:
Code:
$write = "$attchdir/" . $IN->escape($_->{msgdata_suggestedname} || $i++);

Adrian
Subject Author Views Date
Thread Error forwarding attachments... dig.it 2991 Mar 26, 2002, 8:56 PM
Post Re: [dig.it] Error forwarding attachments...
frankLo 2918 Mar 27, 2002, 1:06 PM
Thread Re: [dig.it] Error forwarding attachments...
brewt 2936 Mar 27, 2002, 10:29 PM
Post Re: [brewt] Error forwarding attachments...
dig.it 2911 Mar 28, 2002, 10:33 AM
Thread Re: [brewt] Error forwarding attachments...
ryel01 2793 Nov 22, 2002, 12:20 PM
Post Re: [ryel01] Error forwarding attachments...
brewt 2799 Nov 22, 2002, 2:04 PM