mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
- This is not fully integrated. In fact, the integration points have been disabled. - The main code for now is the remote stream. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6756 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
29 lines
1002 B
XML
29 lines
1002 B
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="remoteEmailServiceProperties"
|
|
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
|
|
<property name="ignoreUnresolvablePlaceholders">
|
|
<value>true</value>
|
|
</property>
|
|
<property name="locations">
|
|
<list>
|
|
<value>classpath:alfresco/remote-email-service-test.properties</value>
|
|
</list>
|
|
</property>
|
|
</bean>
|
|
|
|
<!-- Remote email-service. -->
|
|
<bean id="emailService" class="org.alfresco.email.server.EmailServiceRemotable">
|
|
<property name="rmiRegistryHost">
|
|
<value>${email.service.rmi.registry.host}</value>
|
|
</property>
|
|
<property name="rmiRegistryPort">
|
|
<value>${email.service.rmi.registry.port}</value>
|
|
</property>
|
|
</bean>
|
|
|
|
</beans>
|