#!/bin/sh

case "$1" in
--uids-gids)
  cat >&2 <<-\EOT
	Upgrading qmail uids and gids from the unofficial smarden.org packages
	is not yet supported.
	
	EOT
  exit 1
  ;;
--run)
  cat >&2 <<-\EOT
	Upgrading qmail MTA from the unofficial smarden.org packages is not yet
	supported.

	EOT
  exit 1
  ;;
*)
  cat >&2 <<-\EOT
	Upgrading qmail from the unofficial smarden.org packages is not yet
	supported.
	
	EOT
  exit 1
  ;;
esac
