diff options
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/spam.el | 14 | ||||
| -rw-r--r-- | man/ChangeLog | 5 | ||||
| -rw-r--r-- | man/message.texi | 19 |
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 @@ | |||
| 1 | 2005-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 | |||
| 1 | 2004-12-27 Simon Josefsson <jas@extundo.com> | 6 | 2004-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 @@ | |||
| 1 | 2005-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 | |||
| 1 | 2005-01-06 Hiroshi Fujishima <pooh@nature.tsukuba.ac.jp> (tiny change) | 6 | 2005-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 | |||
| 146 | This function will be called narrowed to the head of the article that is | 146 | This function will be called narrowed to the head of the article that is |
| 147 | being replied to. | 147 | being replied to. |
| 148 | 148 | ||
| 149 | As you can see, this function should return a string if it has an | 149 | As you can see, this function should return a list. In this case, it |
| 150 | opinion as to what the To header should be. If it does not, it should | 150 | returns @code{((To . "Whom"))} if it has an opinion as to what the To |
| 151 | just return @code{nil}, and the normal methods for determining the To | 151 | header should be. If it does not, it should just return @code{nil}, and |
| 152 | header will be used. | 152 | the normal methods for determining the To header will be used. |
| 153 | 153 | ||
| 154 | This function can also return a list. In that case, each list element | 154 | Each list element should be a cons, where the @sc{car} should be the |
| 155 | should be a cons, where the @sc{car} should be the name of a header | 155 | name 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 | 156 | value (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 | 157 | inserted into the head of the outgoing mail. |
| 158 | the head of the outgoing mail. | ||
| 159 | 158 | ||
| 160 | 159 | ||
| 161 | @node Wide Reply | 160 | @node Wide Reply |