https://github.com/albinodrought/imap-password-logger
I forgot my email password.
https://github.com/albinodrought/imap-password-logger
Last synced: about 2 months ago
JSON representation
I forgot my email password.
- Host: GitHub
- URL: https://github.com/albinodrought/imap-password-logger
- Owner: AlbinoDrought
- License: agpl-3.0
- Created: 2019-12-23T02:24:29.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-23T02:24:43.000Z (over 5 years ago)
- Last Synced: 2024-04-14T12:47:20.025Z (about 1 year ago)
- Language: Go
- Size: 12.7 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# IMAP Password Logger
I forgot my email password. The [email client on my phone](https://github.com/k9mail/k-9) wouldn't [export my password](https://github.com/k9mail/k-9/blob/db1dcb46189cd4e62a84ee56c585aec586fa6d6a/app/core/src/main/java/com/fsck/k9/preferences/SettingsExporter.java#L227), but it would let me change the IMAP server. I changed it to this.
See [emersion/go-imap](https://github.com/emersion/go-imap)
## Running
1. Start up the IMAP server (runs on port 1143):
```sh
docker run --rm -it -p 1143:1143 albinodrought/imap-password-logger
```2. Point your mail client at `:1143` with all TLS/SSL features disabled.
3. You should see something like this:
```
2019/12/22 18:00:35 Starting IMAP server at localhost:1143
2019/12/22 18:00:50 [email protected] hunter2
2019/12/22 18:00:50 [email protected] hunter2
```## Building
### Without Docker
```
go get -d -v
go build
```### With Docker
`docker build -t albinodrought/imap-password-logger .`