9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* [9fans] Still picking at a wierd mail issue under Qemu...
@ 2006-03-08  8:03 Marina Brown
  2006-03-08 11:54 ` erik quanstrom
  2006-03-08 14:55 ` Russ Cox
  0 siblings, 2 replies; 6+ messages in thread
From: Marina Brown @ 2006-03-08  8:03 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

Here is the log of the mail failure and of a successfull telnet
to the smtp host.

term% cat E*
smtp: dns: dns failure (net!smtp.east.cox.net)
term% telnet net!smtp.east.cox.net!25
connected to net!smtp.east.cox.net!25 on /net/tcp/0
220 eastrmmtao06.cox.net ESMTP server (InterMail vM.6.01.05.02
201-2131-123-102-20050715) ready Wed, 8 Mar 2006 02:58:33 -0500


Any ideas ?

I read and post news (NNTP) using Acme news, but acme mail still will
not work.

---- Marina Brown


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [9fans] Still picking at a wierd mail issue under Qemu...
  2006-03-08  8:03 [9fans] Still picking at a wierd mail issue under Qemu Marina Brown
@ 2006-03-08 11:54 ` erik quanstrom
  2006-03-08 11:59   ` erik quanstrom
  2006-03-08 14:55 ` Russ Cox
  1 sibling, 1 reply; 6+ messages in thread
From: erik quanstrom @ 2006-03-08 11:54 UTC (permalink / raw)
  To: 9fans, Marina Brown

yes: upas tries to look up the mx record.
	dnslookup smtp.east.cox.net
fails. there is a problem with their setup.

however, upas/smtp should fall back to the a record.
i wonder why that is not happening.

the function you're interested in is in upas/smtp/mxdial.c

- erik

Marina Brown <marina@surferz.net> writes

|
| Here is the log of the mail failure and of a successfull telnet
| to the smtp host.
|
| term% cat E*
| smtp: dns: dns failure (net!smtp.east.cox.net)
| term% telnet net!smtp.east.cox.net!25
| connected to net!smtp.east.cox.net!25 on /net/tcp/0
| 220 eastrmmtao06.cox.net ESMTP server (InterMail vM.6.01.05.02
| 201-2131-123-102-20050715) ready Wed, 8 Mar 2006 02:58:33 -0500
|
|
| Any ideas ?
|
| I read and post news (NNTP) using Acme news, but acme mail still will
| not work.
|
| ---- Marina Brown


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [9fans] Still picking at a wierd mail issue under Qemu...
  2006-03-08 11:54 ` erik quanstrom
@ 2006-03-08 11:59   ` erik quanstrom
  0 siblings, 0 replies; 6+ messages in thread
From: erik quanstrom @ 2006-03-08 11:59 UTC (permalink / raw)
  To: 9fans, Marina Brown, erik quanstrom

my keyboard driving license should be suspeneded: that should be
	dnslookup smtp.east.cox.com mx

- erik

erik quanstrom <quanstro@quanstro.net> writes

|
| yes: upas tries to look up the mx record.
| 	dnslookup smtp.east.cox.net
| fails. there is a problem with their setup.
|
| however, upas/smtp should fall back to the a record.
| i wonder why that is not happening.
|
| the function you're interested in is in upas/smtp/mxdial.c
|
| - erik
|
| Marina Brown <marina@surferz.net> writes
|
| |
| | Here is the log of the mail failure and of a successfull telnet
| | to the smtp host.
| |
| | term% cat E*
| | smtp: dns: dns failure (net!smtp.east.cox.net)
| | term% telnet net!smtp.east.cox.net!25
| | connected to net!smtp.east.cox.net!25 on /net/tcp/0
| | 220 eastrmmtao06.cox.net ESMTP server (InterMail vM.6.01.05.02
| | 201-2131-123-102-20050715) ready Wed, 8 Mar 2006 02:58:33 -0500
| |
| |
| | Any ideas ?
| |
| | I read and post news (NNTP) using Acme news, but acme mail still will
| | not work.
| |
| | ---- Marina Brown


^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [9fans] Still picking at a wierd mail issue under Qemu...
  2006-03-08  8:03 [9fans] Still picking at a wierd mail issue under Qemu Marina Brown
  2006-03-08 11:54 ` erik quanstrom
