From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/61850 Path: news.gmane.org!not-for-mail From: Harry Putnam Newsgroups: gmane.emacs.gnus.general Subject: use konquer for html links in mail Date: Sun, 05 Feb 2006 10:38:18 -0600 Organization: Still searching... Message-ID: <87d5i1bw1x.fsf@newsguy.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1139157848 5383 80.91.229.2 (5 Feb 2006 16:44:08 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 5 Feb 2006 16:44:08 +0000 (UTC) Original-X-From: ding-owner+m10380@lists.math.uh.edu Sun Feb 05 17:44:07 2006 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by ciao.gmane.org with esmtp (Exim 4.43) id 1F5mze-0008Fm-RA for ding-account@gmane.org; Sun, 05 Feb 2006 17:44:07 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu ident=lists) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1F5mzW-0000e9-00; Sun, 05 Feb 2006 10:43:58 -0600 Original-Received: from nas02.math.uh.edu ([129.7.128.40]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1F5muO-0000e4-00 for ding@lists.math.uh.edu; Sun, 05 Feb 2006 10:38:40 -0600 Original-Received: from quimby.gnus.org ([80.91.224.244]) by nas02.math.uh.edu with esmtp (Exim 4.52) id 1F5muL-0002TA-DN for ding@lists.math.uh.edu; Sun, 05 Feb 2006 10:38:40 -0600 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1F5muJ-0008Db-00 for ; Sun, 05 Feb 2006 17:38:35 +0100 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1F5muB-0007EX-EA for ding@gnus.org; Sun, 05 Feb 2006 17:38:27 +0100 Original-Received: from adsl-68-74-181-229.dsl.emhril.ameritech.net ([68.74.181.229]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 05 Feb 2006 17:38:27 +0100 Original-Received: from reader by adsl-68-74-181-229.dsl.emhril.ameritech.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 05 Feb 2006 17:38:27 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-To: ding@gnus.org Original-Lines: 17 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: adsl-68-74-181-229.dsl.emhril.ameritech.net User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/22.0.50 (gnu/linux) Cancel-Lock: sha1:LXikghpSo0GB/MBYX+me8zIiVjk= X-Spam-Score: -2.6 (--) Precedence: bulk Original-Sender: ding-owner@lists.math.uh.edu Xref: news.gmane.org gmane.emacs.gnus.general:61850 Archived-At: How can I manage to make konqueror the target when clicking URLS in gnus mail? I have this in .gnus currently but not sure it is all necessary. Or what to do to it to have konqueror. (setq browse-url-browser-function 'browse-url-mozilla-new-tab) (defun browse-url-mozilla-new-tab (url &optional new-window) ;; new-window ignored "Open URL in a new tab in Firefox." (interactive (browse-url-interactive-arg "URL: ")) (unless (string= "" (shell-command-to-string (concat "/usr/bin/firefox -remote 'openURL(" url ",new-tab)'"))) (message "Starting /usr/bin/firefox...") (start-process (concat "/usr/bin/firefox " url) nil "/usr/bin/firefox" url) (message "Starting firefox...done") ))