fix issue #3 create now avoids ovewriting an existing tomb key: quits with error.
@ -316,6 +316,12 @@ create_tomb() {
return 1
fi
if [ -e ${tombdir}/${tombfile}.key ]; then
error "tomb key already exists. Quitting."
ls -lh ${tombdir}/${tombfile}.key
notice "Creating a new tomb in ${tombdir}/${tombfile}"
if [ -z $SIZE ]; then
The note is not visible to the blocked user.