aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/gnus/ChangeLog5
-rw-r--r--lisp/gnus/spam.el14
-rw-r--r--man/ChangeLog5
-rw-r--r--man/message.texi19
4 files changed, 32 insertions, 11 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 46a1449ce79..4eee8bcbbfc 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,8 @@
12005-01-05 Reiner Steib <Reiner.Steib@gmx.de>
2
3 * spam.el (spam-face): New face. Don't use `gnus-splash-face'
4 which is unreadable in some setups.
5
12004-12-27 Simon Josefsson <jas@extundo.com> 62004-12-27 Simon Josefsson <jas@extundo.com>
2 7
3 * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used 8 * mm-bodies.el (mm-body-encoding): Don't permit 7-bit to be used
diff --git a/lisp/gnus/spam.el b/lisp/gnus/spam.el
index a0b28340717..9a55ba9f318 100644
--- a/lisp/gnus/spam.el
+++ b/lisp/gnus/spam.el
@@ -298,7 +298,19 @@ All unmarked article in such group receive the spam mark on group entry."
298 :type '(radio (const nil) regexp) 298 :type '(radio (const nil) regexp)
299 :group 'spam) 299 :group 'spam)
300 300
301(defcustom spam-face 'gnus-splash-face 301(defface spam-face
302 '((((class color) (type tty) (background dark))
303 (:foreground "gray80" :background "gray50"))
304 (((class color) (type tty) (background light))
305 (:foreground "gray50" :background "gray80"))
306 (((class color) (background dark))
307 (:foreground "ivory2"))
308 (((class color) (background light))
309 (:foreground "ivory4"))
310 (t :inverse-video t))
311 "Face for spam-marked articles.")
312
313(defcustom spam-face 'spam-face
302 "Face for spam-marked articles." 314 "Face for spam-marked articles."
303 :type 'face 315 :type 'face
304 :group 'spam) 316 :group 'spam)
diff --git a/man/ChangeLog b/man/ChangeLog
index 264db9c29dd..83eeaaf3129 100644
--- a/man/ChangeLog
+++ b/man/ChangeLog
@@ -1,3 +1,8 @@
12005-01-06 Katsumi Yamaoka <yamaoka@jpl.org>
2
3 * message.texi (Reply): `message-reply-to-function' should return
4 a list. Suggested by ARISAWA Akihiro <ari@mbf.ocn.co.jp>.
5
12005-01-06 Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp> (tiny change) 62005-01-06 Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp> (tiny change)
2 7
3 * faq.texi (Changing load-path): Fix typo. 8 * faq.texi (Changing load-path): Fix typo.
diff --git a/man/message.texi b/man/message.texi
index 4d4f7af2a07..5e488b0e7cf 100644
--- a/man/message.texi
+++ b/man/message.texi
@@ -146,16 +146,15 @@ If you want the replies to go to the @code{Sender} instead of the
146This function will be called narrowed to the head of the article that is 146This function will be called narrowed to the head of the article that is
147being replied to. 147being replied to.
148 148
149As you can see, this function should return a string if it has an 149As you can see, this function should return a list. In this case, it
150opinion as to what the To header should be. If it does not, it should 150returns @code{((To . "Whom"))} if it has an opinion as to what the To
151just return @code{nil}, and the normal methods for determining the To 151header should be. If it does not, it should just return @code{nil}, and
152header will be used. 152the normal methods for determining the To header will be used.
153 153
154This function can also return a list. In that case, each list element 154Each list element should be a cons, where the @sc{car} should be the
155should be a cons, where the @sc{car} should be the name of a header 155name of a header (e.g. @code{Cc}) and the @sc{cdr} should be the header
156(e.g. @code{Cc}) and the @sc{cdr} should be the header value 156value (e.g. @samp{larsi@@ifi.uio.no}). All these headers will be
157(e.g. @samp{larsi@@ifi.uio.no}). All these headers will be inserted into 157inserted into the head of the outgoing mail.
158the head of the outgoing mail.
159 158
160 159
161@node Wide Reply 160@node Wide Reply