3 # * Copyright 2003-2007 Paul Mangan <paul@claws-mail.org>
5 # * This file is free software; you can redistribute it and/or modify it
6 # * under the terms of the GNU General Public License as published by
7 # * the Free Software Foundation; either version 3 of the License, or
8 # * (at your option) any later version.
10 # * This program is distributed in the hope that it will be useful, but
11 # * WITHOUT ANY WARRANTY; without even the implied warranty of
12 # * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # * General Public License for more details.
15 # * You should have received a copy of the GNU General Public License
16 # * along with this program; if not, write to the Free Software
17 # * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 # Feb 2007: add support for non ISO-8859-1 compatible locales
22 # by Alex Gorbachenko <agent_007@immo.ru>
27 use POSIX
qw(locale_h);
33 GetOptions
("where=s" => \
$where,
36 $locale = setlocale
(LC_CTYPE
);
39 $converter = Text
::Iconv
->new("$locale", "UTF-8");
40 $safe=uri_escape
($converter->convert("$what"));
43 chdir($ENV{HOME
} . "/.claws-mail")
44 || die("Can't find your ~/.claws-mail directory\n");
46 open (CONF
, "<multiwebsearch.conf")
47 || die("Can't open ~/.claws-mail/multiwebsearch.conf\n");
51 foreach $confline (@conflines) {
52 if ($confline =~ m/^$where\|/) {
54 @parts = split(/\|/, $confline);
63 die("No url found with the alias \"$where\"\n");
66 open (SYLRC
, "<clawsrc")
67 || die("Can't open ~/.claws-mail/clawsrc\n");
71 foreach $rcline (@rclines) {
72 if ($rcline =~ m/^uri_open_command/) {
74 @browser = split(/=/, $rcline);
75 $browser[1] =~ s/%s/$url$what/;
78 system("$browser[1]&");