3 # * Copyright 2003-2019 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>
26 use POSIX
qw(locale_h);
30 my $ddg = "https://duckduckgo.com/?q";
33 $locale = setlocale
(LC_CTYPE
);
36 $converter = Text
::Iconv
->new("$locale", "UTF-8");
37 $safe=uri_escape
($converter->convert("$_"));
39 my $config_dir = `claws-mail --config-dir` or die("ERROR:
40 You don't appear to have Claws Mail installed\n");
43 chdir($ENV{HOME
} . "/$config_dir") or die("ERROR:
44 Claws Mail config directory not found [~/$config_dir]
45 You need to run Claws Mail once, quit it, and then rerun this script\n");
47 open (CMRC
, "<clawsrc") || die("Can't open the clawsrc file\n");
51 foreach $rcline (@rclines) {
52 if ($rcline =~ m/^uri_open_command/) {
54 @browser = split(/=/, $rcline);
55 $browser[1] =~ s/%s/$ddg=$safe/;
58 system("$browser[1]&");