PDA

View Full Version : help~!!!! showing me "MailBox in use"


garyhui
09-10-2003, 07:20 PM
i cannot access my mailbox properly

the system show me "Mailbox in use"

what's wrong in the system ?

DirectAdmin Support
09-10-2003, 09:45 PM
Hello,

That would probably mean that either someone else is using your account while you are trying to read mail, or vm-pop3d died half way through the read... but I've never heard that happen before.

I'll assume it creates a lock file, so to fix the problem, you'd just have to delete it:

system email:
rm /var/spool/mail/username.lock

virtual email:
rm /var/spool/virtual/domain.com/username.lock

John

garyhui
08-30-2005, 10:00 PM
Um..this problem occurs quite frequently in my server.
i'm very sure only 1 people connecting to the mailbox all the time.

why the *.lock file cannot be removed properly ?

is that good if i write a cron job to auto clean these *.lock files

jlasman
08-31-2005, 03:45 PM
The .lock file will appear as a semaphore when you log in to read your email.

It should disappear immediately on a proper logout, but in any event it errors out after some time period if there's no one reading the mail spool file.

The problem with creating a cronjob will be that then the file could be unlocked while someone is still reading it.

In which case any mail that comes in while the mailbox is being read will either disappear entirely (probably) or else corrupt the file (possibly).

Jeff

kanomen
12-28-2006, 01:59 PM
if I want to check my emails by 10 pcs what I need to do ?

DirectAdmin Support
12-28-2006, 04:24 PM
Hello,

Your best bet would be to install dovecot.
It doesn't lock the entire mailbox and allows multiple simultaneous logins. Not to mention everything in general is much faster because it uses Maildir and not mbox.

http://www.directadmin.com/features.php?id=590

John