There're a lot of combinations to manage your email with emacs, but this works for me. I've a backup and I can manage my daily email.
The stack:
- emacs
- offlineimap
- mu
- mu4e
| //first.ks | |
| // This program launches a ship from the KSC and flies it into orbit | |
| //Set the ship to a known configuration | |
| SAS off. | |
| RCS on. | |
| lights on. | |
| lock throttle to 0. //Throttle is a decimal from 0.0 to 1.0 | |
| gear off. |
| #!/bin/bash | |
| # bash generate random alphanumeric string | |
| # | |
| # bash generate random 32 character alphanumeric string (upper and lowercase) and | |
| NEW_UUID=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1) | |
| # bash generate random 32 character alphanumeric string (lowercase only) | |
| cat /dev/urandom | tr -dc 'a-z0-9' | fold -w 32 | head -n 1 |