[LUG.ro] default email client Kubuntu 6.10

Martín Carr lugro@lugro.org.ar
Mon, 26 Mar 2007 13:04:06 -0300


2007/3/26, Diego D'Angelo
> Buenas gente, queria saber si alguien lidio con esta situacion en
> Kubuntu usando thunderbird como email client o cualquiera q no sea kmail...
>
> La cuestion es el seteo del default email client, en el kcontrol tiene
> una opcion donde poner el email client q usamos, le pongo q uso
> mozilla-thunderbird pero por ejemplo en el caso que quiero hacer boton
> derecho sobre un archivo e ir a "acciones/email file" me lo quiere
> enviar con el kmail...lo mismo pasa con los links a direcciones de correo...

No sé si te servirá, pero yo tenía un script para que los links mailto
se abran con él. Se fija si hay un TB corriendo y abre el compose.
Probá decir desde kcontrol que use esto para emailear:

#!/bin/sh
#
#script author: asterix
#http://forums.mozillazine.org/viewtopic.php?p=136157#136157

export MOZILLA_FIVE_HOME=/opt/thunderbird

if [ $(ps aux | grep thunderbird | wc -l) -gt 4 ]; then
# thunderbird is running (thunderbird est lance)
        $MOZILLA_FIVE_HOME/thunderbird -remote "mailto($1?subject=$2)"
else
# thunderbird is not running (thunderbird n'est pas lance)
        $MOZILLA_FIVE_HOME/thunderbird -P default -compose
mailto:$1?subject=$2;fi