11-14-2006 12:06 AM
12-21-2007 12:31 AM
Is it possible to define that Alfresco should notify subscribed users that some forum/discussion/thread has new replies?This query is almost a year old. I have the same question. Does anyone know the answer?
[]'s
01-16-2008 12:17 PM
02-06-2008 03:22 PM
There is no UI or config to do this. But, you can setup a Rule that fires when any InBound object is created/modified, and you can use the JavaScript to see what type of object that is (See the forumModel.xml in the Alfresco distribution) and then send an email again using the JavaScript API - so it is possible but not as easy as point-and-click
http://wiki.alfresco.com/wiki/JavaScript_API
Kevin
02-06-2008 04:47 PM
02-07-2008 05:08 AM
There is no UI or config to do this. But, you can setup a Rule that fires when any InBound object is created/modified, and you can use the JavaScript to see what type of object that is (See the forumModel.xml in the Alfresco distribution) and then send an email again using the JavaScript API - so it is possible but not as easy as point-and-click
http://wiki.alfresco.com/wiki/JavaScript_API
Kevin, could you point us to an example of how the Javascript API could be used in this specific instance? Or could you provide an outline if no example exists?
Without this feature, we probably won't be able to get approval for deploying Alfresco in our organization.
02-07-2008 07:27 AM
if (document.type == fm:post)
{
// create mail action
var mail = actions.create("mail");
mail.parameters.to = "me@mydomain.com";
mail.parameters.subject = "Hello from JavaScript";
mail.parameters.from = "alfresco@alfresco.com";
mail.parameters.text = "new forum";
// execute action against a document
mail.execute(doc);
}
02-22-2008 04:25 PM
02-25-2008 07:36 AM
02-25-2008 07:38 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.