summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine Beaupré <anarcat@debian.org>2018-04-12 21:01:08 -0400
committerAntoine Beaupré <anarcat@debian.org>2018-04-12 21:01:08 -0400
commit56508f0f96e7ed614ed47a9da1cb584fcb9ed31f (patch)
tree685d822a63a8a25ed43221e3400d3405d5cd0224
parent30decac3a4d9832e37cc540a358f0314d9bf9bff (diff)
document the attachment forgetness fix
I am guessing the header number and email link, i hope i am getting those right
-rw-r--r--emacstips.mdwn13
-rw-r--r--notmuch-emacs.mdwn4
2 files changed, 17 insertions, 0 deletions
diff --git a/emacstips.mdwn b/emacstips.mdwn
index 3738494..4999cdb 100644
--- a/emacstips.mdwn
+++ b/emacstips.mdwn
@@ -819,3 +819,16 @@ can turn the commit hash into a URL pointing there, for example:
"-m" (concat "<" message-id ">")
"-n" "1"
"-f" "%{commit_ref}"))))
+
+## Never forget attachments
+
+Very often we forget to actually attach the file when we send an email
+that's supposed to have an attachment. Did this never happen to you?
+If not, then it will.
+
+There is a hook out there that checks the content of the email for
+keywords and warns you before the email is sent out if there's no
+attachment. This is currently work in progress, but you can already
+add the hook to your `~/.emacs.d/notmuch-config.el` file to test
+it. Details available (and feedback welcome) in the [relevant
+discussion](https://notmuchmail.org/pipermail/notmuch/2018/026414.html).
diff --git a/notmuch-emacs.mdwn b/notmuch-emacs.mdwn
index d14a5c4..bc42d1a 100644
--- a/notmuch-emacs.mdwn
+++ b/notmuch-emacs.mdwn
@@ -132,3 +132,7 @@ mentioned as script arguments. (Note: The script expects that you have
shift
done
emacsclient -a '' -c -e "(progn (compose-mail) $attach_cmds)"
+
+Also, if you're the kind of person who forgets to add attachments,
+there's a cure for that disease. See [Never forget
+attachments](/emacstips#index27h2) for all the details.