#!/bin/sh

case "$1" in
--uids-gids)
  cat >&2 <<-\EOT
	Upgrading qmail uids and gids from the package in Debian/non-free is
	not yet supported.
	
	EOT
  exit 1
  ;;
--run)
  cat >&2 <<-\EOT
	Upgrading qmail MTA from the package in Debian/non-free is not yet
	supported.

	EOT
  exit 1
  ;;
*)
  cat >&2 <<-\EOT
	Upgrading qmail from the package in Debian/non-free is not yet
	supported.
	
	EOT
  exit 1
  ;;
esac
