[issue16462] smtpd should return greeting

2018-01-09 Thread Barry A. Warsaw

Barry A. Warsaw  added the comment:

I'm closing this as won't fix since smtpd.py is deprecated and likely won't see 
any fixes.  Please take a look at aiosmtpd as a much better third party 
replacement.

--
resolution:  -> wont fix
stage:  -> resolved
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16462] smtpd should return greeting

2016-09-08 Thread R. David Murray

R. David Murray added the comment:

If someone wants to write a patch for this, we now require (unless you set 
decode_data to False) that process_message take a **kw dict, so we can pass the 
greeting in that dict.

--
versions: +Python 3.7 -Python 3.4

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16462] smtpd should return greeting

2015-03-07 Thread Håkan Lövdahl

Changes by Håkan Lövdahl hlovd...@gmail.com:


--
nosy: +Håkan Lövdahl

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16462
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16462] smtpd should return greeting

2013-11-20 Thread Leslie P. Polzer

Changes by Leslie P. Polzer pol...@port-zero.com:


--
nosy: +lpolzer

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16462
___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16462] smtpd should return greeting

2012-11-26 Thread Jesús Cea Avión

Jesús Cea Avión added the comment:

The trivial approach would be to add a new set_helo_string() method to 
SMTPServer class, and be called before process_message(). User subclasses 
would be inherit it.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16462
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16462] smtpd should return greeting

2012-11-12 Thread mike.a

New submission from mike.a:

The greeting value is required by SPF, and should be returned by SMTPChannel. 
This would involve a simple fix by adding self.__greeting to the list of 
returned values in the status object

--
messages: 175451
nosy: mike.a
priority: normal
severity: normal
status: open
title: smtpd should return greeting
type: enhancement
versions: Python 2.6

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16462
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16462] smtpd should return greeting

2012-11-12 Thread Jesús Cea Avión

Jesús Cea Avión added the comment:

Mike, could you possibly elaborate more?. I don't understand your bug report.

BTW, Python 2.6 is open only for security bugfixes. Python 2.7, 3.2 and 3.3 are 
currently open for regular bugfixes.

--
nosy: +jcea

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16462
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16462] smtpd should return greeting

2012-11-12 Thread mike.a

mike.a added the comment:

The greeting value is the HELO/EHLO identity. RFC 4408 (SPF) recommends 
checking both the mail from domain as well as the HELO identity, so this value 
is useful and could be passed to proc_message() function (API for doing 
something useful with this message). Later versions of the code pass the same 
values, so this is relevant for 2.7, 3.2, and 3.3.

--
versions: +Python 2.7, Python 3.1, Python 3.2, Python 3.3 -Python 2.6

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16462
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16462] smtpd should return greeting

2012-11-12 Thread R. David Murray

R. David Murray added the comment:

Are you asking to have seen_greeting passed in the server.process_message call? 
 That is reasonable.

--
components: +email
nosy: +barry, r.david.murray
versions: +Python 2.6 -Python 2.7, Python 3.1, Python 3.2, Python 3.3

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16462
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16462] smtpd should return greeting

2012-11-12 Thread mike.a

mike.a added the comment:

David,

Yes, that is what I am asking.

Thanks,
-Mike

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16462
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16462] smtpd should return greeting

2012-11-12 Thread R. David Murray

R. David Murray added the comment:

On the other hand, it would also be backward incompatible.

Can anyone think of a backward compatible way to provide this info?  Maybe we 
could use the new signature object support.

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16462
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue16462] smtpd should return greeting

2012-11-12 Thread R. David Murray

Changes by R. David Murray rdmur...@bitdance.com:


--
versions: +Python 3.4 -Python 2.6

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue16462
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com