• iPhone,  Kerio,  Mac OS X Server,  Microsoft Exchange Server,  Network Infrastructure

    Using a + in an email address

    If you take an email address like my iCloud account, it’s krypted@me.com. If I take the username and add a + at the end I can then type some characters and put it all in front of the @ and domain name then the mail will still come to me. So, let’s say I use it to create an AppleID for an APNS certificate. That would be: krypted+apns@mac.com Or iTunes: krypted+itunes@mac.com Or iPhone1 (or these days iPad1): krypted+ipad1@mac.com The only gotcha is that occasionally you’ll run into some field on a webpage that has input validation for non alpha-numeric characters. Shouldn’t be the case, but it comes up from time…

  • Mac OS X,  Mac OS X Server,  Unix

    The basics of cron

     The cron command has officially been deprecated in Mac OS X, but still functions if called upon. cron starts a process that executes commands at specified dates and times. Regularly scheduled commands can be specified according to instructions found in the crontab files in the directory /var/spool/cron/crontabs. Users can submit their own crontab files via the crontab command.  Crontab copies the specified file or standard input if no file is specified, into a directory that holds all users’ crontabs.  crontab options: The -e option edits a copy of the current users’ crontab file or creates an empty file to edit if crontab does not exist. The-r option removes a user’s…

  • Mac OS X,  Mac OS X Server,  Ubuntu,  Unix

    vnode

    The vnode table represents all file activity in UNIX. There is a unique vnode allocated in the vnode table for each active file, each current directory, each mounted-on file, text file, and the root.  To see the number of vnodes available in Mac OS X, look to sysctl for the kern.maxvnodes variable using something similar to the following command: sysctl -A | grep vnode

  • Mac OS X,  Mac OS X Server,  Mac Security

    Control SSH Access

    Control access by editing the SSH configuration file and using the AllowUsers directive like so: AllowUsers cedge To add multiple entries, either separate users with a space: AllowUsers cedge kklein Or you can write an entirely new line: AllowUsers cedge AllowUsers kklein

  • Mac OS X,  Mac OS X Server,  Unix

    The Basics of pico (or nano)

    At your Unix shell prompt, type: pico filename Replace filename with the name of the file you want to create or edit. For example, to create a file and name it indiana.txt, type: pico charles.txt If the file already exits, Pico opens it for you to edit. If it doesn’t exist yet, Pico creates it and places you in an editing buffer. Pico displays a menu bar of commonly-used commands at the bottom of the screen. Pico accepts commands from your keyboard but not from your mouse. To insert text into your Pico editing screen at the cursor, just begin typing. Pico inserts the text to the left of the…