[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Is this possible??
From: |
Mark T.B. Carroll |
Subject: |
Re: Is this possible?? |
Date: |
Wed, 16 Nov 2005 07:17:18 -0500 |
User-agent: |
Gnus/5.1007 (Gnus v5.10.7) Emacs/21.4 (gnu/linux) |
Paminu <jadajada@asd.com> writes:
(snip)
> 3) Group groups. Instead of a long list of all my groups I would like to be
> able to make some kind of grouping: All groups on Linux in the "Linux"
> group. All groups on Java programming in another group etc.
Have a look at "Group Topics" toward the end of section 2 of the Gnus
Manual.
> 4) Add a another server. I would like to add another server. Its a bit
> special since I can only get access to this server if I SSH into local
> system (its a local server). I know how to make the SSH connection but I
> don't know how to make gnus aware of this when reading from the group.
I have ssh set up with ssh-agent so I don't need to type a password each
time I connect, then I use a select method like,
(nntp "whatever"
(nntp-address "nntp server address")
(nntp-via-user-name "ssh username")
(nntp-via-address "ssh server address")
(nntp-via-rlogin-command "ssh")
(nntp-end-of-line "\n")
(nntp-via-rlogin-command-switches ("-C" "-t" "-e" "none"))
(nntp-open-connection-function nntp-open-via-rlogin-and-telnet))
My version of the Gnus Manual has a section "6.2.1.2 Indirect
Functions" which shoudl help you.
-- Mark