	PswChg32 is a simple yet complete utility to allow changing the password on a server that implements an Eudora / NUPOP change password service. It is based on Steve Dorner and John Norstad's protocol.
	Asynchronous Winsockets programming is accomplished by use of DWinsock 2.0, available from http://www.cablenet.net/pages/marc/dwinsock . Therefore you must have TClientSocket component from DWinsock 2.0 before compiling this project. 
	At runtime, to be able to change your password, you must already be connected to the server and have supplied:
	- server name or address;
	- Eudora/NUPOP password manager service name or port;
	- your actual user name and password ;
	- the new password. 
	Dialog progression and eventual error messages are presented in a memo control. Last configuration and user name are stored in current user registry database.
	The server's responses should be like an FTP server's responses; 1xx for in progress, 2xx for success, 3xx for more information needed, 4xx for temporary failure, and 5xx for permanent failure. Putting it all together, here's a sample conversation:

 *   S: 200 hello\r\n
 *   E: user yourloginname\r\n
 *   S: 300 please send your password now\r\n
 *   E: pass yourcurrentpassword\r\n
 *   S: 200 My, that was tasty\r\n
 *   E: newpass yournewpassword\r\n
 *   S: 200 Happy to oblige\r\n
 *   E: quit\r\n
 *   S: 200 Bye-bye\r\n
 *   S: <closes connection>
 *   E: <closes connection>

	This program has been developed for internal Datalog Computers necesities and is freeware. You can use it at your own risk.
	Good luck!

	Alin Flaider,	
	aflaidar@datalog.ro