Package: cyrus-imapd
Version: 3.2.6-2+deb11u1
Severity: normal
Tags: patch
Dear Maintainer,
after upgrading from buster to bullseye I get warnings from cron about
the cyrus-imapd (version 3.2.6-2+deb11u1) cron.daily script:
xargs: warning: options --max-args and --replace/-I/-i are mutually
exclusive, ignoring previous --max-args value
It seems in the script /etc/cron.daily/cyrus-imapd line 58
xargs --null -n 1 -r -i'{1}' \
should be changed to
xargs --null -r -I'{1}' \
where "-I" implies "-L 1" which is the correct replacement of "-n 1" in
the context of using the replacement mechanism of xargs.