I've edited my .gnus.el to automatically highlight my posts and the their
followups. But something gone wrong, and since my.gnus.org doesn't exists 
anymore
I can't check this code:

(require 'gnus-sum)
(defface dz-gnus-own-posting-face nil
         "Use this face to display own postings in Summary Buffer")
(copy-face 'gnus-summary-high-unread-face 'dz-gnus-own-posting-face)
(set-face-background 'dz-gnus-own-posting-face "cornflower blue")

(defface dz-gnus-direct-fup-face nil
         "Use this face to display direct fups to my postings.")
(copy-face 'gnus-summary-high-unread-face 'dz-gnus-direct-fup-face)
(set-face-background 'dz-gnus-direct-fup-face "DeepSkyBlue4")

(defface dz-gnus-indirect-fup-face nil
         "Use this face to display indirect fups to my postings")
(copy-face 'gnus-summary-high-unread-face 'dz-gnus-indirect-fup-face)
(set-face-background 'dz-gnus-indirect-fup-face "saddle brown")

(add-to-list 'gnus-summary-highlight
             '((and (> score 8500) (eq mark gnus-unread-mark)) . 
dz-gnus-own-posting-face))

(add-to-list 'gnus-summary-highlight
             '((and (>= 8500 score) (>= score 7500) (eq mark gnus-unread-mark)) 
. dz-gnus-direct-fup-face))

(add-to-list 'gnus-summary-highlight
             '((and (>= 7499 score) (>= score 6500) (eq mark gnus-unread-mark)) 
. dz-gnus-indirect-fup-face))

(add-hook 'message-sent-hook 'gnus-score-followup-thread)

Maybe I forgot something.
Thanks in advance.
-- 
Fumo:
        Il ministro della sanita', Rosy Bindi, proporra' una legge
contro la pubblicita' delle sigarette nascoste nelle sponsorizzazioni
della Formula 1 e nei marchi degli abiti sportivi.  Un affare da
500 miliardi.  Sicuramente MARLBORO le lobbies del tabacco escogiteranno
GAULOISES altri modi MS di fare pubblicita' occulta.
Vedremo LUCKY STRIKE quali.
                -- Panfilo Maria Lippi, "TABLOID TABLOID"@"Mai Dire Gol"
_______________________________________________
info-gnus-english mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/info-gnus-english

Reply via email to