From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/30571 Path: main.gmane.org!not-for-mail From: Chris Brierley Newsgroups: gmane.emacs.gnus.general Subject: Re: accessing nnimap folders through SSH? Date: 01 May 2000 17:00:13 -0400 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035167089 9202 80.91.224.250 (21 Oct 2002 02:24:49 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 02:24:49 +0000 (UTC) Return-Path: Original-Received: from lisa.math.uh.edu (lisa.math.uh.edu [129.7.128.49]) by mailhost.sclp.com (Postfix) with ESMTP id AB4EFD051E for ; Mon, 1 May 2000 17:02:17 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by lisa.math.uh.edu (8.9.1/8.9.1) with ESMTP id QAB07311; Mon, 1 May 2000 16:02:15 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Mon, 01 May 2000 16:01:40 -0500 (CDT) Original-Received: from mailhost.sclp.com (postfix@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id QAA09003 for ; Mon, 1 May 2000 16:01:31 -0500 (CDT) Original-Received: from optical.mindstorm.com (optical.mindstorm.com [209.113.156.7]) by mailhost.sclp.com (Postfix) with ESMTP id E8406D051E for ; Mon, 1 May 2000 17:00:27 -0400 (EDT) Original-Received: from OUTLAND.pobox.com (localhost [127.0.0.1]) by optical.mindstorm.com (MindstorM/MindstorM) with ESMTP id RAA05817 for ; Mon, 1 May 2000 17:00:19 -0400 Original-To: ding@gnus.org In-Reply-To: Steinar Bang's message of "01 May 2000 22:41:28 +0200" Original-Lines: 32 User-Agent: Gnus/5.0805 (Gnus v5.8.5) Emacs/20.6 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:30571 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:30571 On 2000-05-01, Steinar Bang wrote: > Is there a way of accessing nnimap folders through an SSH tunnel > through a firewall? It depends on your firewall, I guess, if it allows SSH through you should be able to. I access IMAP servers through SSH all the time. Here's my gnus-secondary-select-methods: ,----- | (setq gnus-secondary-select-methods | '( | (nnml "spool") | (nnimap "personal" | (nnimap-address "localhost") | (nnimap-server-port 10143) | (nnimap-list-pattern ("INBOX" "mail/*")) | ) | (nnimap "work" | (nnimap-address "localhost") | (nnimap-server-port 8143) | (nnimap-list-pattern ("INBOX" "mail/*")) | ) | )) `----- And then I set up port forwards with SSH through those ports, ala: ssh -L10143:localhost:143 personal-server ssh -L8143:localhost:143 work-server Hope that helps.