Not sure if this one counts as a bug, but anyway:
The email address that is entered in the email configuration is displayed in faq.asp (lines 168-171):
" <i>This Example:</i><br />" & vbNewLine & _
" <b>" & strSender & "</b><br />" & vbNewLine & _
" <i>Outputs this:</i><br />" & vbNewLine & _
" <span class=""spnMessageText""><a href=""mailto:" & strSender & """>" & strSender & "</a></span></p>" & vbNewLine & _
I changed in my forum mainly because of Spam Bots to:
" <i>This Example:</i><br />" & vbNewLine & _
" <b>your.email@yourserver.com</b><br />" & vbNewLine & _
" <i>Outputs this:</i><br />" & vbNewLine & _
" <span class=""spnMessageText""><a href=""mailto:your.email@yourserver.com"">" & strSender & "</a></span></p>" & vbNewLine & _
I thought this might be changed in the standard release (like the secure handling of all other (members') email addresses)