From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/17717 Path: news.gmane.org!not-for-mail From: Newsgroups: gmane.emacs.gnus.user Subject: Re: Trouble setting up Gnus + OfflineIMAP + dovecot Date: Fri, 23 Oct 2015 09:32:27 -0400 Message-ID: <87ziz9yal0.fsf@brittoffice.uwaterloo.ca> References: <87a8ra3loc.fsf@free.fr> <87r3kmrybx.fsf@JUbuntu.dharma.lan> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1445607350 24700 80.91.229.3 (23 Oct 2015 13:35:50 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Fri, 23 Oct 2015 13:35:50 +0000 (UTC) Cc: info-gnus-english@gnu.org To: Jeffrey DeLeo Original-X-From: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Fri Oct 23 15:35:37 2015 Return-path: Envelope-to: gegu-info-gnus-english@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1ZpcVA-0007RD-Vk for gegu-info-gnus-english@m.gmane.org; Fri, 23 Oct 2015 15:35:25 +0200 Original-Received: from localhost ([::1]:38518 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZpcV9-0005df-Sp for gegu-info-gnus-english@m.gmane.org; Fri, 23 Oct 2015 09:35:23 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:45268) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZpcV6-0005aC-LT for info-gnus-english@gnu.org; Fri, 23 Oct 2015 09:35:21 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZpcV2-0000hE-LC for info-gnus-english@gnu.org; Fri, 23 Oct 2015 09:35:20 -0400 Original-Received: from mailservices.uwaterloo.ca ([129.97.128.141]:47360 helo=mailchk-m04.uwaterloo.ca) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZpcV2-0000dp-Ft for info-gnus-english@gnu.org; Fri, 23 Oct 2015 09:35:16 -0400 Original-Received: from connect.uwaterloo.ca (connhub2.connect.uwaterloo.ca [129.97.149.119]) by mailchk-m04.uwaterloo.ca (8.14.4/8.14.4) with ESMTP id t9NDYSiu016920 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=OK); Fri, 23 Oct 2015 09:35:10 -0400 Original-Received: from CONNHUB3.connect.uwaterloo.ca (129.97.149.103) by connhub2.connect.uwaterloo.ca (129.97.149.119) with Microsoft SMTP Server (TLS) id 14.3.235.1; Fri, 23 Oct 2015 09:34:26 -0400 Original-Received: from brittoffice.uwaterloo.ca (129.97.23.147) by connhub3.connect.uwaterloo.ca (129.97.149.121) with Microsoft SMTP Server (TLS) id 14.3.235.1; Fri, 23 Oct 2015 09:34:25 -0400 In-Reply-To: <87r3kmrybx.fsf@JUbuntu.dharma.lan> (Jeffrey DeLeo's message of "Thu, 22 Oct 2015 21:41:22 -0700") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux) X-Miltered: at mailchk-m04 with ID 562A3764.000 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! X-Virus-Scanned: clamav-milter 0.98.7 at mailchk-m04 X-Virus-Status: Clean X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 129.97.128.141 X-BeenThere: info-gnus-english@gnu.org X-Mailman-Version: 2.1.14 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: , Errors-To: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Original-Sender: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.gnus.user:17717 Archived-At: I use dovecot and mbsync (isync) and it basically works. My gnus has the following: Perhaps you might want to use imap and the network stream? (setq gnus-secondary-select-methods '((nnimap "email" (nnimap-address "localhost") (nnimap-stream network) (nnimap-authenticator login) (nnimap-inbox "INBOX") (nnimap-unsplittable-articles (%Deleted)) (nnimap-split-methods default) (nnir-search-engine imap)) (nntp "news.gwene.org" ) (nntp "news.gmane.org" ) ) ) /Britt Jeffrey DeLeo writes: > Taking dovecot out of the mix for the moment, you could try: > > (setq gnus-secondary-select-methods > '((nnmaildir "GMail" (directory "~/Maildir-gmail")))) > > I guess your .offlineimaprc includes something like: > [Account Gmail] > # Identifier for the local repository; e.g. the maildir to be synced via IMAP. > localrepository = Gmail-local > > [Repository Gmail-local] > type = Maildir > localfolders = ~/Maildir-gmail > ...