6

I look exactly the same : enter image description here But What makes me suprised is that they are synchronous. enter image description here

thinice
  • 4,676
  • 20
  • 38
爱国者
  • 163
  • 1
  • 5
  • 2
    [This](http://lists.debian.org/lsb-spec/1999/01/msg00065.html) might help! –  Jan 20 '12 at 06:27

2 Answers2

6

/var/spool/mail is a symbolic link to /var/mail on my Debian/Sid system:

 % ls -ld /var/mail /var/spool/mail
 drwxrwsr-x 2 root mail 4096 Dec 31 17:46 /var/mail
 lrwxrwxrwx 1 root root    7 May 12  2011 /var/spool/mail -> ../mail
2

What you ask is really a matter of preferences; meaning: whatever mail delivery daemon you have in use on your system can use either or.

More specifically, it's a mere matter of preference of options laid out by the FHS.

Typically, on more complex mail configurations, things like mail queue, deferred messages, etc are stored in a structure in /var/spool/, independent of /var/mail.

You can see /var/mail used separately from /var/spool/mail (AKA: not symlinked). Local mail will end up in /var/mail - while SMTP daemon handling email for virtual mailboxes, etc will happen in /var/spool/mail

thinice
  • 4,676
  • 20
  • 38