31 lines
1.5 KiB
XML
31 lines
1.5 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns:p="http://www.springframework.org/schema/p"
|
|
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">
|
|
|
|
<!-- <bean id="egov.propertyConfigurer" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
|
|
<property name="locations">
|
|
<list>
|
|
<value>classpath:/egovframework/egovProps/globals.properties</value>
|
|
value>file:/product/jeus/egovProps/globals.properties</value
|
|
</list>
|
|
</property>
|
|
</bean> -->
|
|
<!-- 이메일 발송 -->
|
|
<bean id="mailSender" class="org.springframework.mail.javamail.JavaMailSenderImpl"
|
|
p:host="smtp.gmail.com"
|
|
p:port="587"
|
|
p:protocol="smtp"
|
|
p:username="${system.notification.email.sender}"
|
|
p:password="${system.notification.email.sender.password}">
|
|
<property name="javaMailProperties">
|
|
<props>
|
|
<prop key="mail.smtp.starttls.enable">true</prop>
|
|
<prop key="mail.smtp.auth">true </prop>
|
|
<prop key="mail.debug">true</prop>
|
|
<prop key="mail.smtp.ssl.trust">smtp.gmail.com</prop>
|
|
<prop key="mail.smtp.ssl.protocols">TLSv1.2</prop>
|
|
</props>
|
|
</property>
|
|
</bean>
|
|
</beans> |