The macosxhints Forums

The macosxhints Forums (http://hintsforums.macworld.com/index.php)
-   Applications (http://hintsforums.macworld.com/forumdisplay.php?f=5)
-   -   Mail???????? (http://hintsforums.macworld.com/showthread.php?t=4387)

gcassello 07-29-2002 06:34 AM

Mail????????
 
hello everyone!

i've been using osx for about 5 mnths now and have never been sucessfull with the mail app.

i've avoided it for some time but i want to use it for one of my accounts. i have all my info correct and when i try to retrieve mail it say "user name and password denied by server"

any ideas?

thanks

Craig R. Arko 07-29-2002 07:28 AM

Who's your ISP?

gcassello 07-29-2002 07:44 AM

AT&T Broadband.

Jacques 07-29-2002 10:58 AM

Mail.app vs Postage Stamps
 
Mail.app has never been reliable for me, several work-arounds and half-solutions are discussed within this thread.

nkuvu 07-29-2002 12:15 PM

Mail has never been a problem for me at all. :)

Jacques 07-29-2002 01:00 PM

I noticed Craig R. Arko asked which ISP was being used. Could the ISP have anything to do with my SENDING email being a problem, technically?

---

I can send after many retries, takes alot of time to handle - just for simple small emails (couldn't imagine sending attachments though, sure to fail).

Lately I've started to use the mac.com webmail service instead, works well for attachments.

Receiving email is a breeze with Mail.app, works with no problems.

---

Hmm, could be the ISP?

Jacques

nkuvu 07-29-2002 01:41 PM

It could be the ISP -- if their server is having problems authenticating your account for outgoing mail.

Do you have to authenticate for outgoing mail? Some ISPs do, some don't. There's a setting in the Accounts portion of the Mail preferences which will let you authenticate if necessary...

I'd check to see how your account is currently set up, and try it the other way. Or talk to your local tech support for your ISP.

Jacques 07-29-2002 02:40 PM

Interesting. I sure have fiddled with it lots, not sure if I tried that though. When I'm home (they force NT boxes on us here at work) I'll give it a shot and let you know.

I'm not sure if my ISP even has customer service, it's the very last free-free ISP that I know of on this planet!

Jacques

mervTormel 07-29-2002 03:24 PM

if pop is working properly, you should be able to telnet to the port and get some status...
Code:

$ telnet pop.mindspring.com 110
Trying 207.69.200.184...
Connected to pop.mindspring.com.
Escape character is '^]'.
+OK NGPopper vEL_4_16 at mindspring.com ready
<30085.1027970535@smith.mail.mindspring.net>
^]
telnet> ^D Connection closed.


gcassello 07-29-2002 04:42 PM

yeah....like i have any idea what that jibberish means.

mervTormel 07-29-2002 05:12 PM

it's not that difficult to extrapolate...

$ telnet pop.mindspring.com 110
Trying 207.69.200.184...
# trying to connect to the IP number

Connected to pop.mindspring.com.
# hey, it worked. we connected

Escape character is '^]'.
# okay, gotcha, control-rightBracket equals "i'm done"

+OK NGPopper vEL_4_16 at mindspring.com ready
# product NGPopper some version says OK, here i am and i'm ready

<30085.1027970535@smith.mail.mindspring.net>
# some index, not very interesting for our purpose

^]
# i'm done here

telnet> ^D Connection closed.
# exit telnet

where's the jibberish? you don't have to interpret anything except that your notion of your ISP's pop server is what you think it is and that it's working.

for further functionality...

http://www.s0ttle.net/texts/telmail.txt

to get different results, you've got to try different things.

nkuvu 07-29-2002 05:16 PM

The parts that may be confusing are the user input and server responses.

the user enters telnet pop.mindspring.com 110 and the ^] right before the "telnet> " prompt. Everything else is the response from the server.

AKcrab 07-29-2002 05:32 PM

(And they are talking about using terminal.app, in /Applications/Utilities.) :)

Craig R. Arko 07-29-2002 05:33 PM

If it were me I'd recheck the settings, possibly using this support page as a reference.

