summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Schwinge <thomas@schwinge.name>2010-12-28 16:57:08 +0100
committerThomas Schwinge <thomas@schwinge.name>2010-12-28 16:57:08 +0100
commit45e06041600ffd4840b660d6a898de14f7c7cc65 (patch)
tree37b48c27993dcfbc7e1beba05b00125073c8ae98
parentb925c865e943f1cf21dd19593f2b7fdcaf92bbc3 (diff)
emacstips: Fix typos and suggest mml-secure-message-sign-pgpmime.
-rw-r--r--emacstips.mdwn10
1 files changed, 7 insertions, 3 deletions
diff --git a/emacstips.mdwn b/emacstips.mdwn
index 7a23293..497f2d8 100644
--- a/emacstips.mdwn
+++ b/emacstips.mdwn
@@ -40,7 +40,7 @@ key. To reply to a message or thread, just hit the 'r' key.
When composing new messages, you will be entered in emacs's
`message-mode`, which is a powerful mode for composing and sending
-messages. When in message move, you can type `C-c ?` for help.
+messages. When in message mode, you can type `C-c ?` for help.
If you would like to use address autocompletion when composing
messages, see [address completion](#address_completion).
@@ -73,7 +73,7 @@ if files are dragged from the file manager.
And for those who prefer working from command line, the following
script opens new emacs window with empty message and attaches files
mentioned as script arguments. (Note: The script expects that you have
-`(server-start)` in your .emacs)
+`(server-start)` in your `.emacs` file.)
#!/bin/sh
attach_cmds=""
@@ -182,7 +182,7 @@ viewer, such as a web browser. Here's a little script that Keith
Packard wrote, which he calls `view-html`:
#!/bin/sh
- dir=3D`mktemp -d`
+ dir=`mktemp -d`
trap "rm -r $dir" 0
cat "$@" > "$dir"/msg
if munpack -C "$dir" -t < "$dir"/msg 2>&1 | grep 'Did not find'; then
@@ -282,3 +282,7 @@ This inserts the required `<#part sign=pgpmime>` into the beginning
of the mail text body and will be converted into a pgp signature
when sending (so one can just manually delete that line if signing
is not required).
+
+Alternatively, you may prefer to use `mml-secure-message-sign-pgpmime` instead
+of `mml-secure-sign-pgpmime` to sign the whole message instead of just one
+part.