Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

Wowzera

macrumors 6502a
Original poster
Oct 14, 2008
858
28
Brazil
Hello,

Sometime ago I used a program called CloverDiary, but since then, it send Mail to my terminal everyday. How can I get ride of it? It looks to be using Crontab.

From: XXXXX@macbook-de-XXXXXX.local (Cron Daemon)
To: XXXXXX@macbook-de-XXXXXX.local
Subject: Cron < XXXXXX@macbook-de-XXXXXX > /usr/bin/open -a /Volumes/CloverDiary/CloverDiary/CloverDiary.app/Contents/Resources/DiaryChecker.app
X-Cron-Env: <SHELL=/bin/sh>
X-Cron-Env: <PATH=/usr/bin:/bin>
X-Cron-Env: <LOGNAME=Matheus>
X-Cron-Env: <USER= XXXXXX >
X-Cron-Env: <HOME=/Users/XXXXXX >
Message-Id: <20090523010001.3058F1E867F6@macbook-de-X XXXXXX.local>
Date: Fri, 22 May 2009 22:00:00 -0300 (BRT)
Status: RO

FSPathMakeRef(/Volumes/CloverDiary/CloverDiary/CloverDiary.app/Contents/Resources/DiaryChecker.app) failed with error -43.
 
From Terminal you can get a list of cron jobs for your user account by typing,
Code:
crontab -l
(That's a lowercase L at the end.)

If there is a cron job you want to get rid of enter these commands,
Code:
export EDITOR=pico
crontab -e
Then just delete the line you want.

You can alternatively try out Crontooie, which gives you a GUI for the cron jobs.
 
It's possible it was saved in a cron for another user account.

To see if it was assigned to the root user (hopefully not). The following command will ask for password.
Code:
sudo crontab -u root -l
The Clover Diary may have created it's own name. To check for this,
Code:
cat /etc/passwd
This will output some stuff to the screen. There'll be some lines that start with an underscore (_) followed by a name then a bunch other stuff after the colon. Those are various names that could potentially have cron jobs assigned to them. See if there's one with the name of clover diary or similar. If there is try the sudo command above again and replace root with the name you find.

If all that fails you may want to contact the maker of the program to see if they're willing to help.
 
It's possible it was saved in a cron for another user account.

To see if it was assigned to the root user (hopefully not). The following command will ask for password.
Code:
sudo crontab -u root -l
The Clover Diary may have created it's own name. To check for this,
Code:
cat /etc/passwd
This will output some stuff to the screen. There'll be some lines that start with an underscore (_) followed by a name then a bunch other stuff after the colon. Those are various names that could potentially have cron jobs assigned to them. See if there's one with the name of clover diary or similar. If there is try the sudo command above again and replace root with the name you find.

If all that fails you may want to contact the maker of the program to see if they're willing to help.

I sent an e-mail to him, hopefully it will be answered!
I want to get ride of it!
Thank you so much for helping! :)
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.