|
-
May 23rd, 1999, 01:49 PM
#1
pop3 server
Hello,
I am trying to write a pop3 server application. Has any one out there had any luck?
I would be grateful for any help.
Best regards
Bassman
-
May 26th, 1999, 08:24 AM
#2
Re: pop3 server
Yes, I have created both Pop3 servers and clients, what exactly is the problem?
The main thing you have to deal with is the commands that you can accept and what responses you are supposed to give to those commands. You can write a very useful pop3-server with only 4 commands implemented.
Greetz,
Dennis
-
July 14th, 1999, 03:17 PM
#3
Re: pop3 server
I have made a Telnet Server, so is it much different?
What commands do you use?
-
July 15th, 1999, 02:13 AM
#4
Re: pop3 server
No it is not that different. Basicly, the pop3 server is a telnet server, only
with specified commands:
Initial, after connection, you have two available commands:
QUIT - disconnect
USER <username> - username to log on
after specifying the USER, you usually have to send a password
PASS <password>
At this point you have established an active connection and have the following commands available to you:
STAT - status (responds with +OK <number of msg> <number of bytes>
LIST - list headers
RETR <id> - retrieve message <id>
DELE <id> - delete message <id>
QUIT - disconnect
Good luck.
Dennis
-
July 21st, 1999, 03:35 PM
#5
Re: pop3 server
How do you accept more than one user, when multiple users connect to the same IP Address and use the same port number?
How does my program know who to send data to, or handle more than one user at anytime?
Cheers
Craig.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|