message-indentation-spaces
spaces or message-yank-prefix
if that is
non-nil, unless you have set your own mail-citation-hook
, which will
be called to do the job.
You might also consider the Supercite package, which allows for pretty
arbitrarily complex quoting styles. Some people love it, some people
hate it.
(("Subject" ("^\\(Re: \\)?[^a-z]*$" -200 nil R)))
(("xref" ("alt.fan.oj-simpson" -1000 nil s)) ("subject" (concat "\\<\\(make\\|fast\\|big\\)\\s-*" "\\(money\\|cash\\|bucks?\\)\\>" -1000 nil r) ("$$$$" -1000 nil s)))
(("subject" ;; CAPS OF THE WORLD, UNITE ("^..[^a-z]+$" -1 nil R) ;; $$$ Make Money $$$ (Try work) ("$" -1 nil s) ;; I'm important! And I have exclamation marks to prove it! ("!" -1 nil s)))
( (read-only t) ("subject" ;; ALL CAPS SUBJECTS ("^\\([Rr][Ee]: +\\)?[^a-z]+$" -1 nil R) ;; $$$ Make Money $$$ ("$$" -10 nil s) ;; Empty subjects are worthless! ("^ *\\([(<]none[>)]\\|(no subject\\( given\\)?)\\)? *$" -10 nil r) ;; Sometimes interesting announces occur! ("ANN?OU?NC\\(E\\|ING\\)" +10 nil r) ;; Some people think they're on mailing lists ("\\(un\\)?sub?scribe" -100 nil r) ;; Stop Micro$oft NOW!! ;; ("concat" used to avoid overfull box.) (concat "\\(m\\(icro\\)?[s$]\\(oft\\|lot\\)?-?\\)?" "wind?\\(ows\\|aube\\|oze\\)?[- ]*" "\\('?95\\|NT\\|3[.]1\\|32\\)" -1001 nil r) ;; I've nothing to buy ("\\(for\\|4\\)[- ]*sale" -100 nil r) ;; SELF-DISCIPLINED people ("\\[[^a-z0-9 \t\n][^a-z0-9 \t\n]\\]" +100 nil r) ) ("from" ;; To keep track of posters from my site (".dgac.fr" +1000 nil s)) ("followup" ;; Keep track of answers to my posts ("boubaker" +1000 nil s)) ("lines" ;; Some people have really nothing to say!! (1 -10 nil <=)) (mark -100) (expunge -1000) )
(("subject" ;; No junk mail please! ("please ignore" -500 nil s) ("test" -500 nil e)) )
("xref" ;; the more cross posting, the exponentially worse the article ("^xref: \\S-+ \\S-+ \\S-+ \\S-+" -1 nil r) ("^xref: \\S-+ \\S-+ \\S-+ \\S-+ \\S-+" -2 nil r) ("^xref: \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+" -4 nil r) ("^xref: \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+" -8 nil r) ("^xref: \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+" -16 nil r) (concat "^xref: \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+" " \\S-+ \\S-+" -32 nil r) (concat "^xref: \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+" " \\S-+ \\S-+ \\S-+" -64 nil r) (concat "^xref: \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+" " \\S-+ \\S-+ \\S-+ \\S-+" -128 nil r) (concat "^xref: \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+" " \\S-+ \\S-+ \\S-+ \\S-+ \\S-+" -256 nil r) (concat "^xref: \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+ \\S-+" " \\S-+" \\S-+ \\S-+ \\S-+ \\S-+ \\S-+" -512 nil r))
(defconst mail-yank-ignored-headers "^.*:" "Delete these headers from message when it's inserted in reply.")
(setq gnus-button-url 'gnus-netscape-open-url)
(setq gnus-save-killed-list t)and the second with
(setq gnus-read-active-file t)If both are disabled, Gnus will not know what newsgroups exists. There is no option to get the list by casting a spell.
define-key
or something like that in one of the
summary mode hooks? This would force Emacs to recalculate the keyboard
shortcuts. Removing the call should speed up M-x gnus-summary-mode
RET by a couple of orders of magnitude. You can use
(define-key gnus-summary-mode-map KEY COMMAND)in your `.gnus' instead.
Go to the first, previous, next, last section, table of contents.