2016-07-22 26 views
0

Redmine - Ubuntu 14.04 auf VM heruntergeladen von: https://bitnami.com/stack/redmine/virtual-machine 64-Bit-Versionkann nicht E-Mails Benachrichtigung senden (nicht von gmail) aus redmine bitnami

Meine configuration.yml bestehen:

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" 

oder zweite conf:

email_delivery: 
     delivery_method: :sendmail 

Wenn eine solche Konfiguration Redmine nicht starten. Ich habe einen solchen Fehler:

We're sorry, but something went wrong. 

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

apache2 letzte error_log: http://pastebin.com/thyw66pn

Konfiguration mit gmail funktioniert.

So verwenden Sie zB: sendmail?

Antwort

0

i hinzugefügt ssl: true, so mein Config sieht jetzt:

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: "[email protected]" 
     password: "passwd" 

Es wäre schön, zu wissen, wie sendmail laufen, aber ich bin sehr froh, dass es jetzt funktioniert:)