I hereby claim:
- I am SomeClown on github.
- I am someclown (https://keybase.io/someclown) on keybase.
- I have a public key whose fingerprint is 7A49 14AE CE22 924A 755A 54EE 1F4E 791A 5DA6 6575
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
# ------------------------------------------------------------ | |
IMAPAccount Acme | |
Host mail.acme.net | |
Port 993 | |
User [email protected] | |
PassCmd "/usr/local/bin/gpg2 -q --for-your-eyes-only --no-tty -d /Users/username/.accounts/.acme.gpg" | |
SSLType IMAPS | |
AuthMechs PLAIN | |
CertificateFile /Users/username/.accounts/acme1.crt | |
CertificateFile /Users/username/.accounts/acme2.crt |
#DavMail settings | |
#Fri Jan 06 10:26:00 PST 2017 | |
davmail.allowRemote=true | |
davmail.bindAddress= | |
davmail.caldavAlarmSound= | |
davmail.caldavEditNotifications=true | |
davmail.caldavPastDelay=90 | |
davmail.caldavPort=1080 | |
davmail.clientSoTimeout= | |
davmail.defaultDomain= |
# Paths ---------------------------------------------- | |
source ~/.mutt/acme1_config | |
source ~/.mutt/acm2_config | |
source ~/.mutt/acme3_config | |
macro index <F1> '<sync-mailbox><enter-command>source ~/.mutt/acme1_config<enter><change-folder>!<enter>' | |
macro index <F2> '<sync-mailbox><enter-command>source ~/.mutt/acme2_config<enter><change-folder>!<enter>' | |
macro index <F3> '<sync-mailbox><enter-command>source ~/.mutt/acme3_config<enter><change-folder>!<enter>' | |
# Basic Options -------------------------------------- | |
set wait_key = no # shut up, mutt |
# Paths ---------------------------------------------- | |
set folder = "~/.mail/acme" # mailbox location | |
set spoolfile = "~/.mail/acme/inbox" # inbox | |
set record = "~/.mail/acme/sent" # sent mail | |
set postponed = "~/.mail/acme/drafts" | |
set alias_file = "~/.mutt/alias" # where to store aliases | |
set header_cache = "~/.mutt/cache/headers" # where to store headers | |
set message_cachedir = "~/.mutt/cache/bodies" # where to store bodies | |
set certificate_file = "~/.mutt/certificates" # where to store certs | |
set mailcap_path = "~/.mutt/mailcap" # entries for filetypes |
*/5 * * * * killall mbsync &>/dev/null; /usr/local/bin/mbsync -a -V 2>&1 > ~/.mbsync_log |
openssl s_client -showcerts -connect www.example.com:443 </dev/null |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
#!/bin/bash | |
# Updates all out of date pip packages | |
pip freeze --local | grep -v '^\-e' | cut -d = -f 1 | xargs -n1 pip install -U |
from flask import Flask | |
app = Flask(__name__) | |
@app.route("/") | |
def hello(): | |
return "Hello World!" | |
if __name__ == "__main__": | |
app.run() |