문제

i'm running Redmine on Debian 7 and try to send mails via Mircosoft Exchange.

My configuration.yml looks like:

default:
email_delivery:
delivery_method: :smtp
smtp_settings:
enable_starttls_auto: true
      address: <FIREWALLIP or SMTPIP>
      port: 25
      domain: <MYDOMAIN.local or mydomain.de>
      authentication: :login
      user_name: "username"
      password: "pwd"

I used both the Firewall and smtp ips and various combinations of domains and usernames to try it.

Sending the mail via telnet works with both ips.

Can anyone help?

Thanks.

edit resolved:

works with this configuration:

    default:
    email_delivery:
    delivery_method: :smtp
    smtp_settings:
      address: <FIREWALLIP>
      port: 25
      domain: <mydomain.de>
도움이 되었습니까?

해결책

works with this configuration:

default:
email_delivery:
delivery_method: :smtp
smtp_settings:
  address: <FIREWALLIP>
  port: 25
  domain: <MYDOMAIN.local or mydomain.de>
  authentication: :login
  user_name: "username"
  password: "pwd"
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top