But how do i unlock it tho ?
Main Topics
Browse All TopicsHi all when trying to telnet onto port 110 to the mail server i can log in with username and pass no worries.
But after that i recieve this message "err [in-use] mailbox in use"
I have searched for lock files on the server but there does not appear to be any.
Any help would be greatly appreciated.
O.S on server : slackware 8.x, Pop3 server
Thanks in advance.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Marshes:
This old question needs to be finalized -- accept an answer, split points, or get a refund. For information on your options, please click here-> http:/help/closing.jsp#1
EXPERTS:
Post your closing recommendations! No comment means you don't care.
Business Accounts
Answer for Membership
by: moonbeamPosted on 2003-06-22 at 19:02:12ID: 8778369
The pop3 server is started via inetd. The "mailbox in use" message happens if the a pop3d process is still running from a previous session.
Eg:
-->telnet mink 110
Trying 192.168.1.2...
Connected to mink.catmanor.com.
Escape character is '^]'.
+OK mink POP3 Server (Version 1.006d) ready at <Sun Jun 22 18:46:53 2003>
user xxxxxxxx
+OK please send PASS command
pass yyyyyyy
+OK 62 messages ready for moonbeam in /var/spool/mail/moonbeam
In a separate window....
-->ps -ax | grep pop
9290 ? S 0:00 in.pop3d
9293 pts/3 S 0:00 grep pop
After I quit the original session...
quit
+OK mink POP3 Server (Version 1.006d) shutdown.
Connection closed by foreign host.
The pop3d process terminates, removing the lock on the mailbox. There is no file lock.
I am running slack 8.0 and have the following entry in my /etc/inetd.conf.
# Traditional BSD-based in.pop3d:
pop3 stream tcp nowait root /usr/sbin/tcpd in.pop3d
It looks like the original pop3 connection is not releasing the inetd connection. If the connection was not properly terminated with the pop3 'quit', it will remain active up to the default timeout period. (300 secs.. I think).
Hope that helps.
William