@ 2006-03-08 14:55 ` Russ Cox
  1 sibling, 0 replies; 6+ messages in thread
From: Russ Cox @ 2006-03-08 14:55 UTC (permalink / raw)
  To: 9fans

> term% cat E*
> smtp: dns: dns failure (net!smtp.east.cox.net)
> term% telnet net!smtp.east.cox.net!25
> connected to net!smtp.east.cox.net!25 on /net/tcp/0
> 220 eastrmmtao06.cox.net ESMTP server (InterMail vM.6.01.05.02
> 201-2131-123-102-20050715) ready Wed, 8 Mar 2006 02:58:33 -0500

% ndb/dnsquery
> smtp.east.cox.net mx



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [9fans] Still picking at a wierd mail issue under Qemu...
  2006-03-08 18:55 marina
@ 2006-03-08 19:04 ` Russ Cox
  0 siblings, 0 replies; 6+ messages in thread
From: Russ Cox @ 2006-03-08 19:04 UTC (permalink / raw)
  To: marina, 9fans

> Yes, there is no mx record for my ISP's outgoing SMTP server.
> Should there be one ? It seems that only domains that are actually
> having mail delivered to them should need an MX record.

The way that /mail/lib/remotemail invokes upas/smtp,
it is giving smtp.cox.east.net as the domain to deliver
the mail to.  If the mx lookup returns zero entries
then it dials the name directly, but if the mx returns
a dns failure, then it waits for dns to unbreak.

You could change /mail/lib/remotemail to say
exec /bin/upas/smtp -g $addr -h $fd $addr $sender $*
(e.g., add the -g $addr option) and that should
dial the given address even when dns is failing.

Otherwise, edit /sys/src/cmd/upas/smtp/mxdial.c
is where to start, as Erik said.

Russ



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [9fans] Still picking at a wierd mail issue under Qemu...
@ 2006-03-08 18:55 marina
  2006-03-08 19:04 ` Russ Cox
  0 siblings, 1 reply; 6+ messages in thread
From: marina @ 2006-03-08 18:55 UTC (permalink / raw)
  To: 9fans



Original Message:
-----------------
From: Russ Cox rsc@swtch.com
Date: Wed, 8 Mar 2006 09:55:31 -0500
To: 9fans@cse.psu.edu
Subject: Re: [9fans] Still picking at a wierd mail issue under Qemu...


> term% cat E*
> smtp: dns: dns failure (net!smtp.east.cox.net)
> term% telnet net!smtp.east.cox.net!25
> connected to net!smtp.east.cox.net!25 on /net/tcp/0
> 220 eastrmmtao06.cox.net ESMTP server (InterMail vM.6.01.05.02 
> 201-2131-123-102-20050715) ready Wed, 8 Mar 2006 02:58:33 -0500

% ndb/dnsquery
> smtp.east.cox.net mx


Yes, there is no mx record for my ISP's outgoing SMTP server.
Should there be one ? It seems that only domains that are actually
having mail delivered to them should need an MX record.

--- Marina Brown



--------------------------------------------------------------------
mail2web - Check your email from the web at
http://mail2web.com/ .




^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2006-03-08 19:04 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-03-08  8:03 [9fans] Still picking at a wierd mail issue under Qemu Marina Brown
2006-03-08 11:54 ` erik quanstrom
2006-03-08 11:59   ` erik quanstrom
2006-03-08 14:55 ` Russ Cox
2006-03-08 18:55 marina
2006-03-08 19:04 ` Russ Cox

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).