Then maybe try calling the tech support number they provided with your account. This assumes that the account you are trying to check is one hosted by AT&T.

Sometimes it's a little hard to do this stuff psychically. The more information that is provided the quicker the troubleshooting occurs. :)

PS - tell me if the link above is broken.

nkuvu 07-29-2002 05:40 PM

Quote:

Originally posted by Craig R. Arko
Sometimes it's a little hard to do this stuff psychically.
Craig, if you're able to diagnose email problems psychically I'll be very impressed. I've always had to resort to physical diagnosis...


:)

Craig R. Arko 07-29-2002 06:00 PM

Quote:

Originally posted by nkuvu

Craig, if you're able to diagnose email problems psychically I'll be very impressed. I've always had to resort to physical diagnosis...

:)

Been there, done that. :D

Along with network configuration issues, hardware problems and extension conflicts. The training in magic of my youth has not gone to waste.

It helps if you've at least seen the setup once before.

Jacques 07-30-2002 02:03 PM

Does the above TELNET help apply to a mac.com email account?

mervTormel 07-30-2002 02:12 PM

Quote:

Originally posted by Jacques
Does the above TELNET help apply to a mac.com email account?
works for me...
Code:

% telnet mail.mac.com 110
Trying 204.179.120.64...
Connected to mail.mac.com.
Escape character is '^]'.
+OK Netscape Messaging Multiplexor ready
user xxxx
+OK password required for user babaluguts
pass zzzz
+OK Maildrop ready
list
+OK scan listing follows
1 1117
2 1355
.
retr 1
+OK 1117 octets
Return-Path: <support@mac.com>
Received: from smtp-relay01.mac.com ([10.13.10.224]) by
          mail02.mac.com () with ESMTP id FV2XYH00.M2I for
          <xxxx@mac.com>; Wed, 24 May 2000 12:54:17 -0700
Received: from woapps01 ([10.13.11.96]) by smtp-relay01.mac.com
          () with SMTP id FV2XYG00.SPT for <xxxx@mac.com>; Wed, 24
          May 2000 12:54:17 -0700
TO: xxxx@mac.com
FROM: Apple Computer Inc. <support@mac.com>
SUBJECT: Welcome to iTools!
received: by Apple.Mailer (2.WOF4.0 Mail Sending Utility)

Congratulations! You've successfully signed up for iTools,
<snip>
.
^]
telnet> ^D Connection closed.
%


Jacques 07-31-2002 12:14 AM

The above worked no problem. How can I test it for SENDING mail? That's where the problem has always been for me (and many others as well)..

hschickel 07-31-2002 01:16 AM

Many ISP's will not let you authenticate to an smtp server (for sending mail) other than their own. They do this by blocking port 25.

For instance, my ISP, Earthlink/Mindspring requires the following to be set for any mail that I send through them regardless of the account I'm sending from:

smtp server: mail.earthlink.net

If I set my smtp server to : mail.mac.com

and try to send mail from home via Earthlink it will fail. I need to use Earthlink's SMTP server. Perhaps your problem is of a similar nature. Check with your ISP what your smtp settings need to be.

This becomes a little more of a PITA for laptop users as the SMTP settings need to be changed depending on where you are logging in from.

Hugh

Jacques 07-31-2002 10:02 AM

My ISP provides no SMTP service, just dial-up. Sending email via Mail.app with a .mac (I use only Yahoo! and .mac email) account works somewhat (after wrestling it a bit) and usually only for small messages.

Looks like if I want to keep this all free, I need to stay away from sending .mac mail with Mail.app - perhaps Mozilla's mail client will do a better job..

Jacques

Craig R. Arko 07-31-2002 10:43 AM

Yup, AT&T does that too. Just had to fix this for a customer. It is a PITA, although I can certainly understand why they do it.

Use mail.attbi.com for the outgoing SMTP server.


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

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2014, vBulletin Solutions, Inc.
Site design © IDG Consumer & SMB; individuals retain copyright of their postings
but consent to the possible use of their material in other areas of IDG Consumer & SMB.