An open API service indexing awesome lists of open source software.

https://github.com/bzdgn/retrieve-blocked-gmail-emails

A source code and a solution to retrieve blocked gmail emails due to the security reasons
https://github.com/bzdgn/retrieve-blocked-gmail-emails

base64 block blocked email emails gmail java solution

Last synced: about 1 year ago
JSON representation

A source code and a solution to retrieve blocked gmail emails due to the security reasons

Awesome Lists containing this project

README

          

# A Base64 Decoder and A Guide On How To Retrieve Blocked GMail Emails

******************************************************************************************

## Contents

- [Getting Started](#getting-started)
- [How To Retrieve Blocked Gmail Email Content In Base64 Form](#a-how-to-retrieve-blocked-gmail-email-content-in-base64-form)
- [Use Provided Software And Convert And Write Base64 Content Into Binary File](#b-use-provided-software-and-convert-and-write-base64-content-into-binary-file)
- [Moreover](#c-moreover)

******************************************************************************************

## Getting Started
This project is a solution to retrieval of blocked gmail emails with the binary attachments
due to the security reasons.

In this README.md file I'll explain how to retrieve your blocked gmail email in Base64 encoded form
and then, I'll show how you are going to retrieve your original attachment with the provided software
within this project.

### A) How To Retrieve Blocked Gmail Email Content In Base64 Form

#### A-1) Retrieve The Email Attachment In Base64 Form

First you have to select the "Show Original" button on the right side of the pulldown menu;


pulldown

As show in below also;


show original

Then you are going to see the content in as below, download the Base64 Encoded content of the attachement;


download-original

[Go Back To Contents](#contents)

#### A-2) Trim The Original Content

This is the content of your attachment, you must trim it so that only the Base64 Encoded part must be in the text file.
So first, trim the beginning of the file as below;


trimming-beginning-of-the-file

And after then, delete the last line of the file as below;


trimming-end-of-the-file

[Go Back To Contents](#contents)

### B) Use Provided Software And Convert And Write Base64 Content Into Binary File

You have the appropriote Base64 Content finally. Convert it to binary with the desired output name as below;

java -jar ConvertBase64.jar

A simple example is shown in below;


example

[Go Back To Contents](#contents)

### C) Moreover

You can find the source code in the

[ConvertBase64.java](https://github.com/bzdgn/retrieve-blocked-gmail-emails/blob/master/src/com/levent/base64bin/ConvertBase64.java)

directory as usual. But if you come here only to convert your Base64 content, go directly to the

[/RunnableJar](RunnableJar)

folder. You can simply download the Runnable Jar [ConvertBase64.jar](https://github.com/bzdgn/retrieve-blocked-gmail-emails/raw/master/RunnableJar/ConvertBase64.jar) and run on the command line.

[Go Back To Contents](#contents)