LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 04-12-2003, 01:52 PM   #1
bobterri
Member
 
Registered: Feb 2002
Location: Davenport, IA
Distribution: LinuxMint, Sam-Linux
Posts: 149

Rep: Reputation: 15
kmail ain't workin'


On a laptop running RedHat 8.0, when I try to get mail in kmail, I get an error window that says, "Could not start process pop3." When I configured Kmail I used the same configuration as another computer running Mandrake 9.1, which works perfectly. Help!
 
Old 04-12-2003, 09:26 PM   #2
pablob
Member
 
Registered: Apr 2003
Location: Madrid
Distribution: RHEL, Kubuntu, Solaris, TRU64
Posts: 382

Rep: Reputation: 31
Your POP3 server runs in the laptop ????
Do you have your "Inbox" server (POP3 or IMAP) pointing to "localhost" ---> Check your settings.
 
Old 04-13-2003, 02:17 PM   #3
bobterri
Member
 
Registered: Feb 2002
Location: Davenport, IA
Distribution: LinuxMint, Sam-Linux
Posts: 149

Original Poster
Rep: Reputation: 15
Under "Settings" I click on "Configure KMail." In the "Configure" window I click on "Network." Under the "Receiving" tab it shows my "Incoming accounts." It shows the name of the account, the "type" which is "pop" and the Folder, which is "inbox." In the information on this account the "Destination Folder" is "inbox" I can't find anything that points toward "localhost." I am not sure I know where to look in my settings to see whether "inbox server" is pointing toward "localhost." Can you explain a little further where I would find this? Thanks.
 
Old 04-13-2003, 02:50 PM   #4
Electro
LQ Guru
 
Registered: Jan 2002
Posts: 6,042

Rep: Reputation: Disabled
The name localhost is located in the "host" file usually its found under /etc. You may want to check the logs to found what kmail is trying to do. The logs are usually located under /var/log. Kmail could be using the sendmail service to send mail. Type the server address where sendmail is located.

If you have Mozilla installed, you can its e-mail program.
 
Old 04-14-2003, 05:50 AM   #5
pablob
Member
 
Registered: Apr 2003
Location: Madrid
Distribution: RHEL, Kubuntu, Solaris, TRU64
Posts: 382

Rep: Reputation: 31
What it seems is Kmail is trying to access a POP3 server running inside your laptop instead of what your real POP3 server is. (pop3.myISP.com or whatever)
 
Old 04-14-2003, 05:34 PM   #6
bobterri
Member
 
Registered: Feb 2002
Location: Davenport, IA
Distribution: LinuxMint, Sam-Linux
Posts: 149

Original Poster
Rep: Reputation: 15
When I cat /etc/hosts it lists 127.0.0.1 and localhost. Which log in the /var/log directory would I look in to see if kmail is using sendmail? Also, my pop3 server setting in kmail is "pop3.myISP.net" "myISP" being the psuedonym for what my ISP actually is.
 
Old 04-15-2003, 09:35 PM   #7
bobterri
Member
 
Registered: Feb 2002
Location: Davenport, IA
Distribution: LinuxMint, Sam-Linux
Posts: 149

Original Poster
Rep: Reputation: 15
Hey, where'd everybody go?
 
Old 04-16-2003, 05:10 AM   #8
pablob
Member
 
Registered: Apr 2003
Location: Madrid
Distribution: RHEL, Kubuntu, Solaris, TRU64
Posts: 382

Rep: Reputation: 31
OK, put pop3.myISP.net inside your /etc/hosts, just in case.

- Can you pop your account using a different POP3 client (mozilla mail, i.e.) ?
What I can't understand is why Kmail tries to start a pop3 proccess.
Can you telnet pop3.myISP.net 110 ?
Do you get any response ?
 
Old 04-21-2003, 08:40 PM   #9
bobterri
Member
 
Registered: Feb 2002
Location: Davenport, IA
Distribution: LinuxMint, Sam-Linux
Posts: 149

Original Poster
Rep: Reputation: 15
I put pop3.myISP.net inside my /etc/hosts--nothing!

I have Ximian Evolution working fine. I can get and send Email without a problem.

Wouldn't Kmail use the pop3 process to receive mail? I guess I'm a little bit confused about your question.

You see, the reason I'm trying to get Kmail working when I have Evolution already working is because I'm trying to get the "send document as Email" working in OpenOffice. In "Options" it offers only two "Profiles" to use with this feature: Kmail and Netscape 6.x
 
Old 04-22-2003, 04:41 AM   #10
pablob
Member
 
Registered: Apr 2003
Location: Madrid
Distribution: RHEL, Kubuntu, Solaris, TRU64
Posts: 382

Rep: Reputation: 31
Another idea:
From a console terminal (CTRL+ALT+F2), and without login into KDE, do as root:

cd /tmp
rm -r k*

Then reboot and try again.
If this doesn't work, maybe is a bug in Kmail --> Upgrade :-(
 
Old 04-22-2003, 08:36 PM   #11
bobterri
Member
 
Registered: Feb 2002
Location: Davenport, IA
Distribution: LinuxMint, Sam-Linux
Posts: 149

Original Poster
Rep: Reputation: 15
I appreciate your help, pablob, but could you explain what rm -r k* does? I'd feel a lot more comfortable knowing what that command will do.
 
Old 04-22-2003, 11:11 PM   #12
bobterri
Member
 
Registered: Feb 2002
Location: Davenport, IA
Distribution: LinuxMint, Sam-Linux
Posts: 149

Original Poster
Rep: Reputation: 15
I updated Kmail and still the same problem.
 
Old 04-25-2003, 03:53 AM   #13
pablob
Member
 
Registered: Apr 2003
Location: Madrid
Distribution: RHEL, Kubuntu, Solaris, TRU64
Posts: 382

Rep: Reputation: 31
cd /tmp

rm -r k*

'rm' means remove.
'-r' means recursive.
'k*' means beginning with letter k.

Translating to a MS-DOS command will be:
deltree k*

What you will be doing is deleting temporary files which sometimes help restarting apps.

Just an idea.
 
Old 04-25-2003, 12:00 PM   #14
bobterri
Member
 
Registered: Feb 2002
Location: Davenport, IA
Distribution: LinuxMint, Sam-Linux
Posts: 149

Original Poster
Rep: Reputation: 15
OK, pablob, thanks for the reply. I'll give it a shot.

By the way, KMail will work in Red Hat's Blue Curve(Gnome) desktop environement right?
 
Old 05-08-2003, 02:12 PM   #15
bobterri
Member
 
Registered: Feb 2002
Location: Davenport, IA
Distribution: LinuxMint, Sam-Linux
Posts: 149

Original Poster
Rep: Reputation: 15
I'm back! I've been extremely busy and haven't had time to do anything with my kmail problem, but I finally got around to your suggestion pablob.

I "rm -r k*" in /tmp and it asked me two things:

rm: descend into directory 'kde-bob'? and
rm: remove directory 'ksocket-bob'?

I answered "no" to both options.

Other than that, it didn't give me any other options and simply returned to /tmp

Any other ideas? If not, I'm just gonna give up!
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Yahoo not workin duffmckagan Linux - Software 25 07-31-2005 12:29 PM
workin with knopix a_hic Linux - Newbie 1 04-20-2005 08:38 AM
Internet Not Workin Ne0BDP Slackware 7 07-08-2004 07:19 AM
How to Get FTP workin on the New .. appleboy Linux - Networking 2 03-09-2004 09:57 PM
Mouse not workin sometimes ? nutshell Linux - General 11 03-07-2002 03:25 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 10:02 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration