From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/13973 Path: news.gmane.org!not-for-mail From: Dirk Gouders Newsgroups: gmane.emacs.gnus.user Subject: Re: Using different client certificates with multiple IMAP servers Date: Sat, 08 May 2010 10:31:41 +0200 Organization: A noiseless patient Spider Message-ID: References: <82hbmjkklk.fsf@stephe-leake.org> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1273322915 7551 80.91.229.12 (8 May 2010 12:48:35 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Sat, 8 May 2010 12:48:35 +0000 (UTC) To: info-gnus-english@gnu.org Original-X-From: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Sat May 08 14:48:24 2010 connect(): No such file or directory Return-path: Envelope-to: gegu-info-gnus-english@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1OAjSC-00054w-9u for gegu-info-gnus-english@m.gmane.org; Sat, 08 May 2010 14:48:24 +0200 Original-Received: from localhost ([127.0.0.1]:43573 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OAjSB-0007oC-IH for gegu-info-gnus-english@m.gmane.org; Sat, 08 May 2010 08:48:23 -0400 Original-Path: usenet.stanford.edu!goblin1!goblin.stu.neva.ru!eternal-september.org!.POSTED!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-Lines: 38 Injection-Date: Sat, 8 May 2010 08:31:40 +0000 (UTC) Injection-Info: mx02.eternal-september.org; posting-host="jv9HOTrmzyV0nXpRYt7bCg"; logging-data="23922"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19qSRtnHfFuFTuHKDNRH7p7bPKdACDWAQ0=" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (gnu/linux) Cancel-Lock: sha1:yCRgcee3OWznIwRyJyJXemeiukY= sha1:M2hFesqcTwTTOCRFPxWXcWrGUOA= Original-Xref: usenet.stanford.edu gnu.emacs.gnus:84320 X-Mailman-Approved-At: Sat, 08 May 2010 08:48:21 -0400 X-BeenThere: info-gnus-english@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Announcements and discussions for GNUS, the GNU Emacs Usenet newsreader \(in English\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Errors-To: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.gnus.user:13973 Archived-At: Stephen Leake writes: > Dirk Gouders writes: > >> I want to connect to multiple IMAP servers and present appropriate >> client certificates to the different servers. >> >> For just one server, I can set the appropriate parameters in >> imap-ssl-program, but I cannot find documentation on how to do that >> for multiple servers. >> >> Is there a way to do what I want or do I need to use multiple instances >> of gnus? > > That's what mail-sources is for; what have you tried? I tried to specify the different servers via gnus-secondary-select-methods, e.g.: (setq gnus-secondary-select-methods '( (nnimap "imap1" (nnimap-address "imap1.net") (nnimap-server-port 993) (nnimap-authinfo-file "~/.imap_auth") (nnimap-stream ssl)) (nnimap "imap2" (nnimap-address "imap2.net") (nnimap-server-port 993) (nnimap-authinfo-file "~/.imap_auth") (nnimap-stream ssl)) )) But I did not know how to specify which client certificate to use for the different servers. I did not try mail-sources but will do that next, thanks for the hint. Dirk