Re: cannot send using smtp client

2006-01-26 Thread Stefano Bagnara
sundeep Gelli wrote: hi, I am a beginner and i am trying to send a mail to james using a simple smtp class.I followed all the smtp standards specified in smtphandler of james.But james is unable to recieve any mails from it. with outlook everything is going fine.What could be the

Re: cannot send using smtp client

2006-01-26 Thread Stefano Bagnara
sundeep Gelli wrote: Thanks for that I am including the values c and d at every message which are CR and LF respectively. bw.write(HI frnd, how r u); bw.write(.); bw.flush(); this should be bw.write(Subject: test+c+d+c+d); bw.write(HI frnd, how r u+c+d); bw.write(.+c+d); bw.flush();

AW: cannot send using smtp client

2006-01-26 Thread Liebezeit, Bernhard \(EXT\)
] Gesendet: Donnerstag, 26. Januar 2006 10:35 An: James Users List Betreff: Re: cannot send using smtp client sundeep Gelli wrote: Thanks for that I am including the values c and d at every message which are CR and LF respectively. bw.write(HI frnd, how r u); bw.write(.); bw.flush

Re: cannot send using smtp client

2006-01-26 Thread Stefano Bagnara
sundeep Gelli wrote: Hi, This is what i am getting when i tried to send a mail Local socket connection...po.unialert.com Server Response1: 220 sundeep SMTP Server (JAMES SMTP Server 2.2.0) ready Thu, 2 6 Jan 2006 17:49:26 +0800 (GMT+08:00) Server Response2: 250 sundeep Hello ahmz

cannot send using smtp client

2006-01-25 Thread sundeep Gelli
hi, I am a beginner and i am trying to send a mail to james using a simple smtp class.I followed all the smtp standards specified in smtphandler of james.But james is unable to recieve any mails from it. with outlook everything is going fine.What could be the problem? My code looks