}
@Override
protected void processForSend() throws Exception
{
MessageXML m = this.getMessage();
String share = m.getParameter(MessageXML.PARAM_SHARE_NAME);
String loc = this.co.getSharesXML().getLocation(share);
String file = m.getParameter(MessageXML.PARAM_FILE_NAME);
String loc_rel = UtlFile.relativePath(file, loc);
m.setParameter(MessageXML.PARAM_FILE_NAME, loc_rel);
m.setAttatchment(file);
super.processForSend();
}