1. Homepage
  2. Programming
  3. CS305 Computer Network - PA1: SMTP Server

CS305 Computer Network - PA1: SMTP Server

Engage in a Conversation
SUSTechCS305Computer NetworkPythonSMTP

CS305 2023 Fall Assignment 1 - SMTP Sever CourseNana.COM

PA1 for CS305 2023 Fall: SMTP Server CourseNana.COM

Introduction SMTP: CourseNana.COM

The Simple Mail Transfer Protocol (SMTP) is an Internet standard communication protocol for electronic mail transmission. Mail servers and other message transfer agents use SMTP to send and receive mail messages. User-level email clients typically use SMTP only for sending messages to a mail server for relaying, and typically submit outgoing email to the mail server. CourseNana.COM

POP-3: CourseNana.COM

The Post Office Protocol (POP) provides access via an Internet Protocol (IP) network for a user client application to a mailbox maintained on a mail server. The protocol supports list, retrieve and delete operations for messages. POP3 is the version in most common use. Comparing with the original version, POP3 clients have an option to leave mail on the server after retrieval, and in this mode of operation, clients will only download new messages which are identified by using the UIDL command (unique-id list). CourseNana.COM

In this assignment, your goal is to implement a simple SMTP Server in Python, which should be able to support e-mail sending and retrieving in a proper way. In order to give a clearer understanding, the figure below shows the overall structure of this assignment, the green parts are provided and YELLOW parts requires implementation. CourseNana.COM

SMTP Server 1
(requires implementation)
SMTP CourseNana.COM

SMTP Server 2 (evaluation server) CourseNana.COM

SMTP Protocol CourseNana.COM

POP3 Protocol CourseNana.COM

Protocol CourseNana.COM

Pseudo DNS query CourseNana.COM

Agent (provided testbench) CourseNana.COM

Modules in the above figure covers: CourseNana.COM

Pseudo DNS Server (provided) CourseNana.COM

1. An Agent that can: send and receive email, perform pseudo DNS query to lookup the servers. CourseNana.COM

No. 1 / 13 CourseNana.COM

CS305 2023 Fall Assignment 1 - SMTP Sever CourseNana.COM

2. A SMTP Server that support: POP3 & SMTP protocol transmission with Agent, SMTP protocol transmission with another SMTP Server, and performs pseudo DNS query to lookup servers. CourseNana.COM

3. A Pseudo DNS Server that handles: pseudo DNS queries from Agent & Server. CourseNana.COM

Typically the SMTP server provider will assgin specific ports for their SMTP and POP3 service and deploy on separate servers. However, to adapt the DNS lookup process for local testing, we retain the MX record while replacing the A record with the P record which returns the port of the queried domain rather than ip address. Then we can use localhost and the returned port number to establish TCP connections to different servers. CourseNana.COM

During implementation, you can test your server anytime with the structure below by simply start two SMTP server processes from your implementation. In this case, the structure comes to: CourseNana.COM

SMTP Server 1
(your implementation)
SMTP CourseNana.COM

SMTP Server 2 (your implementation) CourseNana.COM

SMTP Protocol CourseNana.COM

POP3 Protocol CourseNana.COM

Protocol CourseNana.COM

Pseudo DNS query CourseNana.COM

Agent (provided testbench) CourseNana.COM

For more detailed information, please refer to section Hands-on Tutorial. If you have any questions about this assignment, you are welcomed to raise an issue in this GitHub repository. By the way, you can read these documents (online or offline. For the offline documents, you can click the "Offline" links below to open them, or check them in the ./references dictionary.) for a better understanding of this assignment: CourseNana.COM

Wikipedia: CourseNana.COM

Simple Mail Transfer Protocol (Online) Simple Mail Transfer Protocol(Offline) Post Office Protocol (Online)
Post Office Protocol (Offline)
CourseNana.COM

List of SMTP server return codes (Online) CourseNana.COM

List of SMTP server return codes (Offline) List of SMTP & POP3 commands CourseNana.COM

RFC 1939: Definition of POP3 CourseNana.COM

Pseudo DNS Server (provided) CourseNana.COM

No. 2 / 13 CourseNana.COM

CS305 2023 Fall Assignment 1 - SMTP Sever CourseNana.COM

RFC 5321: Definition of SMTP CourseNana.COM

Environment Setup CourseNana.COM

Python 3.7+ in Windows/MacOS/Linux is required to run all the modules, and your code submitted will be tested in Python 3.10. By the way, a few dependencies needs to be installed if you have not. To do this, you can use cmd under the project directory (default: .../assign1/src) and type this command: CourseNana.COM

Tasks CourseNana.COM

In the following tasks you can ONLY use the Python standard library, excluding smtplib, poplib and all the libraries provided by us. Failure to comply with this rule will lead to a 0 score for this assignment, and the result CANNOT be appealed. CourseNana.COM

We have provided a skeleton file called server.py, you can implement your code in this file. For the first step, you MUST replace the id in "student_id()" function with your own SID. Except for this, do not modify the function names and the corresponding parameter lists. CourseNana.COM

