Here is a guide on getting Email services running on Ubuntu Intrepid. I used Postfix for core services (SMTP wtih TLS and SASL) and Dovecot for fast IMAP and POP3. This tutorial has been tested on a bare bones Ubuntu 8.10 slice from Slicehost.
Category: Guides
How To’s and other guides.
Quick LNMP Server Setup Guide
Learn more about the inner workings of this website’s server and how to setup an LNMP stack.
Troubleshooting: PHP API for Cloud Files Stops at Authentication
The PHP API for Cloud Files does not catch CURL errors. An exception will be thrown, however it will not contain any useful information to troubleshoot the problem. Here is a likely symptom and a solution.
Create a Movie From a Sequence of Images Using QuickTime and AppleScript
I was doing some troubleshooting on Animated Mandelbrot and ran across this neat AppleScript. Given a sequence of images it will create a MOV file using QuickTime. tell application “QuickTime Player” activate open image sequence “/Users/jon/Desktop/debug/1.jpg” frames per second 24 end tell