Talk:Redmine

From NixOS Wiki
Revision as of 23:57, 16 December 2022 by imported>Vater (→‎enabling sending mails example configuration: new section)

adding plugins

plugin list

for current version 4.2

https://www.redmine.org/plugins?utf8=%E2%9C%93&page=1&sort=&v=4.2

plugin example configuration

  services.redmine.plugins = {
    redmine_env_auth = builtins.fetchurl {
      url = "https://github.com/Intera/redmine_env_auth/archive/refs/tags/1.1.tar.gz";
      sha256 = "1fxnkdpd2pgqmirif0jq3iydvlf4wglf1yn56p0vjqdpjfdz9y9m";
    };

missing features

Version 22.11

https://redmine.domain.tld/admin/info

Information

Redmine version                4.2.8.stable

missing imagemagicksupport for pdf

ImageMagick PDF support available (optional)

does not work

Maybe the command convert (from the package imagemagick) can not convert from pdf to images (for example for the file type png).

Maybe imagemagickBig must be used (instead of imagemagick) at build time.

enabling sending mails example configuration

  services.redmine.settings = {
    production = {
      email_delivery = {
        delivery_method = ":smtp";
        smtp_settings = {
          address = "mail.domain.tld";
          port = 25;
        };
#      email_delivery = {
#        delivery_method = ":sendmail";
#        };
      };
    };
  };