9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
[parent not found: <712199479.2960528.1519232740715.ref@mail.yahoo.com>]
[parent not found: <1945186094.38632.1515822791590.ref@mail.yahoo.com>]
* [9fans] smtpd
@ 2007-11-02 12:43 arisawa
  2007-11-02 13:38 ` erik quanstrom
  0 siblings, 1 reply; 13+ messages in thread
From: arisawa @ 2007-11-02 12:43 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

Hello,

The following data is extracted from my /sys/log/smtpd and /sys/log/ 
smtp.

smtpd:
ar Oct 30 13:43:16 ehlo from 82.34.95.22 as  
82-34-95-22.cable.ubr05.gill.blueyonder.co.uk
ar Oct 30 13:43:26 [82-34-95-22.cable.ubr05.gill.blueyonder.co.uk/ 
82.34.95.22] fastcoco.com!kjeld sent 179 bytes to ar.aichi-u.ac.jp! 
9804261509.aa06201

smtp:
ar Oct 30 13:43:26 /dev/null sent 2623 bytes to kjeld@fastcoco.com

The person who submitted the mail from  
82-34-95-22.cable.ubr05.gill.blueyonder.co.uk might not be  
kjeld@fastcoco.com.

I think it is better for smtpd to reject with message: 550 Requested  
action not taken: mailbox unavailable

Sorry if this is already fixed.

Kenji Arisawa


^ permalink raw reply	[flat|nested] 13+ messages in thread
* Re: [9fans] smtpd
@ 2001-04-22 13:24 bobf
  2001-04-22 13:23 ` arisawa
  0 siblings, 1 reply; 13+ messages in thread
From: bobf @ 2001-04-22 13:24 UTC (permalink / raw)
  To: 9fans

[-- Attachment #1: Type: text/plain, Size: 178 bytes --]

the message size limit is approx. 128 megabytes.

check the /mail/tmp exists and is mode 777
as the mail system spills large messages
to that directory during processing.


[-- Attachment #2: Type: message/rfc822, Size: 2100 bytes --]

From: arisawa@ar.aichi-u.ac.jp
To: 9fans@cse.psu.edu
Subject: [9fans] smtpd
Date: Sun, 22 Apr 2001 21:32:51 +0900
Message-ID: <20010422131819.7A7CE19A3D@mail.cse.psu.edu>

Hello 9fans,

Is there any limitation in the data size of mail that can be
accepted by smtpd?
Large mailes with a photo image cannot be handled by smtpd.
The size ls 301726 bytes for example.

I inserted a debugging line in smtpd.c (the latest release) as
bellow:

	if(sawdot == 0){
		/* message did not terminate normally */
		syslog(0, "smtpd-debug", "nodot: from %s at %d",
him, nbytes);
		syskillpg(pp->pid);
		status = 1;
	}

and observed /sys/log/smtpd-debug:
cpu% tail /sys/log/smtpd-debug
ar Apr 22 21:07:43 nodot: from nx.aichi-u.ac.jp at 81960
ar Apr 22 21:08:30 nodot: from nx.aichi-u.ac.jp at 81960
ar Apr 22 21:15:24 nodot: from nx.aichi-u.ac.jp at 81960
ar Apr 22 21:19:52 nodot: from nx.aichi-u.ac.jp at 81960
ar Apr 22 21:35:45 nodot: from nx.aichi-u.ac.jp at 81960

where nx.aichi-u.ac.jp is a UNIX machine of my home,
and qmail is running on it.

Thanks,

Kenji Arisawa
E-mail: arisawa@aichi-u.ac.jp

^ permalink raw reply	[flat|nested] 13+ messages in thread
* [9fans] smtpd
@ 2001-04-22 12:32 arisawa
  0 siblings, 0 replies; 13+ messages in thread
From: arisawa @ 2001-04-22 12:32 UTC (permalink / raw)
  To: 9fans

Hello 9fans,

Is there any limitation in the data size of mail that can be
accepted by smtpd?
Large mailes with a photo image cannot be handled by smtpd.
The size ls 301726 bytes for example.

I inserted a debugging line in smtpd.c (the latest release) as
bellow:

	if(sawdot == 0){
		/* message did not terminate normally */
		syslog(0, "smtpd-debug", "nodot: from %s at %d",
him, nbytes);
		syskillpg(pp->pid);
		status = 1;
	}

and observed /sys/log/smtpd-debug:
cpu% tail /sys/log/smtpd-debug
ar Apr 22 21:07:43 nodot: from nx.aichi-u.ac.jp at 81960
ar Apr 22 21:08:30 nodot: from nx.aichi-u.ac.jp at 81960
ar Apr 22 21:15:24 nodot: from nx.aichi-u.ac.jp at 81960
ar Apr 22 21:19:52 nodot: from nx.aichi-u.ac.jp at 81960
ar Apr 22 21:35:45 nodot: from nx.aichi-u.ac.jp at 81960

where nx.aichi-u.ac.jp is a UNIX machine of my home,
and qmail is running on it.

Thanks,

Kenji Arisawa
E-mail: arisawa@aichi-u.ac.jp


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

end of thread, other threads:[~2018-02-22  1:18 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <1720486952.343228.1515886233042.ref@mail.yahoo.com>
2018-01-13 23:30 ` [9fans] smtpd G B
2018-01-14 12:59   ` Steve Simon
     [not found] <712199479.2960528.1519232740715.ref@mail.yahoo.com>
2018-02-21 17:05 ` G B
2018-02-21 22:26   ` Steve Simon
2018-02-22  0:19   ` Skip Tavakkolian
2018-02-22  1:18     ` Jeff Sickel
     [not found] <1945186094.38632.1515822791590.ref@mail.yahoo.com>
2018-01-13  5:53 ` G B
2007-11-02 12:43 arisawa
2007-11-02 13:38 ` erik quanstrom
2007-11-02 21:44   ` arisawa
  -- strict thread matches above, loose matches on Subject: below --
2001-04-22 13:24 bobf
2001-04-22 13:23 ` arisawa
2001-04-22 12:32 arisawa

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).