From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Abrahamsen Subject: Re: "Which function for creating the link? Date: Thu, 02 Mar 2017 09:46:13 -0800 Message-ID: <87tw7b8tcq.fsf@ericabrahamsen.net> References: <97aef9c09931431a8f71427e73567741@HE1PR01MB1898.eurprd01.prod.exchangelabs.com> <87tw7bkh1f.fsf@ucl.ac.uk> <8737evx1uw.fsf@mat.ucm.es> <87y3wnsm5i.fsf@alphaville.usersys.redhat.com> <87tw7bwsu0.fsf@mat.ucm.es> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:39155) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cjVXq-0001bE-O7 for emacs-orgmode@gnu.org; Thu, 02 Mar 2017 13:33:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cjVXm-0000s6-2L for emacs-orgmode@gnu.org; Thu, 02 Mar 2017 13:33:42 -0500 Received: from [195.159.176.226] (port=52398 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cjVXl-0000rc-SB for emacs-orgmode@gnu.org; Thu, 02 Mar 2017 13:33:37 -0500 Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1cjUo7-0001Qv-74 for emacs-orgmode@gnu.org; Thu, 02 Mar 2017 18:46:27 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-orgmode@gnu.org Uwe Brauer writes: > > Uwe Brauer writes: > > > You are probably either loading explicitly org-mairix (from contrib) > > or requiring 'org-mairix (explicitly or implicitly). > > I think I found the culprit, I started emacs -q and the > variable org-store-link-functions did not contain > org-mairix-store-gnus-link. > > However when I loaded gnorb, org-store-link-functions > *did* contain org-mairix-store-gnus-link. > > @Eric what do you say? > > I briefly scanned the code but cannot find why > org-mairix-store-gnus-link is put into the list Probably you've set `gnorb-gnus-mail-search-backend' to 'mairix. Then, when you call `gnorb-bbdb-mail-search', that would result in a call to `mairix-search', which I'm sure is autoloaded and will bring in the whole package. There's not much to be done about that: you can set `gnorb-gnus-mail-search-backend' to nil (or a different backend) and that will solve the problem, but if you ever try to use mairix, the same thing will happen again. Eric