From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Michael Heerdegen Newsgroups: gmane.emacs.help Subject: Kill buffer questions when starting Gnus Date: Fri, 10 Sep 2010 19:26:10 +0200 Message-ID: <86eid1y0gd.fsf@web.de> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: dough.gmane.org 1284139512 8255 80.91.229.12 (10 Sep 2010 17:25:12 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 10 Sep 2010 17:25:12 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Sep 10 19:25:07 2010 Return-path: Envelope-to: geh-help-gnu-emacs@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 1Ou7LW-00054I-NW for geh-help-gnu-emacs@m.gmane.org; Fri, 10 Sep 2010 19:25:07 +0200 Original-Received: from localhost ([127.0.0.1]:38459 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ou7LW-0007ew-0t for geh-help-gnu-emacs@m.gmane.org; Fri, 10 Sep 2010 13:25:06 -0400 Original-Received: from [140.186.70.92] (port=52505 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Ou7L5-0007bj-VP for help-gnu-emacs@gnu.org; Fri, 10 Sep 2010 13:24:41 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1Ou7L4-0004sM-8z for help-gnu-emacs@gnu.org; Fri, 10 Sep 2010 13:24:39 -0400 Original-Received: from fmmailgate03.web.de ([217.72.192.234]:49202) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Ou7L3-0004rg-SK for help-gnu-emacs@gnu.org; Fri, 10 Sep 2010 13:24:38 -0400 Original-Received: from smtp07.web.de ( [172.20.5.215]) by fmmailgate03.web.de (Postfix) with ESMTP id 9C86B15F534C7 for ; Fri, 10 Sep 2010 19:24:35 +0200 (CEST) Original-Received: from [94.216.98.251] (helo=dragon) by smtp07.web.de with asmtp (WEB.DE 4.110 #24) id 1Ou7L1-0008OF-00 for help-gnu-emacs@gnu.org; Fri, 10 Sep 2010 19:24:35 +0200 User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.2 (gnu/linux) X-Sender: michael_heerdegen@web.de X-Provags-ID: V01U2FsdGVkX19Up2cs93QHnKrojlJ/4ja8kIZPjJfFQEbOVylj Wn5rDEh73Bkm0QLWJ8tXrwRyNQ7FjguA3I9fFrkhbDrPNSY+So iiD7xzelsa1gr1x488Sw== X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4-2.6 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:74928 Archived-At: Hello, since I have upgraded to Gnu Emacs 23.2, every time I start Gnus, it asks me three times: Buffer has a running process; kill it? (yes or no) corresponding to my three mailboxes. This happens with emacs -Q with only my .gnus.el loaded. No matter what I answer to the questions, Gnus works well. I know that I can suppress these questions with (setq kill-buffer-query-functions (remove 'process-kill-buffer-query-function kill-buffer-query-functions)) My question is if Gnus is misconfigured or if this is some kind of bug. Here are some more informations: My .gnus.el settings (some parts replaced by ...): (require 'epa-file) (epa-file-enable) (setq epa-file-cache-passphrase-for-symmetric-encryption t) (setq gnus-agent nil) (setq gnus-posting-styles '((".*" (name "Michael Heerdegen")) ((message-news-p) (address "noreply@nospam.dev.null")))) (add-hook 'gnus-message-setup-hook 'flyspell-mode) (setq gnus-secondary-select-methods '((nnimap ...) ...)) (setq gnus-message-archive-group "sent" gnus-article-save-directory (expand-file-name "~/Mail/archive/read/") gnus-select-method '(nntp "textnews.news.cambrium.nl")) (push '(nntp "news.thur.de") gnus-secondary-select-methods) Part of a backtrace (my email address replaced with points): yes-or-no-p("Buffer has a running process; kill it? ") process-kill-buffer-query-function() kill-buffer(#) imap-open("imap.web.de" nil nil nil " *nnimap* ...") nnimap-open-connection("...") nnimap-open-server("..." ((nnimap-address "imap.web.de"))) At that time, the (hidden) buffer " *temp*" is empty, and M-x process-list shows: imap<1> run *temp* gnutls-cli -s imap.web.de -p 143 imap open *nnimap* .................... (network stream connection to imap.web.de) nntpd<1> open *server news.thur.de nntp *nntpd** (network stream connection to news.thur.de) nntpd open *server textnews.news.cambrium.nl nntp *nntpd** (network stream connection to textnews.news.cambrium.nl) Thanks, Michael.