mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
d04c8e413f
gn & gnspool - simple newsreader and local spooling support. Submitted by: Kiroh HARADA <kiroh@kh.rim.or.jp>
31 lines
780 B
Plaintext
31 lines
780 B
Plaintext
*** smtp.c.orig Mon May 27 21:04:14 1996
|
|
--- smtp.c Thu Feb 6 05:10:18 1997
|
|
***************
|
|
*** 318,329 ****
|
|
if ( smtp_get_resp(220) )
|
|
return(ERROR);
|
|
}
|
|
! }
|
|
! sprintf(resp,"helo %s",gn.hostname);
|
|
! if ( smtp_put_server(resp) != CONT )
|
|
! return(ERROR);
|
|
! if ( smtp_get_resp(250) )
|
|
! return(ERROR);
|
|
|
|
sprintf( resp, "mail from: <%s>", gn.usrname);
|
|
if ( smtp_put_server( resp ) != CONT )
|
|
--- 318,330 ----
|
|
if ( smtp_get_resp(220) )
|
|
return(ERROR);
|
|
}
|
|
!
|
|
! sprintf(resp,"helo %s",gn.hostname);
|
|
! if ( smtp_put_server(resp) != CONT )
|
|
! return(ERROR);
|
|
! if ( smtp_get_resp(250) )
|
|
! return(ERROR);
|
|
! }
|
|
|
|
sprintf( resp, "mail from: <%s>", gn.usrname);
|
|
if ( smtp_put_server( resp ) != CONT )
|