echo
if [ ! -z "$BUG" ]; then
  echo "$BUG" | grep "config" >/dev/null 2>&1 && \
    {
	echo
	echo "The config bug prevents editing lists created with"
	echo "ezmlm-idx<0.31 or ezmlm-0.53. 'touch DIR/config' is a work-"
	echo "around, and upgrading to >=0.314 corrects it."
    }
  echo "$BUG" | grep "deny" >/dev/null 2>&1 && \
    {
	echo
	echo "DENY access means that subscribers can remove";
	echo "themselves from DIR/deny. This is a bug, but DENY"
	echo "is easy to circumvent and not intended to keep users from"
	echo "posting, anyway."
	echo "The bug is fixed in >=0.321."
    }
  echo "$BUG" | grep "return" >/dev/null 2>&1 && \
    {
	echo
	echo "The failure to add the ezmlm-return lines means"
	echo "that old lists will work correctly, but bounce handling"
	echo "won't work in lists created with this version."
	echo "The bug is fixed in >=0.321."
    }
  echo "$BUG" | grep "tstdig" >/dev/null 2>&1 && \
    {
	echo
	echo "The ezmlm-tstdig bug means that DIR/inlocal still needs to be"
	echo "adjusted for with digests within virtual domains."
	echo "The bug is fixed in >=0.321."
    }
  echo "$BUG" | grep "digest" >/dev/null 2>&1 && \
    {
	echo
	echo "The ezmlm-tstdig -digest- bug means that ezmlm-tstdig when"
	echo "in DIR/manager does not pass on digest subscribe request."
	echo "Upgrade to ezmlm-idx>=0.321 if you use ezmlm-tstdig in"
	echo "DIR/manager (this is NOT used except in custom or very"
	echo "old (ezlm-idx<0.30) digest setups)."
    }
  echo "$BUG" | grep "_bound" >/dev/null 2>&1 && \
    {
	echo
	echo "The ezmlm-send/reject mimeremove bug caused erroneous"
	echo "rejection of messages with text after the mime boundary in the"
	echo "Content-type header when DIR/mimeremove was used. This type"
	echo "of message is very rare (mainly Mutt with PGP MIME)."
    }
  echo "$BUG" | grep "_noself" >/dev/null 2>&1 && \
    {
	echo
	echo "The ezmlm-send -C switch 'not to sender' should be ignored" 
	echo "for backwards compatibility, but wasn't."
    }
  echo "$BUG" | grep "_signed" >/dev/null 2>&1 && \
    {
	echo
	echo "The trailer is added as a separate MIME part to multipart"
	echo "messages, but should be suppressed not only for multipart"
	echo "alternative, but also for many other multipart types,"
	echo "including multipart/signed."
    }
  echo "$BUG" | grep "headers" >/dev/null 2>&1 && \
    {
	echo
	echo "The headers generated by one or more ezmlm-idx programs"
	echo "did not match their expected values.  Please see above"
	echo "for more details."
    }
    echo
fi

exit 0
