November 30, 2007, 12:01 am
For anyone with a Dreamhost account set up to take advantage of mail forwarding, check out this post on their support site. Mail forwards are being delayed 18-24 hours in my experience.
In the meantime, to check all email routed through Dreamhost, I’ve been using webmail access (http://webmail.yourdomain.com) and also have a second forward going to my Yahoo address. Yahoo accounts, by the way, take advantage of BlackBerry push-style forwarding.
Hopefully the DreamHost staff get this fixed soon!
September 3, 2007, 9:27 pm
I’ve recently switched my Gmail account to a new alias (jake.billo). It looks much more professional than my Evergreen98 screenname, especially considering Outlook 2003/2007’s habit of attaching “sent by X on behalf of Y” to any outgoing message using a different From address. I don’t mind having the on behalf of text in the subject line, as long as it’s reasonably professional and not a slightly-outdated alias. However, I have 363MB of searchable, indexed content from my existing account that I’d prefer not to lose, and would like to transfer to my new account.
While I don’t have a “Gmail for your domain” account setup configured, since I like the IMAP support that Dreamhost provides, these instructions from Silvermac are fairly useful. Here’s the adapted process I used for moving evergreen98 to jake.billo:
- Sign into your old account, then click Settings / Forwarding and POP. Set up forwarding to your new email account, and also select the Enable POP for all mail (even mail that’s already been downloaded) option. Save your changes:

- Sign into your new account, then click Settings / Accounts. Under the “Get mail from other accounts” section, add a new (or additional) POP account with the name of your old Gmail account. Provide your username and password for your old account, as well. You should use pop.gmail.com for the incoming mail server. (The server address on Silvermac is undocumented - use the official one.)

- The synchronization process will begin and Gmail will begin fetching the contents of your old account. For me, this process is taking several hours, but will run in the background fetching 200 messages at a time:

There you have it - get rid of your embarrassing EmoKid10471XxXHaRdCoRE alias, and move over to something that won’t get your resume filed into the circular filing cabinet on the floor.
Edit: Fixed some horrible post formatting. WordPress’ editor really needs to shape up.
March 5, 2007, 1:32 am
If you own one or more of the 350K domains hosted with Dreamhost, you may be interested in using their statistics tracking system. However, if you have WordPress installed at the root of your domain, the /stats/ URL is inaccessible and only results in a 404 error, as WordPress tries to parse /stats/ as a permalink to a post or page. This is due to the .htaccess directives that WordPress employs.
The solution is on the DreamHost wiki and can be added to the top of your .htaccess file fairly quickly:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} ^/(stats|failed_auth\.html)/?(.*)$ [NC]
RewriteRule ^.*$ - [L]
</IfModule>
This code comes before the WordPress commented line:
# BEGIN WordPress
Alternatively, if you’re concerned about people possibly bruteforcing your statistics username and password (since it uses simple HTTP authentication), you can deny public access to /stats/ and access the logfiles from an SSH session. Keep in mind that this will be a text-based view of your statistics.
ssh user@yourdomain.com
cd logs/yourdomain.com/http/html
links index.html
The logs directory is accessible under your home directory (~). You could also always run a tar/gzip command on the ~/logs/yourdomain.com/http/html directory and SFTP/FTP the file, then view the stats locally.
For more information, such as performing the same operation with Ruby on Rails apps or TextPattern, check the wiki.