4

I am using two Icedove (Thunderbird) profiles. I am starting the profiles with following commands:

icedove -P "default" %u
icedove -P "test" -no-remote --class test %u

When I click on a link (URL) in the "default" Icedove (Thunderbird) profile, Iceweasel (Firefox) window opens, as I would expect.

However, when I click on a link (URL) in the "test" profile, I get following error:

enter image description here

How can I fix this problem ?

I am using Debian Wheezy

Nemo
  • 1,151

2 Answers2

0

start thunderbird with the --no-remote option. From man thunderbird:

   --no-remote
          Don't connect to a running Thunderbird instance. Don't accept or send remote commands. This option can be necessary in conjunction to several of the options above, that won't have any effect when an Thunderbird instance is running unless -no-remote is used at the same time.
0

Try to kill all process id related to iceweasel and firefox and then give a fresh start

ps aux | grep iceweasel

ps aux | grep firefox

Get the Process_ID for both the process and kill it

kill  -9 <Process_ID>

Hope this helps!

BDRSuite
  • 6,378