Настройка почты в Redmine

Здесь я опишу настройку Redmine для отправки почты через свой почтовый сервер.

Redmine настроен на сервере Linux Debian 6 через mod_passenger веб-сервера apache2

В зависимости от вашей инсталляции редактируем файл /etc/redmine/default/email.yml (Debian, из пакетов) или /usr/share/redmine/config/email.yml (смотрите, не перепутайте, типа как я – и парился, почему ж оно не вхавывает новые настройки… 🙂 ) и прописываем настройки, заменив адреса и т. д. на свои:

production:
  delivery_method: :smtp
  smtp_settings:
    address: 192.168.1.2
    port: 25
    domain: mydomain.com
    authentication: :plain
    user_name: “redmine@mydomain.com”
    password: “Password”


development:

  delivery_method: :smtp
  smtp_settings:
    address: 192.168.1.2
    port: 25
    domain: mydomain.com
    authentication: :plain
    user_name: “redmine@mydomain.com”
    password: “Password”

http://geckich.blogspot.com/

Leave a Reply

Your email address will not be published. Required fields are marked *