I know, that Ubuntu currently isn't supported to run Lotus Notes on, but as my favorite OS, I tried to do it.
A nice introduction can be found here:
http://www.linuxart.de/index.php/archives/4
But there is still one problem: The Mozilla problem!
If you try to open a HTML email or open anything else, which uses the embedded SWT browser, you'll get the message: MOZILLA_FIVE_HOME is set set to /usr/lib/xulrunner-addons, which isn't a Firefox directory. The correct directory would be /usr/lib/xulrunner.
To fix this, I put a shell script into /etc/X11/Xsession.d/:
sudo touch /etc/X11/Xsession.d/200-mozilla-five
sudo gedit /etc/X11/Xsession.d/200-mozilla-five
Put the following code into your script:
#!/bin/bash
export MOZILLA_FIVE_HOME=/usr/lib/xulrunner
After restarting the X-server, Notes 8.0.1 will show you embedded HTML as expected.
1 comment:
Did not work for me.
I am using Notes 8.0.2 on Ubuntu 8,04. After exporting the env variable the same error occurs.
Post a Comment