Linux - NewbieThis Linux forum is for members that are new to Linux.
Just starting out and have a question?
If it is not in the man pages or the how-to's this is the place!
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
I am trying to connect to my server (Red Hat 9) to check mail and am not able to connect to it at all. I did netstat and imap and smtp are both running
I tried setting up 2 accounts one with imap and one with pop3. It seems that imap works but I am getting some error with pop3 -->
Your server has unexpectedly terminated the connection. Possible causes for this include server problems, network problems, or a long period of inactivity. Account: 'example.com', Server: 'example.com', Protocol: POP3, Port: 110, Secure(SSL): No, Error Number: 0x800CCC0F
I also tried doing 'tcpdump [ipaddress of my outlook computer]' but I get some parsing error. What is the command I should use for tcpdump?
If your network connections are coming through on eth0 (say), you'd do something like:
tcpdump -i eth0 port 143
That should show you all traffic on the imap port. See the man page for how to get more info, if needed.
To debug imapd, just grab a copy of the source code. While I haven't worked with the imapd source myself, all (or mostly all) of these daemons have the ability to be built with various levels debugging, as well as being run in the foreground. This is what the developers typically use.
You should read through the docs and the source code to see how to enable these features.
If the source doesn't have enhanced debugging and/or foreground output, then you'll need to put this in yourself.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.