From owner-freebsd-gnome Sun Feb 16 11:25:59 2003 Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 115E637B401 for ; Sun, 16 Feb 2003 11:25:58 -0800 (PST) Received: from rip.psg.com (rip.psg.com [147.28.0.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAA4143F3F for ; Sun, 16 Feb 2003 11:25:57 -0800 (PST) (envelope-from randy@psg.com) Received: from localhost ([127.0.0.1] helo=rip.psg.com) by rip.psg.com with esmtp (Exim 4.12) id 18kUQH-0006Vg-00; Sun, 16 Feb 2003 11:25:57 -0800 From: Randy Bush MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Sun, 16 Feb 2003 11:25:56 -0800 To: Joe Marcus Clarke Cc: freebsd gnome Subject: Re: galeon with VM References: <1045423405.38530.9.camel@shumai.marcuscom.com> Message-Id: Sender: owner-freebsd-gnome@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG >> anyone using galeon with the mail user agent VM, and have the tricks >> for sending a url from VM to galeon by opening a new tab in the >> existing window? > Galeon uses the GNOME mailer as configured in the GNOME Control Center. > If you're not using the GNOME desktop, it might be easier to install > gnomecontrolcenter just to make configuring this easier. If you don't > want to do that, you can use gconftool to play with the > /apps/galeon/Handlers/Programs/mailer key. Setting this key to your MUA > should have the desired affect. that sounds like how to invoke the right MUA from galeon. i am trying to do the reverse, send a URL from my MUA to galeon. and i keep getting "The URL is not valid and can not be loaded" either with the elisp hack i found on net (see appended) or straight out. randy ;; galeon (defun vm-mouse-send-url-to-galeon-new-tab (url) (let ((vm-netscape-program "galeon") (vm-netscape-program-switches (cons "-n" vm-netscape-program-switches))) (vm-mouse-send-url-to-netscape url))) (setq vm-url-browser 'vm-mouse-send-url-to-galeon-new-tab) (defun qx-add-galeon-menu-item () (setq vm-menu-url-browser-menu (let ((title (car x)) (rest (cdr x))) (cons title (cons ["Galeon" (vm-mouse-send-url-at-position (point) (function vm-mouse-send-url-to-galeon-new-tab)) t] rest))))) (add-hook 'vm-menu-setup-hook 'qx-add-galeon-menu-item) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-gnome" in the body of the message