-
Just an FYI post. I save all my added Squirrelmail plugins in /Users/Shared/squirrelmail_plugins/. Consequently if I need to reinstall any or all of them all I have to do is issue the following… [bash] sudo cp -R /Users/Shared/squirrelmail_plugins/PLUGIN_FOLDER /usr/share/squirrelmail/plugins sudo /usr/share/squirrelmail/config/conf.pl [/bash] Activate the plugins, save, quit and you’re good to go.
-
Today is my son’s sixteenth birthday. Since I know he doesn’t read this blog I’m going to out our present to him of a new iPhone 3GS. He’s going to make out like a bandit as his grandparents are getting him an iPad 2 also. I love you Jonathan, Happy Birthday.
-
As I attempt to transition from a laptop to an iPad, with no specific reason other than the iPad is sooooo kewl; I need to create my own online storage. Yes I have a Dropbox account, but I don’t control Dropbox. Here’s what I did, YMMV. From Server Admin, make new Web > Realm and…
-
Just to document. I’ve updated the settings in /etc/named/named.ca by using the following command and then restarting DNS. sudo curl ftp://ftp.internic.net/domain/named.root -o /var/named/named.ca Not sure how often this should be done. I also added the following to /etc/named.conf to reduced the error logging. I got that tidbit from google groups logging { category lame-servers {…
-
If you use Fail2ban then you are probably aware of the fact that you must add a rule number to the ipfw deny rule for actionban in ipfw.conf. If you don’t add a rule number then there is no way for fail2ban to delete the rule after it expires. The problem lies in that you…
-
I’ve just stumbled across a great command in Fail2ban to check whether or not your filter will actually score a hit from your log file. From the command line. [code lang=bash] $ fail2ban-regex /path/to/logfile /etc/fail2ban/filter.d/myfilter.conf regex_to_ignore [/code] As an example. [code lang=bash] $ fail2ban-regex /var/log/secure.log /etc/fail2ban/filter.d/sshd.conf (myusername|myIPaddress) [/code] This seems like a great way to…