Talk:Redmine: Difference between revisions

imported>Vater
imported>Vater
 
(2 intermediate revisions by the same user not shown)
Line 21: Line 21:


== missing features ==
== missing features ==
==== missing imagemagicksupport for pdf ====
Version 22.11


https://redmine.domain.tld/admin/info
https://redmine.domain.tld/admin/info
Line 26: Line 30:
<pre>
<pre>
Information
Information
Redmine 4.2.7.stable
</pre>
</pre>
 
<pre></pre>
==== missing imagemagicksupport for pdf ====
<pre>
  Redmine version                4.2.8.stable
</pre>


<pre>
<pre>
ImageMagick PDF support available (optional)
ImageMagick PDF support available (optional)
</pre>
</pre>
does not work
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 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.
Maybe ''imagemagickBig'' must be used (instead of ''imagemagick'') at build time.
<!--
<!--


Line 49: Line 53:
:: https://github.com/NixOS/nixpkgs/blob/nixos-20.09/pkgs/applications/graphics/ImageMagick/7.0.nix
:: 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 lang="nix">
</syntaxhighlight>
Return to "Redmine" page.