JavaScript disabled You need to activate JavaScript in order to use OpenProject! Learn more
Added by Alberto Valdes over 8 years ago
Is there a way to configure the email notifications using NTLM?
Yes!
In a manual installation, you’ll need to install ruby-nltm, so ideally add this to your Gemfile.local and run bundle install.
Gemfile.local
bundle install
In your mail configuration, you can then use authentication: :ntlm as a valid method and it should just work.
authentication: :ntlm
The packaged installation currently exposes a fixed set of authentication methods, and installing third party gems is not that trivial. We did however just recently add a method to add custom gems and plugins to your packaged installation: https://github.com/opf/openproject/blob/dev/doc/operation_guides/packager/installation-guide.md#adding-custom-plugins-to-the-installation
You would not be able to use the wizard to configure that authentication mode, though.
Best, Oliver
Replies (1)
Yes!
In a manual installation, you’ll need to install ruby-nltm, so ideally add this to your
Gemfile.local
and runbundle install
.In your mail configuration, you can then use
authentication: :ntlm
as a valid method and it should just work.The packaged installation currently exposes a fixed set of authentication methods, and installing third party gems is not that trivial. We did however just recently add a method to add custom gems and plugins to your packaged installation: https://github.com/opf/openproject/blob/dev/doc/operation_guides/packager/installation-guide.md#adding-custom-plugins-to-the-installation
You would not be able to use the wizard to configure that authentication mode, though.
Best,
Oliver