In case Alkacon is using apache commons fileupload, here is a fix for this issue:<br><br><a href="http://commons.apache.org/fileupload/faq.html#whole-path-from-IE">http://commons.apache.org/fileupload/faq.html#whole-path-from-IE</a><br>

<br><br><br><div class="gmail_quote">On 23 November 2011 11:11, Sandrine Prousteau <span dir="ltr"><<a href="mailto:s.prousteau@eurelis.com">s.prousteau@eurelis.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">

Hi<br>
<br>
I found an issue in Alkacon Formgenerator 2.0 on OpenCms 8.0.2.<br>
I have a form with file fields, with can be submit from Internet<br>
Explorer 6. IE6 set the value as a full path (C:\..) with Windows<br>
separator "\".<br>
If OpenCms is installed on a server on Linux, le line 1911 in sendMail()<br>
function :<br>
String filename =<br>
attachment.getName().substring(attachment.getName().lastIndexOf(File.sep<br>
arator) + 1);<br>
try to extract the filename with "/"...<br>
So with IE6, the mail received contains attachment with the full path of<br>
user's file!<br>
<br>
In my project, I have overload Alkacon classes with a custom jsp, and<br>
put this code:<br>
int index_start_name = 0;<br>
if(attachment.getName().lastIndexOf(File.separator)!=-1){<br>
                                        index_start_name =<br>
attachment.getName().lastIndexOf(File.separator) + 1;<br>
}else if(attachment.getName().lastIndexOf("/")!=-1){<br>
                                        index_start_name =<br>
attachment.getName().lastIndexOf("/") + 1;<br>
}else if(attachment.getName().lastIndexOf("\\")!=-1){<br>
                                        index_start_name =<br>
attachment.getName().lastIndexOf("\\") + 1;<br>
}<br>
String filename = attachment.getName().substring(index_start_name);<br>
<br>
Please resolve this issue in the next version of FormGenerator! :)<br>
<br>
S.<br>
_______________________________________________<br>
This mail is sent to you from the opencms-dev mailing list<br>
To change your list options, or to unsubscribe from the list, please visit<br>
<a href="http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev" target="_blank">http://lists.opencms.org/cgi-bin/mailman/listinfo/opencms-dev</a><br>
<br>
<br>
<br>
</blockquote></div><br>