본문 바로가기

IT기반지식/협업도구

[Redmine]-메일알림 설정

메일 발송서버정보 설정을 위해서는 ./Redmine/config/email.yml 파일을 편집

 # Outgoing email settings

#인증이 필요 없는 SMTP서버 설정
production:
  delivery_method: :smtp
  smtp_settings:
    address: mail.domain.com
    port: 25
    domain: bflysoft.com
    authentication: :plain
 
#로그인 인증이 가능한 SMTP 서버 설정
development:
  delivery_method: :smtp
  smtp_settings:
    address: mail.domain.com
    port: 25
    domain: domain.com    authentication: :login
    user_name: username
    password: your_password 



Redmine 재시작
- httpd(아파치 재시작으로는 되지 않음)
윈도우의 경우에 윈도우즈 서비스 관리도구에서

RedmineMongrel1
RedmineMongrel2

또는

net stop Mongrel1
net start Mongrel1
net stop Mongrel2
net start Mongrel2

등과 같이 두개의 서비스를 재시작 하면 됨


아파치 설정 재시작은
아파치/bin 경로에서
httpd -k restart 또는

httpd -k stop
httpd -k start
 명령수행