# 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>
<config>
<client>
<!– the from address to use when sending emails from the client –>
<from-email-address>alfresco@alfresco.org</from-email-address>
</client>
</config>
Content from pre 2016 and from language groups that have been closed.
Content is read-only.
By using this site, you are agreeing to allow us to collect and use cookies as outlined in Alfresco’s Cookie Statement and Terms of Use (and you have a legitimate interest in Alfresco and our products, authorizing us to contact you in such methods). If you are not ok with these terms, please do not use this website.