modified to get the EHLO domain from the path part of the URL instead of the

user name
This commit is contained in:
Daniel Stenberg
2009-12-30 22:50:42 +00:00
parent a1311e5a24
commit 6c6dc3f879
4 changed files with 18 additions and 8 deletions

View File

@@ -45,9 +45,9 @@ typedef enum {
struct */
struct smtp_conn {
struct pingpong pp;
char *domain; /* what to send in the EHLO */
int eob; /* number of bytes of the EOB (End Of Body) that has been
received thus far */
char *domain; /* what to send in the EHLO */
int eob; /* number of bytes of the EOB (End Of Body) that has been
received thus far */
smtpstate state; /* always use smtp.c:state() to change state! */
};