Talk:Redmine: Difference between revisions

From NixOS Wiki
imported>Vater
→‎adding plugins: new section
 
imported>Vater
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
== adding plugins ==
== 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 ===


<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">
Line 9: Line 16:
       sha256 = "1fxnkdpd2pgqmirif0jq3iydvlf4wglf1yn56p0vjqdpjfdz9y9m";
       sha256 = "1fxnkdpd2pgqmirif0jq3iydvlf4wglf1yn56p0vjqdpjfdz9y9m";
     };
     };
</syntaxhighlight>
<syntaxhighlight lang="nix">
</syntaxhighlight>
== missing features ==
==== missing imagemagicksupport for pdf ====
Version 22.11
https://redmine.domain.tld/admin/info
<pre>
Information
</pre>
<pre></pre>
<pre>
  Redmine version                4.2.8.stable
</pre>
<pre>
ImageMagick PDF support available (optional)
</pre>
does not work.
Maybe the command <code>convert</code> (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.
<!--
::  https://github.com/NixOS/nixpkgs/blob/nixos-unstable/pkgs/applications/graphics/ImageMagick/default.nix
:: https://github.com/NixOS/nixpkgs/blob/nixos-22.05/pkgs/applications/graphics/ImageMagick/default.nix
:: https://github.com/NixOS/nixpkgs/blob/nixos-21.11/pkgs/applications/graphics/ImageMagick/7.0.nix
:: https://github.com/NixOS/nixpkgs/blob/nixos-21.05/pkgs/applications/graphics/ImageMagick/7.0.nix
:  https://github.com/NixOS/nixpkgs/tree/nixos-20.09/pkgs/applications/graphics/ImageMagick
:: https://github.com/NixOS/nixpkgs/blob/nixos-20.09/pkgs/applications/graphics/ImageMagick/7.0.nix
!-->
==== missing imagemagicksupport for convert ====
Version 23.05
https://redmine.domain.tld/admin/info
<pre>
Information
</pre>
<pre></pre>
<pre>
  Redmine version                5.0.5.stable
</pre>
<pre>
ImageMagick convert available (optional)
</pre>
does not work.
<!--
<syntaxhighlight lang="nix">
</syntaxhighlight>
<syntaxhighlight lang="nix">
    services.redmine.components.imagemagick = true;
    services.redmine.components.minimagick_font_path = "${pkgs.liberation_ttf.outPath}/share/fonts/truetype/LiberationSans-Regular.ttf";
</syntaxhighlight>
<syntaxhighlight lang="nix">
</syntaxhighlight><!--
!-->
== enabling sending mails example configuration ==
<syntaxhighlight lang="nix">
</syntaxhighlight>
<syntaxhighlight lang="nix">
  services.redmine.settings = {
    production = {
      email_delivery = {
        delivery_method = ":smtp";
        smtp_settings = {
          address = "mail.domain.tld";
          port = 25;
        };
#      email_delivery = {
#        delivery_method = ":sendmail";
#        };
      };
    };
  };
</syntaxhighlight>
</syntaxhighlight>
<syntaxhighlight lang="nix">
<syntaxhighlight lang="nix">
</syntaxhighlight>
</syntaxhighlight>

Latest revision as of 21:13, 18 November 2023

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

missing imagemagicksupport for pdf

Version 22.11

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

Information

  Redmine version                4.2.8.stable
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.

missing imagemagicksupport for convert

Version 23.05

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

Information

  Redmine version                5.0.5.stable
ImageMagick convert available (optional)

does not work.

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";
#        };
      };
    };
  };