Spack Community Server Settings
Please note that if you were part of the MausRoninMigration that some of these settings are slightly different then the old ones, so make sure that you update your clients appropriately.
General Settings |
|
Mail Settings |
|
IMAP Host |
imap.spack.org |
IMAP Port |
993 |
POP Port |
995 |
IMAP Prefix |
N/A (Blank) |
SMTP HOST |
smtp.spack.org |
SMTP Port |
25 |
SMTP Authentication |
Yes (using your normal user/pass and SSL) |
The IMAP host is for receiving mail and the SMTP host is for sending mail. |
|
Other Settings |
|
SSH Host |
ronin.spack.org |
Web URL |
|
Web Directory |
cd ~/public_html |
If something was installed or configured better on the old server and you would like the new server made the same please just let me know and I'll fix it up as soon as I have a moment.
- The same as the old server, SSH will only accept version 2 connections. So make sure you use a modern client, or the available Java based web client.
- Web mail is still available in the same place as always.
Notes
Things should work roughly the same on the new server as they did on the old, but there are some differences.
Instead of your mail being stored in ~/mail/ and your inbox in /var/mail/USERNAME, everything is kept in ~/Maildir/. All of your folders will be directories called ~/Maildir/.Folder and every message in that folder will be a separate file.
- If you want to use procmail you now have to forward your mail into procmail for your ~/.procmailrc to become active. Here is what your ~/.forward file should look like:
# cat ~/.forward "|/usr/bin/procmail"
- When writing your Procmail rules any folder that you want to filter into needs to end with a trailing slash. This is important because it's the only way that procmail can know that you are wanting to save the message into a Maildir folder. Here's an example from my ~/.procmailrc:
# Everything is relative to ... MAILDIR=/home/adam/Maildir/ # If no other rule catches, file here DEFAULT=.INBOX.deleteme/ # Turn off biff notification COMSAT=no # Logging and stuff LOGFILE=/home/adam/.procmail/log VERBOSE=no LOGABSTRACT=no :0 * ^Sender: macosx-admin-admin@omnigroup.com .INBOX.macosx/ :0 * ^Sender: advisors-admin@lists.wirelesscommons.org .INBOX.wireless/ # Mail *to* me, goes to inbox :0 * ^TO_((adam|larry|root)@((maus.|ronin.)?spack.org||shmoo.com|shand.net)) ./ # Anything that makes it here should get filtered by the DEFAULT setting