aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorLars Ingebrigtsen2012-02-07 22:17:11 +0000
committerKatsumi Yamaoka2012-02-07 22:17:11 +0000
commit7c4bbb6992b443b0ce569d111fc167ad753e912c (patch)
tree4041ace40581d71bea3c2c63ac6f2927403a7462 /doc
parent5e0d957fe021bc921bfa4f7568f5501c43ca7fc5 (diff)
downloademacs-7c4bbb6992b443b0ce569d111fc167ad753e912c.tar.gz
emacs-7c4bbb6992b443b0ce569d111fc167ad753e912c.zip
Merge changes made in No Gnus
gnus.texi (Mail Source Specifiers): Add a pop3 via an SSH tunnel example (modified from an example by Michael Albinus). shr.el (shr-remove-trailing-whitespace): Don't strip whitespace from lines that are narrower than the window width. Otherwise background "blocks" will look less readable.
Diffstat (limited to 'doc')
-rw-r--r--doc/misc/ChangeLog5
-rw-r--r--doc/misc/gnus.texi12
2 files changed, 17 insertions, 0 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog
index 6bb1e065d37..3458a8865fb 100644
--- a/doc/misc/ChangeLog
+++ b/doc/misc/ChangeLog
@@ -1,3 +1,8 @@
12012-02-07 Lars Ingebrigtsen <larsi@gnus.org>
2
3 * gnus.texi (Mail Source Specifiers): Add a pop3 via an SSH tunnel
4 example (modified from an example by Michael Albinus).
5
12012-01-30 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change) 62012-01-30 Philipp Haselwarter <philipp.haselwarter@gmx.de> (tiny change)
2 7
3 * gnus.texi (Agent Basics): Fix outdated description of 8 * gnus.texi (Agent Basics): Fix outdated description of
diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi
index 1883975b7f6..865888a28e4 100644
--- a/doc/misc/gnus.texi
+++ b/doc/misc/gnus.texi
@@ -14751,6 +14751,18 @@ corresponding keywords.
14751A script to be run before fetching the mail. The syntax is the same as 14751A script to be run before fetching the mail. The syntax is the same as
14752the @code{:program} keyword. This can also be a function to be run. 14752the @code{:program} keyword. This can also be a function to be run.
14753 14753
14754One popular way to use this is to set up an SSH tunnel to access the
14755@acronym{POP} server. Here's an example:
14756
14757@lisp
14758(pop :server "127.0.0.1"
14759 :port 1234
14760 :user "foo"
14761 :password "secret"
14762 :prescript
14763 "nohup ssh -f -L 1234:pop.server:110 remote.host sleep 3600 &")
14764@end lisp
14765
14754@item :postscript 14766@item :postscript
14755A script to be run after fetching the mail. The syntax is the same as 14767A script to be run after fetching the mail. The syntax is the same as
14756the @code{:program} keyword. This can also be a function to be run. 14768the @code{:program} keyword. This can also be a function to be run.