comparison doc/misc/gnus-faq.texi @ 109264:f1266b2f017e

Untabify doc/misc/*.texi. * autotype.texi, cl.texi, dired-x.texi, ebrowse.texi, ede.texi: * eieio.texi, faq.texi, flymake.texi, forms.texi, gnus-faq.texi: * idlwave.texi, mh-e.texi, org.texi, pcl-cvs.texi, pgg.texi: * reftex.texi, sasl.texi, sc.texi, sem-user.texi, semantic.texi: * sieve.texi, smtpmail.texi, speedbar.texi, vip.texi, viper.texi: * widget.texi: Untabify (except for examples).
author Glenn Morris <rgm@gnu.org>
date Tue, 22 Jun 2010 19:57:26 -0700
parents 1d1d5d9bd884
children 8d09094063d0 376148b31b5e
comparison
equal deleted inserted replaced
109263:68ee92c6bfee 109264:f1266b2f017e
1 @c \input texinfo @c -*-texinfo-*- 1 @c \input texinfo @c -*-texinfo-*-
2 @c Uncomment 1st line before texing this file alone. 2 @c Uncomment 1st line before texing this file alone.
3 @c %**start of header 3 @c %**start of header
4 @c Copyright (C) 1995, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 4 @c Copyright (C) 1995, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
5 @c 2008, 2009, 2010 Free Software Foundation, Inc. 5 @c 2009, 2010 Free Software Foundation, Inc.
6 @c 6 @c
7 @c Do not modify this file, it was generated from gnus-faq.xml, available from 7 @c Do not modify this file, it was generated from gnus-faq.xml, available from
8 @c <URL:http://my.gnus.org/FAQ/>. 8 @c <URL:http://my.gnus.org/FAQ/>.
9 @c 9 @c
10 @setfilename gnus-faq.info 10 @setfilename gnus-faq.info
548 want something different, change the line above to something like this: 548 want something different, change the line above to something like this:
549 549
550 @example 550 @example
551 (add-to-list 'gnus-secondary-select-methods 551 (add-to-list 'gnus-secondary-select-methods
552 '(nnspool "" 552 '(nnspool ""
553 (nnspool-directory "/usr/local/myspoolddir"))) 553 (nnspool-directory "/usr/local/myspoolddir")))
554 @end example 554 @end example
555 @noindent 555 @noindent
556 556
557 This sets the spool directory for this server only. 557 This sets the spool directory for this server only.
558 You might have to specify more stuff like the program used 558 You might have to specify more stuff like the program used
633 mail, it's 633 mail, it's
634 634
635 @example 635 @example
636 (eval-after-load "mail-source" 636 (eval-after-load "mail-source"
637 '(add-to-list 'mail-sources 637 '(add-to-list 'mail-sources
638 '(directory :path "/path/to/procmail-dir/" 638 '(directory :path "/path/to/procmail-dir/"
639 :suffix ".prcml"))) 639 :suffix ".prcml")))
640 @end example 640 @end example
641 @noindent 641 @noindent
642 642
643 Where :suffix ".prcml" tells Gnus only to use files with the 643 Where :suffix ".prcml" tells Gnus only to use files with the
644 suffix .prcml. 644 suffix .prcml.
689 back end to your select method and give the information 689 back end to your select method and give the information
690 about the server there. 690 about the server there.
691 691
692 @example 692 @example
693 (add-to-list 'gnus-secondary-select-methods 693 (add-to-list 'gnus-secondary-select-methods
694 '(nnimap "Give the baby a name" 694 '(nnimap "Give the baby a name"
695 (nnimap-address "imap.yourProvider.net") 695 (nnimap-address "imap.yourProvider.net")
696 (nnimap-port 143) 696 (nnimap-port 143)
697 (nnimap-list-pattern "archive.*"))) 697 (nnimap-list-pattern "archive.*")))
698 @end example 698 @end example
699 @noindent 699 @noindent
700 700
701 Again, you might have to specify how to authenticate to the 701 Again, you might have to specify how to authenticate to the
702 server if Gnus can't guess the correct way, see the Manual 702 server if Gnus can't guess the correct way, see the Manual
872 say this in ~/.gnus.el: 872 say this in ~/.gnus.el:
873 873
874 @example 874 @example
875 (setq gnus-visible-headers 875 (setq gnus-visible-headers
876 '("^From" "^Subject" "^Date" "^Newsgroups" "^Followup-To" 876 '("^From" "^Subject" "^Date" "^Newsgroups" "^Followup-To"
877 "^User-Agent" "^X-Newsreader" "^X-Mailer")) 877 "^User-Agent" "^X-Newsreader" "^X-Mailer"))
878 @end example 878 @end example
879 @noindent 879 @noindent
880 880
881 @node FAQ 4-6 881 @node FAQ 4-6
882 @subsubheading Question 4.6 882 @subsubheading Question 4.6
1097 1097
1098 @example 1098 @example
1099 (gnus-add-configuration 1099 (gnus-add-configuration
1100 '(article 1100 '(article
1101 (horizontal 1.0 1101 (horizontal 1.0
1102 (vertical 25 1102 (vertical 25
1103 (group 1.0)) 1103 (group 1.0))
1104 (vertical 1.0 1104 (vertical 1.0
1105 (summary 0.25 point) 1105 (summary 0.25 point)
1106 (article 1.0))))) 1106 (article 1.0)))))
1107 (gnus-add-configuration 1107 (gnus-add-configuration
1108 '(summary 1108 '(summary
1109 (horizontal 1.0 1109 (horizontal 1.0
1110 (vertical 25 1110 (vertical 25
1111 (group 1.0)) 1111 (group 1.0))
1112 (vertical 1.0 1112 (vertical 1.0
1113 (summary 1.0 point))))) 1113 (summary 1.0 point)))))
1114 @end example 1114 @end example
1115 @noindent 1115 @noindent
1116 1116
1117 @node FAQ 4-14 1117 @node FAQ 4-14
1118 @subsubheading Question 4.14 1118 @subsubheading Question 4.14
1478 There's an very basic solution for this, mail aliases. 1478 There's an very basic solution for this, mail aliases.
1479 You can store your mail addresses in a ~/.mailrc file using a simple 1479 You can store your mail addresses in a ~/.mailrc file using a simple
1480 alias syntax: 1480 alias syntax:
1481 1481
1482 @example 1482 @example
1483 alias al "Al <al@@english-heritage.invalid>" 1483 alias al "Al <al@@english-heritage.invalid>"
1484 @end example 1484 @end example
1485 @noindent 1485 @noindent
1486 1486
1487 Then typing your alias (followed by a space or punctuation 1487 Then typing your alias (followed by a space or punctuation
1488 character) on a To: or Cc: line in the message buffer will 1488 character) on a To: or Cc: line in the message buffer will
1642 below use a function which is evaluated and which returns 1642 below use a function which is evaluated and which returns
1643 the group to use. 1643 the group to use.
1644 1644
1645 @example 1645 @example
1646 (setq gnus-message-archive-group 1646 (setq gnus-message-archive-group
1647 '((if (message-news-p) 1647 '((if (message-news-p)
1648 "nnml:Send-News" 1648 "nnml:Send-News"
1649 "nnml:Send-Mail"))) 1649 "nnml:Send-Mail")))
1650 @end example 1650 @end example
1651 @noindent 1651 @noindent
1652 1652
1653 @node FAQ 5-12 1653 @node FAQ 5-12
1654 @subsubheading Question 5.12 1654 @subsubheading Question 5.12