Skip to content

πŸ“¨ - A POP3 email application in C/C++.

License

Notifications You must be signed in to change notification settings

ValerioL29/sent-me-email

Repository files navigation

SentMeEmail

Introduction

πŸ“¨ - A POP3 email application in C/C++.

Goals -

  1. Communicate with pop3 server.
  2. Store Email in *.eml format.
  3. Friendly user interface and good interactive user experience.

Project Structure

Sent Me Email
β”œβ”€β”€ CMakeLists.txt
β”œβ”€β”€ Config.h.in
β”œβ”€β”€ README.md
β”œβ”€β”€ build
β”‚   └── pop3-client
β”œβ”€β”€ lib
β”‚   β”œβ”€β”€ Base64Codec
β”‚   β”‚   β”œβ”€β”€ Base64Codec.h
β”‚   β”‚   β”œβ”€β”€ CMakeLists.txt
β”‚   β”‚   └── base64.cpp
β”‚   β”œβ”€β”€ Error
β”‚   β”‚   β”œβ”€β”€ CMakeLists.txt
β”‚   β”‚   β”œβ”€β”€ Error.h
β”‚   β”‚   └── error.cpp
β”‚   β”œβ”€β”€ Pop3Session
β”‚   β”‚   β”œβ”€β”€ CMakeLists.txt
β”‚   β”‚   β”œβ”€β”€ Pop3Session.h
β”‚   β”‚   └── pop3session.cpp
β”‚   β”œβ”€β”€ Socket
β”‚   β”‚   β”œβ”€β”€ CMakeLists.txt
β”‚   β”‚   β”œβ”€β”€ Socket.h
β”‚   β”‚   └── socket.cpp
β”‚   └── config.h
β”‚   └── conio.h
β”œβ”€β”€ main.cpp
└── resources

How to Run this project

  1. Install cmake 3.0.0 or higher version.
  2. Clone this project onto your device and cd into project folder.
  3. Execute cmake -B build to create target folder.
  4. Execute cmake --build build to build the whole project and create an executable target.
  5. Run build/pop3-client to start client application, enjoy!

Function Requirements

Basic

  • Connect POP3 server on port 110
  • Guide user to login and show information about their mails
  • Display prompt characters such as mypop >
  • Can display content of mails in terminal
  • The communication procedure can be captured by Wireshark

Advanced

  • Login with implicit password (replace your password by ****)
  • Can download mails and save them only on local machine (remove from remote server)
  • Provide function "Display by subject"
  • Provide function "Search text in all mails"

About

πŸ“¨ - A POP3 email application in C/C++.

Resources

License

Stars

Watchers

Forks

Packages

No packages published