chicken-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Chicken-users] smtp egg


From: Daishi Kato
Subject: Re: [Chicken-users] smtp egg
Date: Tue, 05 Feb 2008 17:42:39 +0900
User-agent: Wanderlust/2.15.5 (Almost Unreal) Emacs/21.4 Mule/5.0 (SAKAKI)

At Mon, 4 Feb 2008 14:45:56 +0100,
felix winkelmann wrote:
> 
> On Feb 4, 2008 12:42 PM, Daishi Kato <address@hidden> wrote:
> >
> > I've been having another issue,
> > which I finally found out what's going.
> >
> > When I use smtp with (tcp-buffer-size 1000),
> > smtp:connect doesn't work.
> >
> > The solution would be to add flush-output.
> >
> > (define (send smtp fstr . args)
> >   (when (smtp-verbose smtp) (fprintf (current-error-port) "SMTP: ~?~%" fstr 
> > args))
> >   (fprintf (smtp-out smtp) "~?\r\n" fstr args)
> >   (flush-output (smtp-out smtp) )
> >
> 
> Fixed. Thanks again.

Thanks.
But we also need to add flush-output
when closing the DATA port.
I found it now...

Daishi




reply via email to

[Prev in Thread] Current Thread [Next in Thread]