Files
alfresco-community-repo/config/alfresco/subsystems/sysAdmin/default/sysadmin-parameter-context.xml
Dave Ward a2c2e215a8 Merged DEV/BELARUS/HEAD-2010_02_10 to HEAD
19151: SAIL-298: Implemented subsystem changes.
      - We didn't remove the cifs.serverName property because it is independent of host/port/context/protocol.
   Applied following corrections
      - Removed the email 'chain'. OutboundSMTP and InboundSMTP are separate subsystems and don't need to be chained
      - Added the ability for multiple Spring-initialized subsystems to share the same category
      - No need to expose mailService outside of the OutboundSMTP subsystem as far as I can tell
      - GlobalDeskTopActionConfigBean doesn't need dependencies and no longer exposes the webpath property
      - Fixed construction of contexts in ContentDiskDriver.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@19266 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2010-03-12 18:41:09 +00:00

44 lines
1.3 KiB
XML

<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'>
<beans>
<bean id="sysAdminParams" class="org.alfresco.repo.admin.SysAdminParamsImpl">
<property name="maxUsers">
<value>${server.maxusers}</value>
</property>
<property name="allowedUsers">
<value>${server.allowedusers}</value>
</property>
<property name="allowWrite">
<value>${server.transaction.allow-writes}</value>
</property>
<property name="alfrescoContext">
<value>${alfresco.context}</value>
</property>
<property name="alfrescoHost">
<value>${alfresco.host}</value>
</property>
<property name="alfrescoPort">
<value>${alfresco.port}</value>
</property>
<property name="alfrescoProtocol">
<value>${alfresco.protocol}</value>
</property>
<property name="shareContext">
<value>${share.context}</value>
</property>
<property name="shareHost">
<value>${share.host}</value>
</property>
<property name="sharePort">
<value>${share.port}</value>
</property>
<property name="shareProtocol">
<value>${share.protocol}</value>
</property>
</bean>
</beans>