Configure Forget password in Jetspeed2

By Java bug | February 25, 2009 | 311 views
Category Jetspeed2


About author  I am Java professional, working on java and Portal technoglies from last 5 years. I start techartifact with my some friends to share our knowledge and tips with world. Read more from this author


In Jetspeed 2 portal registered users can retrieve there password using via email.
In lot of instance portal administrator doesn’t configure mail server properly, Which causes this problem.
Portal Administrator should fill following configuration in administration.xm under (WEB-INF/assembly/) to enable mail sending from jetspeed 2

<beans>
<bean id="mailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl">
<property name="host"><value>localhost</value></property>
<property name="username"><value></value></property>
<property name="password"><value></value></property>
<property name="javaMailProperties">
<props>
<prop key="mail.smtp.auth">false</prop>
</props>
</property>
</bean>
Read more post on Jetspeed2 Open Portal Tips 

Leave a Comment

Name:

E-Mail :

Website :

Comments :