diff options
| author | Mehdi Sadeghi <mehdi@mehdix.org> | 2021-04-25 14:42:44 +0200 |
|---|---|---|
| committer | Mehdi Sadeghi <mehdi@mehdix.org> | 2021-04-25 14:45:47 +0200 |
| commit | d97c5e1bc7d7eb607d5763f08eb38d16a96a509f (patch) | |
| tree | d0349ac4726ba36f257562833bc57b2fd03e1271 | |
| parent | d7bfc27d62972f1036aa5f4b592518eb78b341a2 (diff) | |
Add muttrc without secret.
| -rw-r--r-- | .config/mutt/muttrc | 17 | ||||
| -rwxr-xr-x | .local/bin/xdg-open | 2 | ||||
| -rw-r--r-- | .zprofile | 4 |
3 files changed, 20 insertions, 3 deletions
diff --git a/.config/mutt/muttrc b/.config/mutt/muttrc new file mode 100644 index 0000000..af71e9f --- /dev/null +++ b/.config/mutt/muttrc @@ -0,0 +1,17 @@ +# Read imap_pass +source ~/.config/mutt/secret + +# IMAP +set spoolfile = imaps://mail.mehdix.org/ +set imap_user = mehdi@mehdix.org + +# SMTP +set record = +Sent +set from = mehdi@mehdix.org +set realname = "Mehdi Sadeghi" +set smtp_pass = $imap_pass +set smtp_url = smtp://$imap_user@mehdix.org:587/ + +# Mailing Lists +lists sr.ht-discuss +set reply_to = "ask-yes" diff --git a/.local/bin/xdg-open b/.local/bin/xdg-open index a1d6842..e87c35e 100755 --- a/.local/bin/xdg-open +++ b/.local/bin/xdg-open @@ -10,4 +10,4 @@ case "${1%%:*}" in *) exec /usr/bin/xdg-open "$@" ;; -esa +esac @@ -1,8 +1,8 @@ # .zprofile is loaded on login shells, e.g. when doing ssh. -# or running with --shell flag. +# or when running with --shell flag. ## Read bash profile if present. # emulate sh -c '. ~/.profile' -# Clone oh-my-zsh of not present. +# Clone oh-my-zsh if not present. [[ ! -e .oh-my-zsh ]] && git clone https://github.com/ohmyzsh/ohmyzsh .oh-my-zsh |
