无法从 redmine bitnami 发送电子邮件通知(不是来自 gmail)

Unable to send emails notification (not from gmail) from redmine bitnami

Redmine - Ubuntu VM 上的 14.04 下载自: https://bitnami.com/stack/redmine/virtual-machine 64 位版本

我的configuration.yml包括:

default:
email_delivery:
        delivery_method: :smtp
        smtp_settings:
          openssl_verify_mode: 'none'
          enable_starttls_auto: false
          address: mail.e-bielsko.net
          port: '465'
          #domain: mail.e-bielsko.net
          authentication: :plain
          user_name: user
          password: "pass"

或第二次会议:

    email_delivery:
      delivery_method: :sendmail

如果有这样的配置redmine不会启动。我有这样的错误:

We're sorry, but something went wrong.

We've been notified about this issue and we'll take a look at it shortly.

apache2 最后 error_log: http://pastebin.com/thyw66pn

gmail 配置有效。

如何使用 eg.: sendmail?

我添加了 ssl: true,所以我的配置现在看起来是:

default:
  email_delivery:
    delivery_method: :smtp
    smtp_settings:
      enable_starttls_auto: false
      address: "mail.e-bielsko.net"
      port: '465'
      ssl: true
      domain: "mail.e-bielsko.net"
      authentication: :login
      user_name: "name@name"
      password: "passwd"

如果知道如何 运行 sendmail 就好了,但我很高兴它现在可以用了:)