annotate lisp/gnus/messcompat.el @ 16:0293115a14e9 r19-15b91

Import from CVS: tag r19-15b91
author cvs
date Mon, 13 Aug 2007 08:49:20 +0200
parents ac2d302a0011
children ec9a17fef872
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
1 ;;; messcompat.el --- making message mode compatible with mail mode
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
2 ;; Copyright (C) 1996,97 Free Software Foundation, Inc.
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
3
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
4 ;; Author: Lars Magne Ingebrigtsen <larsi@ifi.uio.no>
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
5 ;; Keywords: mail, news
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
6
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
7 ;; This file is part of GNU Emacs.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
8
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
9 ;; GNU Emacs is free software; you can redistribute it and/or modify
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
10 ;; it under the terms of the GNU General Public License as published by
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
11 ;; the Free Software Foundation; either version 2, or (at your option)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
12 ;; any later version.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
13
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
14 ;; GNU Emacs is distributed in the hope that it will be useful,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
15 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
16 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
17 ;; GNU General Public License for more details.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
18
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
19 ;; You should have received a copy of the GNU General Public License
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
20 ;; along with GNU Emacs; see the file COPYING. If not, write to the
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
21 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
22 ;; Boston, MA 02111-1307, USA.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
23
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
24 ;;; Commentary:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
25
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
26 ;; This file tries to provide backward compatability with sendmail.el
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
27 ;; for Message mode. It should be used by simply adding
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
28 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
29 ;; (require 'messcompat)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
30 ;;
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
31 ;; to the .emacs file. Loading it after Message mode has been
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
32 ;; loaded will have no effect.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
33
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
34 ;;; Code:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
35
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
36 (require 'sendmail)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
37
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
38 (defvar message-from-style mail-from-style
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
39 "*Specifies how \"From\" headers look.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
40
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
41 If `nil', they contain just the return address like:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
42 king@grassland.com
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
43 If `parens', they look like:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
44 king@grassland.com (Elvis Parsley)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
45 If `angles', they look like:
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
46 Elvis Parsley <king@grassland.com>
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
47
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
48 Otherwise, most addresses look like `angles', but they look like
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
49 `parens' if `angles' would need quoting and `parens' would not.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
50
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
51 (defvar message-interactive mail-interactive
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
52 "Non-nil means when sending a message wait for and display errors.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
53 nil means let mailer mail back a message to report errors.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
54
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
55 (defvar message-setup-hook mail-setup-hook
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
56 "Normal hook, run each time a new outgoing message is initialized.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
57 The function `message-setup' runs this hook.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
58
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
59 (defvar message-mode-hook mail-mode-hook
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
60 "Hook run in message mode buffers.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
61
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
62 (defvar message-indentation-spaces mail-indentation-spaces
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
63 "*Number of spaces to insert at the beginning of each cited line.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
64 Used by `message-yank-original' via `message-yank-cite'.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
65
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
66 (defvar message-signature mail-signature
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
67 "*String to be inserted at the end of the message buffer.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
68 If t, the `message-signature-file' file will be inserted instead.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
69 If a function, the result from the function will be used instead.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
70 If a form, the result from the form will be used instead.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
71
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 2
diff changeset
72 ;;;###autoload
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
73 (defvar message-signature-file mail-signature-file
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
74 "*File containing the text inserted at end of message. buffer.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
75
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
76 (defvar message-default-headers mail-default-headers
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
77 "*A string containing header lines to be inserted in outgoing messages.
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
78 It is inserted before you edit the message, so you can edit or delete
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
79 these lines.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
80
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
81 (defvar message-send-hook mail-send-hook
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
82 "Hook run before sending messages.")
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
83
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
84 (provide 'messcompat)
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
85
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents:
diff changeset
86 ;;; messcompat.el ends here