This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ kudos to github.com/thouters for the original file parsing script | |
| https://github.com/thouters/nokia-nbu-tools/blob/master/nbu2mailbox.py | |
| Requirements: | |
| pydantic@2.5 | |
| """ | |
| from collections import defaultdict | |
| import datetime |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| if [ ! -f anonionmail.jar ]; then | |
| wget https://github.com/sg10/akits1-anonionmail/raw/master/client-tor.jar -O anonionmail.jar | |
| fi | |
| java -jar anonionmail.jar -DsocksPort=9050 -DsocksHost=127.0.0.1 |