https://github.com/christiancagnazzo/mailservice
Simple mail service organized with a mail server and a mail clients written on Java!
https://github.com/christiancagnazzo/mailservice
java javafxml scenebuilder socket thread
Last synced: 18 days ago
JSON representation
Simple mail service organized with a mail server and a mail clients written on Java!
- Host: GitHub
- URL: https://github.com/christiancagnazzo/mailservice
- Owner: christiancagnazzo
- Created: 2022-04-27T12:45:13.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-30T15:10:51.000Z (about 3 years ago)
- Last Synced: 2025-01-27T06:26:43.816Z (over 1 year ago)
- Topics: java, javafxml, scenebuilder, socket, thread
- Language: Java
- Homepage:
- Size: 1.27 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mailing System
Simple Java application developed on Java for a university course project that implements an electronic mail service organized with a mail server that manages users' mailboxes and the mail clients needed to allow users to access their mailboxes
## Technical Requirements and Architecture
- For testing purposes there are 3 email users communicating with each other. However, the system design allow to scalable to many users
- The application is developed in Java (**JavaFXML**) and based on **MVC architecture**, with Controller + Views and Model, following the principles of the **Observer Observable** pattern. Any communication between Views and Model is mediated by the controller or supported by the Observer Observable pattern
- The application allow the user to correct any incorrect inputs (eg, in case of entering non-existent e-mail addresses, the server send an error message to the client who sent the message; furthermore, in case of inserting syntactically incorrect addresses, the client itself must report the problem without attempting to send the messages to the server)
- Clients and the application server *parallelize* tasks that do not need to be executed sequentially and handle any problems accessing mutually exclusive resources
- The application is distributed (mail clients and server can be on separate JVMs) through the use of **Java Sockets**
## GUI
#### Client



#### Server
