1 -*- mode: outline; coding: utf-8; -*- |
|
2 |
|
3 * Message headers fields. |
|
4 |
|
5 from = "From:" mailbox-list CRLF |
|
6 sender = "Sender:" mailbox CRLF |
|
7 reply-to = "Reply-To:" address-list CRLF |
|
8 |
|
9 to = "To:" address-list CRLF |
|
10 cc = "Cc:" address-list CRLF |
|
11 bcc = "Bcc:" (address-list / [CFWS]) CRLF |
|
12 newsgroups |
|
13 |
|
14 http://tools.ietf.org/rfc//rfc2076.txt |
|
15 Common Internet Message Headers, Informational |
|
16 http://tools.ietf.org/rfc/rfc2822.txt |
|
17 Internet Message Format, Standard Track |
|
18 http://tools.ietf.org/rfc/rfc2821.txt |
|
19 Simple Mail Transfer Protocol, Standard Track |
|
20 |
|
21 * Sending email via gmail in emacs. |
|
22 |
|
23 ; install starttls from here (no need for patch) |
|
24 ; http://josefsson.org/emacs-smtp-starttls.html |
|
25 |
|
26 (setq send-mail-function 'smtpmail-send-it |
|
27 message-send-mail-function 'smtpmail-send-it |
|
28 smtpmail-starttls-credentials |
|
29 '(("smtp.gmail.com" 587 nil nil)) |
|
30 smtpmail-auth-credentials |
|
31 (expand-file-name "~/.authinfo") |
|
32 smtpmail-default-smtp-server "smtp.gmail.com" |
|
33 smtpmail-smtp-server "smtp.gmail.com" |
|
34 smtpmail-smtp-service 587 |
|
35 smtpmail-debug-info t |
|
36 starttls-extra-arguments nil |
|
37 smtpmail-warn-about-unknown-extensions t |
|
38 starttls-use-gnutls nil) |
|
39 |
|
40 machine smtp.gmail.com login [your name]@gmail.com password [your password] |
|
41 |
|
42 And finally download, unzip, make and install startttls: |
|
43 |
|
44 http://josefsson.org/emacs-smtp-starttls.html |
|
45 |
|
46 See |
|
47 |
|
48 http://justinsboringpage.blogspot.com/2009/02/sending-email-via-gmail-in-emacs.html |
|
49 http://obfuscatedcode.wordpress.com/2007/04/26/configuring-emacs-for-gmails-smtp |
|
50 |
|
51 * Mail etiquette. |
|
52 |
|
53 ** Bottom vs. top quoting. |
|
54 |
|
55 Just not use top quoting! |
|
56 |
|
57 ** Stallman warn about Google. |
|
58 |
|
59 http://www.mail-archive.com/gnu-emacs-sources@gnu.org/msg00302.html |
|
60 |
|
61 * Storage format for email. |
|
62 |
|
63 ** mbox. |
|
64 |
|
65 http://tools.ietf.org/html/rfc4155 |
|
66 The application/mbox Media Type (Category: Informational) |
|
67 http://en.wikipedia.org/wiki/Mbox |
|
68 |
|
69 ** maildir. |
|
70 |
|
71 http://en.wikipedia.org/wiki/Maildir |
|
72 |
|
73 ** MH mailbox format. |
|
74 |
|
75 http://en.wikipedia.org/wiki/MH_Message_Handling_System |
|
76 |
|