Update to Blogsphere Template
I found a small problem with the email interface to the Blogsphere template from openNTF.org. It appears that incoming messages are not processed into postings correctly. Specifically, certain fields are not set even though it looks right from the Notes interface. In the blog entries view there is an error in the data column. On the web, the link in the confirmation email doesn't work. The new blog posting shows on the homepage, but it is not listed in the "Recent Postings" side block.
I remedied the problem by adding a ComputeWithForm call to the ProcessEmail function in the Agnt_Sched_ProcessEmails agent:
success = blogentryDoc.ComputeWithForm( False, False )If success Then
Call blogentryDoc.Save(True,True)
End If
This fix doesn't solve the problem of the bad link in the confirmation email, but I'll save that for another day
NOTE: This was submitted via email
