Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 14 Dec 2007 19:44:43 +0000
From:      "V.I.Victor" <idmc_vivr@intgdev.com>
To:        freebsd-questions@freebsd.org
Subject:   Changing "/var/mail" to a symlink
Message-ID:  <W612303012353031197661483@webmail16>

next in thread | raw e-mail | index | archive | help
Because of "/var" size considerations, I'd like to use a symlinked
"/usr" directory for email instead of "/var/mail".

Based on today's research, I think the following will work.


With mail delivery off, I 'su' and:

  mkdir  /usr/var.mail
  cd  /var
  cp  -p  mail/*  /usr/var.mail/
  mv  mail  mail.bak
  ln  -s  /usr/var.mail  mail

Since 'ls -l /var' shows:

  drwxrwxrwt  2 root mail  512 Dec 14 14:24 mail

I should then:

  cd  /usr
  chmod  1777  var.mail
  chown  root:mail  var.mail

No changes are made to the "/var/mail" symlink.

Then, if everything works, I just delete "/usr/mail.bak".


Does this seem OK?


Sorry to bother everyone with what's probably a trivial question, but
I *really* want to avoid screwing-up.  The machine is remote; accessed
via ssh.

Thanks!






Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?W612303012353031197661483>