Project

General

Profile

Redmine 2.0.3 and 1.4.4 released

Added by Jean-Philippe Lang almost 12 years ago

New maintenance releases are available for both 2.0.x and 1.4.x series. They include several bug fixes and a security updates for some new vulnerabilities found in all prior Rails versions.

  • Redmine 2.0.3 (Changelog) is upgraded to the latest Rails 3.2.6.
  • Redmine 1.4.4 (Changelog) includes a backported fix for these vulnerabilities (Rails 2.3.x is no longer maintained by the Rails team).

They can be downloaded at Rubyforge.


Comments

Added by Deoren Moor almost 12 years ago

Thanks!

Added by Brant Yuan almost 12 years ago

2.0.3 email notification doesn't work

Added by Vincent Lee almost 12 years ago

to Btant Yuan:
I resolved the notification error by editing apps\redmine\htdocs\config\configuration.yml like below:

# default configuration options for all environments
default:
  # Outgoing emails configuration (see examples above)
  email_delivery:
    delivery_method: :smtp
    smtp_settings:
      # arguments: "-i"      
      address: "10.192.1.1" 
      port: 25
      domain: "xxx.com.cn" 
      authentication: :login
      user_name: "user1" 
      password: "123456" 
      enable_starttls_auto: true

Added by Vincent Lee almost 12 years ago

Another problem is :
i can't find redmine logs,
the apps\redmine\htdocs\log\production.log does not help very much!

Added by Vincent Lee almost 12 years ago

I installed redmine by bitnami-redmine-2.0.3-1-windows-installer.exe on windows2003 server.

Added by Vimal Joseph over 11 years ago

I got the mail notification working with sendmail by adding

sendmail_settings:
       arguments: -i

as mentioned in http://www.redmine.org/issues/10955#note-4 to the delivery option in configuration.yml (The BCC option worked for me)