Agile Tortoise
Greg Pierce’s blog
« In the end, it was only space. Please buy a TiVO »
greg != Greg != GREG
While troubleshooting on the mail server, I realized I had another goof to fix. Cyrus is case-sensitive on account names. Since most things on OS X are not case-sensitive, it’s easy to get lazy about it. So, essentially, if you sent mail to me as “greg”, I got it, but not “Greg” or “GREG”. Don’t think I missed much in the process, but probably a few things. I just added this line in the procmail config to force lower case on the user name:
USER=`echo $USER | tr "[:upper:]” “[:lower:]“`