CONFIGURATION ON HUMANMANAGER GUI
Ensure system email address is inputted for Non-Staff SYS
Foundation > System Administration > Authorisation > Define Access Right for Non-Staff
Insert SMTP server’s IP Address in Global Processing Rule.
Foundation > System Administration > Setup > Core Foundation > Define Global Processing Rule
CONFIGURATION ON JBOSS FOLDER
Add SMTP server’s IP Address and port to Appcontextmail.xml file
Jboss 4.0.2 > bin > Appcontextmail
<!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "http://www.springframework.org/dtd/spring-beans.dtd">
<beans>
<bean id="sender" class="org.springframework.mail.javamail.JavaMailSenderImpl">
<property name="host">
<!-- Put a valid smtp mail server here -->
<value>12.3.456.78</value>
</property>
<property name="port">
<!-- Put a valid smtp mail port here e.g 25 -->
<value>25</value>
***Green is SMTP server’s IP Address
***Red is SMTP port.
Remove email address in Appcontextmail.xml file
<!--A valid email address, which is a from account e.g. selfservice@systemspecs.com.ng-->
<value></value>