This isn't built directly into FogBugz for security reasons. However, you can install the BugMonkey plug-in and insert the following JavaScript to link other protocols:
name: Auto-link more protocols in cases
description: Makes links out of ftp:// file:// mailto:// etc in cases
author: Rob Sobers
version: 1.0.0.0
js:
jQuery.fn.addlink = function ()
{
var regex = /((ftp|telnet|gopher|file|news|mailto)\:\/\/\w*(\.[a-zA-Z0-9\/\$\-_\@\!\*\""\'\(\)\,\=\;\#\?\:\+\%\~]*)*[a-zA-Z0-9\/])/igm
return this.each(function ()
{
if (this.className.indexOf("editable") < 0 && this.innerHTML.indexOf("emailActions") < 0) {
this.innerHTML = this.innerHTML.replace(regex, "<a href=\"$1\">$1</a>");
}
});
};
$(".bugevent .body").addlink();
$(".bugevent .emailBody").addlink();
You can modify the RegEx to include (or remove) protocols as you wish.