07-20-2009 11:24 AM
# Configuration du serveur de messagerie
mail.host=smtp-lb.gicm.net
mail.port=25
mail.username=mon use
mail.password=mon mot de passe
mail.encoding=UTF-8
mail.header=7bit
mail.from.default=koala@hotmail.com //L'adresse est bidon ^^
mail.smtp.auth=true
<!– –>
<!– MAIL SERVICE –>
<!– –>
<bean id="mailService" class="org.springframework.mail.javamail.JavaMailSenderImpl">
<property name="host">
<value>${mail.host}</value>
</property>
<property name="port">
<value>${mail.port}</value>
</property>
<property name="username">
<value>${mail.username}</value>
</property>
<property name="password">
<value>${mail.password}</value>
</property>
<property name="defaultEncoding">
<value>${mail.encoding}</value>
</property>
<property name="javaMailProperties">
<props>
<prop key="mail.smtp.auth">${mail.smtp.auth}</prop>
</props>
</property>
</bean>07-21-2009 03:08 AM
07-21-2009 03:28 AM
<config>
<client>
<!– the from address to use when sending emails from the client –>
<from-email-address>alfresco@alfresco.org</from-email-address>
</client>
</config>
07-21-2009 05:34 AM
07-21-2009 08:01 AM
09-17-2009 08:52 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.