Task 1: Implement POP3 protocol transmission handling (30pts) CourseNana.COM

The following are common commands and usage of POP3: CourseNana.COM

pip install -r requirements.txt

No. 3 / 13 CourseNana.COM

CS305 2023 Fall Assignment 1 - SMTP Sever CourseNana.COM

Authentication username. CourseNana.COM

PASS Authentication password. CourseNana.COM

Return mailbox status. CourseNana.COM

Returns the text for the specified message. If not specified, returns all separately. CourseNana.COM

Revoke all DELE commands. CourseNana.COM

Return a positive response. CourseNana.COM

End the session. CourseNana.COM

Returns the total number of bytes for the specified message. If not LIST x / specified, returns all separately. LIST CourseNana.COM

DELE Pre delete the specified email. But it is actually deleted when QUIT DELE x is executed. CourseNana.COM

*In the above chart, x is the index of a specific e-mail. The bold parts in the above chart need to be replaced with specific values according to the actual situation. CourseNana.COM

*For the commands above, the command names are not case sensitive, but some parameters are case sensitive for authentication reasons. For example: USER usr1 == user usr1, but USER usr1 != USER Usr1. CourseNana.COM

In this task, you should implement a basic POP3 server that can: CourseNana.COM

Handle connections (5 pts): In default, POP3 listens on port 110. However, for security concerns, you are supposed to use other ports. Successfully establishing connnection with agent and verifying user with password will lead to full marks in this part. For sample settings, please refer to ".../src/data/config.toml" and ".../src/data/fdns.toml". (i.e. support command: USER + PASS ) CourseNana.COM

Return mailbox status (5 pts): To simplify, you just need to return the number of emails and the total number of bytes in emails. (i.e. support command: STAT )
Testing and managing emails (10 pts): In this part, you are supposed to list, retrieve, (pre)delete emails, and also reset the deletion. Further, a function that simply returns a positive response is required. (i.e. support command: LIST + RETR + DELE + RSET + NOOP ) End the session (10 pts): To end the session, you should first clear up the emails you marked as (pre)delete. After that, disconnect the server with the agent and return back. (i.e. support command: QUIT ) CourseNana.COM

CMD Description Usage CourseNana.COM

No. 4 / 13 CourseNana.COM

CS305 2023 Fall Assignment 1 - SMTP Sever CourseNana.COM

Task 2: Implement SMTP protocol transmission handling (60 pts) CourseNana.COM

The following are common commands and usage of SMTP: CourseNana.COM

Description CourseNana.COM

Start a session. CourseNana.COM

Tells the mail address of the receptors. CourseNana.COM

The content of the mail. CourseNana.COM

End the session. CourseNana.COM

Usage CourseNana.COM

helo/ehlo [ip_addr of sender] CourseNana.COM

rcpt TO:<e-mail_addr of receptors> data CourseNana.COM

quit CourseNana.COM

MAIL Start sending mails. CourseNana.COM

mail FROM:<e-mail_addr of the sender> CourseNana.COM

*The bold parts in the above chart need to be replaced with specific values according to the actual situation. CourseNana.COM

*For the commands above, the command names are not case sensitive, but some parameters are case sensitive for authentication reasons. For example: mail FROM:<123abc@gmail.com> == mail from:<123abc@gmail.com>, but mail FROM:<123abc@gmail.com> != mail FROM:<12 3ABC@gmail.com>. CourseNana.COM

In this task, you should implement a basic SMTP server that can: CourseNana.COM

Handle connections (10 pts): Successfully establish connection with agent and other SMTP servers (utilizing pseudo DNS query). (i.e. support command: HELO )
Anonymous logins (10 pts): Verify the existence of sender if the connection is from an agent, and the existence of receiver if the connection is from another SMTP server. Generate a delivery failure message and mail it back to the sender if verification above failed. (i.e. support command: HELO ) CourseNana.COM

Transfer mails (30 pts): Successfully receive the data bytes and deliver to the correct mailbox or SMTP server. When sending the mail to all recipients, if the recipient's domain is same with the sender, put it into the mailbox. Otherwise, send it to the recipient's server. (i.e. support command: MAIL + RCPT + DATA )
End the session (10 pts): Require the receptor to send a farewell message and stop the connection. Before the sender receives the farewell message, neither side can disconnect, even if there is an error in the transmission. (i.e. support command: QUIT ) CourseNana.COM

Task 3: Advanced functions (up to 10 pts) CourseNana.COM

There are also some points for you if you finish this assignment more elegant or implement some advanced functions. The following are some tips for what you can do. You will receive no more than 10 points for this part. CourseNana.COM

Error handling (5-10 pts): Connection refused, illegal mail address, illegal command, ... CourseNana.COM

More commands (2 pts each): Implement more commands other than those required in Task 1 CourseNana.COM

and 2. e.g. UIDL, HELP, VRFY, SOML,SAML, etc. CourseNana.COM

