Archive for the ‘Ubuntu’ Category
Monday, December 28th, 2009
Evolution has a feature for marking e-mail as junk. This will set an IMAP keyword "Junk" on those messages. On my mail server I run Dovecot as IMAP server and Spamassassin through Amavis to filter spam. How could I get Spamassassin to learn that all e-mails marked as junk in ...
Posted in Ubuntu | No Comments »
Monday, December 7th, 2009
For various reasons (see bottom of WinePulse – PulseAudio for Wine) the main branch of Wine does not support PulseAudio. This makes Spotify under Wine misbehave a bit, but fortunately there is a solution! A person called Neil Wilson has been kind enough to provide PPA packages of Wine with ...
Posted in Ubuntu | No Comments »
Friday, November 6th, 2009
I'm currently upgrading my Ubuntu-in-VirtualBox at work from Jaunty to Karmic, but at first it didn't work at all. Update Manager got stuck when I clicked the "Upgrade" button.
Due to the Big Corporate Firewall all Internet access must go through the the Enterprisey Proxy so I immediately suspected a firewall/proxy ...
Posted in Ubuntu | No Comments »
Wednesday, November 4th, 2009
In about:plugins, what's the filename of the Java plugin?
Is it libjavaplugin_oji.so? If so, you should update to the new Java plugin. Run:
sudo update-alternatives --config xulrunner-1.9-javaplugin.so
Now select libnpjp2.so instead and restart Firefox.
Source: Out of date java 6 plugin installed.
Posted in Ubuntu | 3 Comments »
Monday, September 7th, 2009
My TaskFreak hacking goes on. In Sweden we often use ISO 8601 format for dates (year-month-day), but TaskFreak does not offer this out of the box.
Most date formatting comes from the DATE FORMATS section in include/config.php but even after changing these date formats I still don't get all dates displayed ...
Posted in Software Development, Ubuntu | No Comments »
Friday, September 4th, 2009
To be more exact, some Facebook mail servers are listed in the Composite Blocking List (CBL), including but probably not limited to these:
outmail002.ash1.tfbnw.net - 69.63.184.102
outmail004.ash1.tfbnw.net - 69.63.184.104
outmail007.ash1.tfbnw.net - 69.63.184.107
outmail009.ash1.tfbnw.net - 69.63.184.109
outmail110.ash1.tfbnw.net - 69.63.184.110
CBL is not very informative, but writes:
ATTENTION: If you are running IPSwitch Imail, or similar shared hosting software, ...
Posted in Ubuntu | No Comments »
Thursday, August 27th, 2009
I have two personal TaskFreak installations now: one at work and a personal one for everything else.
Usually I run all my applications in English but the personal TaskFreak is in Swedish so the first thing I changed was a couple of things I didn't agree with in the Swedish translation.
Then ...
Posted in Ubuntu | 11 Comments »
Monday, August 17th, 2009
Why is the Swedish translation in ISO8859-1? Sooooo 20th century! :-)
Templates
cd /usr/share/mailman/sv
for f in *; do
mv $f $f.old; iconv -f iso8859-1 -t utf-8 $f.old > $f
done
rm *.old
Translations
cd /var/lib/mailman/messages/sv/LC_MESSAGES
mv mailman.po mailman.po.original
iconv -f iso8859-1 -t utf-8 mailman.po.original > mailman.po
msgfmt mailman.po -o mailman.mo
/etc/mailman/mm_cfg.py
DEFAULT_CHARSET = 'utf-8'
def _(s):
return s
add_language('sv', ...
Posted in Ubuntu | 1 Comment »
Sunday, June 28th, 2009
The kitchen computer project will be powered by a black ASUS EeeBox B203! The ancient 800 MHz (VIA Samuel 2 crap CPU) Mini-ITX machine I use for the prototype is very slow, has issues with the USB network adapter (NetGear WG111v3, ID 0846:4260), and freezes occasionally so it will be ...
Posted in Ubuntu | No Comments »
Thursday, June 25th, 2009
My current daytime setup is for various reasons a Windows XP installation with Ubuntu Jaunty running inside VirtualBox. I use Microsoft Windows for Outlook, SQL Navigator and some web browsing while using the Linux installation for development. This morning I started Firefox in Windows XP, changed focus to VirtualBox or ...
Posted in Ubuntu | 4 Comments »