• Mac OS X Server

    Changing Roundcube Max Attachment Size in Lion Server by Duong Nguyen

    Thanks to Duong Nguyen for the second user-submitted post on Changing Roundcube Max Attachment Size in Lion Server! By default, Lion Server’s webmail (Roundcube) has a 5MB max attachment size. The max attachment size is read from php’s “upload_max_filesize” and “post_max_size”. We don’t need to edit php.ini because Lion Server created a .htaccess in Roundcube’s directory that overrides php.ini’s settings. Please only do this if you are comfortable with the terminal! I start by SSHing to my server as root (or you can open a root terminal). 1. # cd /usr 2. # cd share 3. # cd webmail 4. # vi .htaccess 5. Use your arrow keys to navigate…

  • Mac OS X,  Mac Security,  Mass Deployment

    Mail Attachments from the Command Line

    Concurrent with my last post on using mail from the command line there was a thread on the Mac OS X Server email list on using attachments with mail, so I thought I would supplement what they were doing there here (so if you were following that thread the only new thing here are the -c and -b options). Let’s say you have a file on your desktop called orgchart.doc and you wanted to attach it to an email and send it to a few email addresses: contact@org.com, contact2@org.com and krypted@mac.com. We’re also going to bcc secret@org.com.  You would use the following command: uuencode ~/Desktop/orgchart.doc orgchart.doc | mail -s “orgchart”…