Recent content by vgabriel

  1. V

    SMTPMAIL 501 Syntactically invalid EHLO argument(s)

    There is a problem with chars used in login name. Login name is also used in EHLO command. Allowed are: alpha chars + numeric + hyphen (@ is invalid) Fix: replace vstate = newState(2, "EHLO " + C_User + crlf,hsocket). with vstate = newState(2, "EHLO " + vLocalHostName + crlf,hsocket)...
Back
Top