Category Archives: Software

Just some code I created!

Configure Exchange Server for correct mailhandling with Thunderbird (attachments etc.)

When using Exchange Server with Thunderbird clients over IMAP, you might get problems with wrong attchments in Thunderbird. However you will be able to open the attchments correctly with Outlook Web Access. Unfortunately Microsoft changed the message size which is a RFC violation. Now there are two options to correct this:

1. Changing the client side:

Do the follwoing on each client:

  • Go to Tools->Options or Edit->Preferences
  • Go to ‘Advanced’ Tab
  • Click ‘Config Editor’ button
  • Enter ‘mail.server.server’ as the filter
  • Enter the name mail.server.server<number>.fetch_by_chunks, and set it to
    ‘false’ (eg i have mail.server.server3.fetch_by_chunks=false).

2. Change the server side for all clients:

  • Start the Exchange Administrator program.
  • Select <Organization>, and then <Site>. Select Configuration, and then select the Protocols container.
  • Double-click the “IMAP4 (Mail) Site Defaults” object.
  • Clear the “Enable fast message retrieval” check box.

http://support.microsoft.com/kb/191504

For Exchange servers > 2003:

You can enable the exact size for everyone with:
Set-ImapSettings -EnableExactRFC822Size:$true

Or only for a specific user:
Set-CASMailbox “IMAP User” -ImapUseProtocolDefaults:$falseĀ -ImapEnableExactRFC822Size:$true

 

Windows 7 as WiFi Access Point

OK here is the deal: You have a wired connection to the Internet e.g. in a hotel room but your fancy new smart phone, iPad etc. just has WLAN connection. Until now you had three possibilities:

  1. Use your 3G connection
  2. Use Bluetooth or crappy wired connections
  3. Stay offline, go the hotel bar and get drunk you damn geek!

Well since all modern notebooks do have a WLAN card built in, why not use this card as an access point? The average Linux guy is now really LOLing but for us Windows users this just was a dream. Now Microsoft implemented some nice command line tools to turn your WLAN card into an access point. You can find the information here:

read more »

UMTS Connector

When my site frist launched, people loved my UMTS-Connector. This peace of software is frequently used by mobile broadband users with a bad coverage. I developed this small program when I had to fight with large connection problems in 2007. Since I didn’t work on the software till then, I realease the source code free of charge for personal use.

read more »