Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 590 Bytes

README.md

File metadata and controls

19 lines (17 loc) · 590 Bytes

IMAPClient

University assignment for Computer Networks

About the project

GUI program that allows browsing a mailbox. It allows the usage of SSL via SSLSocket java class. Everything was done in low level as required by the assignment. HTML is parsed, however css styling is treated as plain text.

Credentials.java example:

package com.simas;

/**
 * Created by Simas Abramovas on 2015 Mar 22.
 */
public class Credentials {
	public static final String USERNAME = "user";
	public static final String PASSWORD = "pass";
	public static final String HOST = "imap.gmail.com";
}