Re: [BangPypers] Embedded python mail server

2011-08-24 Thread Dhananjay Nene
On Wed, Aug 24, 2011 at 12:48 PM, Gopalakrishnan Subramani wrote: > fakemail seems to be right solution to me. interesting discovery. > Had troubles with easy_install. Colleague recommended http://packages.python.org/lazr.smtptest/docs/queue.html Quickly tried out in shell .. works and looks like

Re: [BangPypers] Embedded python mail server

2011-08-24 Thread Gopalakrishnan Subramani
fakemail seems to be right solution to me. interesting discovery. On Wed, Aug 24, 2011 at 1:10 AM, Dhananjay Nene wrote: > Just discovered http://www.lastcraft.com/fakemail.php > > On Wed, Aug 24, 2011 at 12:37 PM, Dhananjay Nene > wrote: > > On Wed, Aug 24, 2011 at 12:34 PM, Dhananjay Nene >

Re: [BangPypers] Embedded python mail server

2011-08-24 Thread Dhananjay Nene
Just discovered http://www.lastcraft.com/fakemail.php On Wed, Aug 24, 2011 at 12:37 PM, Dhananjay Nene wrote: > On Wed, Aug 24, 2011 at 12:34 PM, Dhananjay Nene > wrote: >> On Wed, Aug 24, 2011 at 12:25 PM, Gopalakrishnan Subramani >> wrote: >>> So you basically look for SMTP and also a POP3 ac

Re: [BangPypers] Embedded python mail server

2011-08-24 Thread Dhananjay Nene
On Wed, Aug 24, 2011 at 12:34 PM, Dhananjay Nene wrote: > On Wed, Aug 24, 2011 at 12:25 PM, Gopalakrishnan Subramani > wrote: >> So you basically look for SMTP and also a POP3 access to the server? With >> that you could send a mail using SMTP and retrieve using POP3 to make sure >> the mail reac

Re: [BangPypers] Embedded python mail server

2011-08-24 Thread Dhananjay Nene
On Wed, Aug 24, 2011 at 12:25 PM, Gopalakrishnan Subramani wrote: > So you basically look for SMTP and also a POP3 access to the server? With > that you could send a mail using SMTP and retrieve using POP3 to make sure > the mail reached safely? There is no way to get the return receipt in SMTP >

Re: [BangPypers] Embedded python mail server

2011-08-23 Thread Gopalakrishnan Subramani
So you basically look for SMTP and also a POP3 access to the server? With that you could send a mail using SMTP and retrieve using POP3 to make sure the mail reached safely? There is no way to get the return receipt in SMTP (sorry, I could be wrong since I coded SMTP & POP3 6 years back with limite

Re: [BangPypers] Embedded python mail server

2011-08-23 Thread Dhananjay Nene
On Wed, Aug 24, 2011 at 12:03 PM, Gopalakrishnan Subramani wrote: > Use the http://hg.python.org/cpython/file/2.7/Lib/smtpd.py server. smtpd is > a proxy so only look at the client interface level, you may not need to push > to local server, no need to store to DB etc. > > you copy the file and mo

Re: [BangPypers] Embedded python mail server

2011-08-23 Thread Gopalakrishnan Subramani
Use the http://hg.python.org/cpython/file/2.7/Lib/smtpd.py server. smtpd is a proxy so only look at the client interface level, you may not need to push to local server, no need to store to DB etc. you copy the file and modify and wrap to meet your automation needs and to get the response confirma

Re: [BangPypers] Embedded python mail server

2011-08-23 Thread Dhananjay Nene
On Wed, Aug 24, 2011 at 11:06 AM, Anand Chitipothu wrote: > 2011/8/24 Dhananjay Nene : >> What would be good options to embed a python mail server ? >> >> The scope is strictly restricted to automated testing. So the embedded >> mail server (embedded in the test cases) acts as the server which >>

Re: [BangPypers] Embedded python mail server

2011-08-23 Thread Anand Chitipothu
2011/8/24 Dhananjay Nene : > What would be good options to embed a python mail server ? > > The scope is strictly restricted to automated testing. So the embedded > mail server (embedded in the test cases) acts as the server which > receives email and is in turn further queried to ensure receipt of

[BangPypers] Embedded python mail server

2011-08-23 Thread Dhananjay Nene
What would be good options to embed a python mail server ? The scope is strictly restricted to automated testing. So the embedded mail server (embedded in the test cases) acts as the server which receives email and is in turn further queried to ensure receipt of email correctly. One option is htt