···50505151- `services.lemmy.settings.federation` was removed in 0.17.0 and no longer has any effect. To enable federation, the hostname must be set in the configuration file and then federation must be enabled in the admin web UI. See the [release notes](https://github.com/LemmyNet/lemmy/blob/c32585b03429f0f76d1e4ff738786321a0a9df98/RELEASES.md#upgrade-instructions) for more details.
52525353+- `spamassassin` no longer supports the `Hashcash` module. The module needs to be removed from the `loadplugin` list if it was copied over from the default `initPreConf` option.
5454+5355## Other Notable Changes {#sec-release-23.11-notable-changes}
54565557- The Cinnamon module now enables XDG desktop integration by default. If you are experiencing collisions related to xdg-desktop-portal-gtk you can safely remove `xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ];` from your NixOS configuration.
···11+diff -ru orig/t/SATest.pm new/t/SATest.pm
22+--- orig/t/SATest.pm 2023-06-25 11:26:27.663204415 +0000
33++++ new/t/SATest.pm 2023-06-25 11:34:08.902174669 +0000
44+@@ -65,9 +65,12 @@
55+66+ # Clean PATH so taint doesn't complain
77+ if (!$RUNNING_ON_WINDOWS) {
88+- $ENV{'PATH'} = '/bin:/usr/bin:/usr/local/bin';
99++ # untaint PATH
1010++ $ENV{'PATH'} =~ /^(.+)$/;
1111++ $ENV{'PATH'} = $1;
1212++ # $ENV{'PATH'} = '/bin:/usr/bin:/usr/local/bin';
1313+ # Remove tainted envs, at least ENV used in FreeBSD
1414+- delete @ENV{qw(IFS CDPATH ENV BASH_ENV)};
1515++ # delete @ENV{qw(IFS CDPATH ENV BASH_ENV)};
1616+ } else {
1717+ # Windows might need non-system directories in PATH to run a Perl installation
1818+ # The best we can do is clean out obviously bad stuff such as relative paths or \..\