Peer mailing (5 pts): Achieve the e-mail sending and receiving between you and your friends. If you choose one or more students in our class as your partner, all of you can get the 5 pts. CourseNana.COM

Other work that you think is worth doing. CourseNana.COM

Hands-on Tutorial CourseNana.COM

To test your implementation through the structure in above figure, you can run the agent and server using the commands below, CourseNana.COM

The way to simply start an agent and a server: (Just an example, not a test case.) CourseNana.COM

The demo test case is provided here. You can execute the instructions in the order shown in the example for testing. Also, there is a sample output for the server and wireshark when emailing myself. You can also refer to them for the output format checking. The final test script includes but is not limited to the commands displayed in the sample output. All commands listed above will be tested. CourseNana.COM

Start two server, three agents and email each other: 1. Using the following command to start two server. CourseNana.COM

# Agent CourseNana.COM

python agent.py -e <email_addr> -p <password>
# SMTP Server
python server.py -n <domain_name>

No. 6 / 13 CourseNana.COM

CS305 2023 Fall Assignment 1 - SMTP Sever CourseNana.COM

2. Using the following command to connect agent to server, send or retrieve email. CourseNana.COM

No. 7 / 13 CourseNana.COM

CS305 2023 Fall Assignment 1 - SMTP Sever CourseNana.COM

Sample output for the server (Only for emailing myself): CourseNana.COM

Sample output for Wireshark (Only for emailing myself):
(Should you have any question about the usage of Wireshark, you can refer to the appendix.)
CourseNana.COM

SMTP packages: CourseNana.COM

POP3 packages (Only for emailing myself): CourseNana.COM

If you are confused with the response code and response body corresponding to the command, remember to refer to wireshark result pictures or wikipedia documents we provided above. CourseNana.COM

Grading Policies CourseNana.COM

You should turn in a zip file and a pdf file. The zip file should include all of your code, and all of the functions should be implemented in the main file of the code named server.py. As for the pdf file, you should include the screenshot of the result of the testing script, which will be released shortly on the GitHub repository, AND the screenshot of the Wireshark packets captured during the testing procedure. You should properly set the filter so that only the CourseNana.COM

No. 9 / 13 CourseNana.COM

CS305 2023 Fall Assignment 1 - SMTP Sever CourseNana.COM

packets related to this assignment are shown, otherwise we will deduct 1~2 points from your final score on Blackboard.
If there are any additional points specified in section “Task 3: Bonus”, their functionalities and screenshots of the code should be included in the pdf file,
otherwise they will not be considered! Your implementation will be scored according to the criteria listed in the Task section.
Remember to change the welcome message of the server as instructed, otherwise you will get a
0 score for this assignment. CourseNana.COM

punishment as shown in the rules. CourseNana.COM

Should you have any questions, please raise an issue here. This is also the place where later materials, announcements, and clarifications will be published, so remember to check it out frequently. CourseNana.COM

Appendix CourseNana.COM

Here is a detailed manual for how to use Wireshark to capture SMTP and POP3 packages. 1 Open Wireshark and choose "Analysis" -> "Decode as": CourseNana.COM

2 Click "+". CourseNana.COM

You are not permitted to copy any code from other students or the Internet. Your code will CourseNana.COM

be checked for duplicates along with (not only) all submitted assignments. If you are CourseNana.COM

found plagiarizing, your score will be recorded as 0 for this assignment, and subject to CourseNana.COM

3 Take POP for gmail.com (port 2110) as an example, set "Value" as the port number 2110, and "Current" as POP, then click "OK": CourseNana.COM

4 Choose Capture -> Options: CourseNana.COM

5 Set the interface as "Adapter for loopback traffic capture", filter as "tcp port 2110" in this example, then click "Start": CourseNana.COM

6 Execute your code in order, and you can capture the corresponding POP packets. CourseNana.COM

7 For SMTP, you only need to change the "Current" option as SMTP, and replace each of the above areas that involve setting port with the new SMTP port. CourseNana.COM

Get in Touch with Our Experts

WeChat WeChat
Whatsapp WhatsApp
SUSTech代写,CS305代写,Computer Network代写,Python代写,SMTP代写,SUSTech代编,CS305代编,Computer Network代编,Python代编,SMTP代编,SUSTech代考,CS305代考,Computer Network代考,Python代考,SMTP代考,SUSTechhelp,CS305help,Computer Networkhelp,Pythonhelp,SMTPhelp,SUSTech作业代写,CS305作业代写,Computer Network作业代写,Python作业代写,SMTP作业代写,SUSTech编程代写,CS305编程代写,Computer Network编程代写,Python编程代写,SMTP编程代写,SUSTechprogramming help,CS305programming help,Computer Networkprogramming help,Pythonprogramming help,SMTPprogramming help,SUSTechassignment help,CS305assignment help,Computer Networkassignment help,Pythonassignment help,SMTPassignment help,SUSTechsolution,CS305solution,Computer Networksolution,Pythonsolution,SMTPsolution,