I was messing around with sendmail in Rails a year ago and have had this message popping up in the terminal after every command ever since:

You have new mail in /var/mail/Lance

How do I properly get rid of that so the message goes away? I ever use any of that functionality and don't have mail on my computer. There's one file in /var/mail called lance, and it's huge. Can I just remove it?

link|improve this question
Take a look into the file - it holds mail undelivered to the user - and just remove it if you don't find anything useful there. – Nikolai N Fetissov Jun 6 '10 at 2:02
feedback

migrated from stackoverflow.com Jun 6 '10 at 4:17

This question came from our site for professional and enthusiast programmers.

3 Answers

In your ~/.bashrc add:

unset MAILCHECK
link|improve this answer
feedback

The old school way is to open a terminal and use

mail

at the prompt, then

d

to delete one message or

d1-4

for for four messages.

Then

q

to quit.

If you don't want to delete them unread, just type Enter at the mail prompt and it'll show each message in turn.

Use

man mail

for all the details.


Of course, other more sophisticated mail clients may be available, but that will do it.

link|improve this answer
1  
Or d * for all messages. – Nikolai N Fetissov Jun 6 '10 at 2:02
how do I make it so it doesn't say "You have new mail" every time I execute a command in the terminal? – viatropos Jun 6 '10 at 2:31
Read or delete every message. If there are more and a few, read some of them so you can figure out what process is sending them and make it stop... – dmckee Jun 6 '10 at 2:46
I checked - I had 210 messages waiting, the latest from January 2006, which is before I bought this computer! The data transfer service was thorough. I used d 1-210 quite successfully. I didn't have anything reminding me, though. – Jonathan Leffler Jun 6 '10 at 2:47
it says I have 34,000 messages! I have 14,000 in gmail (don't delete all of them because I get 100+ per day, mostly group digests and production app notifications), and some coming from years ago. Thing is, before I messed with 'sendmail', I never got that "you've got mail" message. Now I do. I just want it to go away, can it? Some setting to disable the mail/terminal combo. Don't want to spend the time to sort/delete them. – viatropos Jun 6 '10 at 5:38
feedback

You can just remove the messages from /var/mail/<user>, but you might get more, for example as the result of cron jobs. You can instead have this mail redirected to the normal place you read and store mail on your machine with a .forward file. Simply create a file called .forward in /Users/<username>/ which contains the filename you wish the mail to be stored in.

e.g. in my case, I pull my mail down from my host using IMAP and store it in /Users/ether/mail/i, so I have a file called /Users/ether/.forward which contains the line: /Users/ether/mail/i

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.