TritonDataCenter / pkgsrc

NetBSD/pkgsrc fork for our binary package repositories
https://pkgsrc.smartos.org/
131 stars 51 forks source link

mailman: classic and larry skins vanished at 1.6.0 #343

Open drboone opened 1 year ago

drboone commented 1 year ago

Per the changelog, these two skins were moved to a separate repo (https://github.com/roundcube/roundcubemail/issues/8271)

https://github.com/roundcube/classic https://github.com/roundcube/larry

Any chance these could be added to the roundcube package?

gaige commented 1 year ago

Not quite putting it in the package, but I did find that for our installation, we could use composer to load the larry plugin without trouble:

  1. after installing roundcube cd /opt/local/share/roundcube/
  2. Make sure there's a minimal composer.json in the roundcube share dir (I used just {})
  3. composer config --no-plugins allow-plugins.roundcube/plugin-installer true
  4. composer -n require roundcube/larry:~1.6.0

Hope this is of use to somebody.