# --> YXV0aGlkXDB3ZWJtYXN0ZXJAZXhhbXBsZS5jb21cMG1haWxsZXVy
# authid will be discarded by authentication procedure
#authid can be missing
-S:AUTH PLAIN AHVzZXIxQG1haWxwb3N0Zy5leGFtcGxlLmNvbQBtYWlsbGV1cg==
-R:504 5.7.4 authentication failed
+S:AUTH PLAIN YXV0aGlkXDB3ZWJtYXN0ZXJAZXhhbXBsZS5jb21cMG1haWxsZXVy
+R:235 5.7.5 Authentication successful
+S:MAIL FROM:<user1@postdb.example.com>
+R:250 2.1.3 webmaster@example.com.. sender ok
S:QUIT
R:221 2.0.0 Bye, closing connection...
code=ptr->code;
par=keyword+strlen(ptr->key);
*keyword='\000'; //lets say no parameters
- if ((*par=='\000')||((*par!=' ')&&(*par!='\t')))
- break; //space missing -> argument missing
+ if (*par=='\000')
+ break; //no parameters
//removing unneeded space
while ((*par==' ')||(*par=='\t'))
par++;