No, it isn't. JForum does not have a funcionality like this (restrict users to single topic only). You an create new security roles for that, but then you'll need to change JForum's source code.
The roles are defined in the file
WEB-INF/config/permissions.xml, which then is automatically processed when you edit permissiosn through the Admin Panel. As for example, you can add a permission sections like
and then, in the class
net.jforum.view.forum.ForumAction.java, in methods like
list() and
show(), you use the class
SecurityRepository, calling the method
canAccess(String) (passing the role name) to see if the user can do the action..
The basic idea is something like this ;)
Rafael
[originally posted on jforum.net by Rafael Steil]