We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
- application.properties - smtp.properties - .gitignore
The text was updated successfully, but these errors were encountered:
chore: Add smtp.properties to gitignore (#26)
smtp.properties
435c10b
chore: Separate smtp settings from application.properties (#26)
767b184
src/main/resources/smtp.properties 파일 생성.
smtp.properties에 SMTP 설정 추가:
spring.mail.host=smtp.gmail.com spring.mail.port=587 spring.mail.username= spring.mail.password= spring.mail.properties.mail.smtp.auth=true spring.mail.properties.mail.smtp.starttls.enable=true spring.mail.properties.mail.smtp.connectiontimeout=5000 spring.mail.properties.mail.smtp.timeout=5000 spring.mail.properties.mail.smtp.writetimeout=5000
application.properties에서 SMTP 관련 설정 제거 및 참조 설정 추가: spring.config.import=classpath:smtp.properties
spring.config.import=classpath:smtp.properties
.gitignore에 smtp.properties 추가: /src/main/resources/smtp.properties
/src/main/resources/smtp.properties
테스트를 통해 SMTP 설정이 정상적으로 동작하는지 확인.
Sorry, something went wrong.
gunny97h
No branches or pull requests
Task
Affected Files
The text was updated successfully, but these errors were encountered: