[gnus git] branch no-gnus updated: m0-1-38-gd62c053 =1= Add a pop3 via SSH tunnel example to the Gnus manual
Lars Ingebrigtsen <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via d62c053a608997ca345400f633bd3e4f1c927f3f (commit)
from 19c0ca5c8830e654fb9c54cff122fb684e2358f4 (commit)
- Log -----------------------------------------------------------------
commit d62c053a608997ca345400f633bd3e4f1c927f3f
Author: Lars Ingebrigtsen <[email protected]>
Date: Tue Feb 7 21:40:04 2012 +0100
Add a pop3 via SSH tunnel example to the Gnus manual
* gnus.texi (Mail Source Specifiers): Add a pop3 via an SSH tunnel
example (modified from an example by Michael Albinus).
diff --git a/texi/ChangeLog b/texi/ChangeLog
index e656b55..9ed122d 100644
--- a/texi/ChangeLog
+++ b/texi/ChangeLog
@@ -1,3 +1,8 @@
+2012-02-07 Lars Ingebrigtsen <[email protected]>
+
+ * gnus.texi (Mail Source Specifiers): Add a pop3 via an SSH tunnel
+ example (modified from an example by Michael Albinus).
+
2012-01-30 Philipp Haselwarter <[email protected]> (tiny change)
* gnus.texi (Agent Basics): Fix outdated description of
diff --git a/texi/gnus.texi b/texi/gnus.texi
index cc62de0..1241ad7 100644
--- a/texi/gnus.texi
+++ b/texi/gnus.texi
@@ -14751,6 +14751,18 @@ corresponding keywords.
A script to be run before fetching the mail. The syntax is the same as
the @code{:program} keyword. This can also be a function to be run.
+One popular way to use this is to set up an SSH tunnel to access the
+@acronym{POP} server. Here's an example:
+
+@lisp
+(pop :server "127.0.0.1"
+ :port 1234
+ :user "foo"
+ :password "secret"
+ :prescript
+ "nohup ssh -f -L 1234:pop.server:110 remote.host sleep 3600 &")
+@end lisp
+
@item :postscript
A script to be run after fetching the mail. The syntax is the same as
the @code{:program} keyword. This can also be a function to be run.
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
texi/ChangeLog | 5 +++++
texi/gnus.texi | 12 ++++++++++++
2 files changed, 17 insertions(+), 0 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, no-gnus has been updated
hooks/post-receive
--
Gnus Project