https://bugzilla.novell.com/show_bug.cgi?id=624425 https://bugzilla.novell.com/show_bug.cgi?id=624425#c27 --- Comment #27 from Ciaran Farrell <cfarrell@suse.com> 2012-02-10 10:24:15 UTC --- This hideous hack seems to work for me (with all the obvious drawbacks of being stuck in a python process): cp /usr/bin/empathy /usr/bin/empathy-bin Then replace the /usr/bin/empathy binary with this: #!/usr/bin/python import os,getpass,shutil,sys,subprocess src = "%s/.purple/certificates/x509/tls_peers/im.novell.com"%(os.path.expanduser("~")) directories=[d for d in os.listdir("/tmp") if os.path.isdir("/tmp/"+d)] for d in directories: if d.lower().startswith("haze"): dest = "/tmp/%s/certificates/x509/tls_peers/im.novell.com"%d try: shutil.copy2(src,dest) except Exception,e: sys.stderr.write("%s\n"%str(e)) sys.exit(1) subprocess.call(['/usr/bin/empathy-bin']) -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.