mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-31 17:39:05 +00:00
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
44 lines
1.3 KiB
XML
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>
|