redmine 네 가지 메일 설정 방식과 redmine 서버 속도 최적화
delivery_method : :smtp :async_smtp :sendmail :async_sendmail 그 중에서: async를 접두사로 하는 것은 비동기 전송 방식입니다. 비동기로 설정하는 것을 권장합니다. 그렇지 않으면redmine 서버에 압력을 줄 수 있습니다.
1. 기본 메일 구성
production:
email_delivery:
delivery_method: :smtp
smtp_settings:
address: smtp.example.net
port: 25
domain: example.net
authentication: :login
user_name: [email protected]
password: redmine2, gmail 메일 설정production:
email_delivery:
delivery_method: :smtp
smtp_settings:
enable_starttls_auto: true
address: "smtp.gmail.com"
port: '587'
domain: "smtp.gmail.com"
authentication: :plain
user_name: "[email protected]"
password: "your_password" 3. 인증 없는 메일 구성
production:
email_delivery:
delivery_method: :smtp
smtp_settings:
address: smtp.knology.net
port: 25
domain: cybersprocket.com
authentication: :none4,sendmail 메일을 통해 설정production:
email_delivery:
delivery_method: :sendmail