#!/bin/bash

exec=/usr/lib/pwd2pine
if [[ -x "$exec" ]]
then
  . "$exec" "$@"
else
  {
    echo "Before running this, you should have configured the parameters in $exec;"
    echo "to indicate that it has been configured, make it executable."
  } | fold --spaces >&2
fi
