Merging Oceans
by dervish on Mar.23, 2012, under WWW
The site skinnypup.com has been redirected to ciphermethod.com. Also, permalinks for ciphermethod.com have been changed from /year/month/post to just /post. This will create some confusion until the search engines update to the new links. All of the data is still available, so please do a local search.
The Top 25 Passwords of 2011
by dervish on Mar.01, 2012, under WWW
- password
- 123456
- 12345678
- qwerty
- abc123
- monkey
- 1234567
- letmein
- trustno1
- dragon
- baseball
- 111111
- iloveyou
- master
- sunshine
- ashley
- bailey
- passw0rd
- shadow
- 123123
- 654321
- superman
- qazwsx
- michael
- football
Postfix/SASL CHROOT Links
by dervish on Feb.28, 2012, under Debian, Ubuntu
Issue:
warning: SASL authentication failure: cannot connect to saslauthd server: Too many levels of symbolic links
Fix:
rm -r /var/run/saslauthd/
mkdir -p /var/spool/postfix/var/run/saslauthd
ln -s /var/spool/postfix/var/run/saslauthd /var/run
chgrp sasl /var/spool/postfix/var/run/saslauthd
apt-get install not replacing deleted config file
by dervish on Feb.23, 2012, under Debian, Linux
Problem:
An apt-get install is not replacing deleted config files…
Example:
Setting up dovecot-common (1:1.2.12-1ubuntu8.3) …
Not replacing deleted config file /etc/dovecot/dovecot.conf
Not replacing deleted config file /etc/dovecot/dovecot-ldap.conf
Not replacing deleted config file /etc/dovecot/dovecot-sql.conf
grep: /etc/dovecot/dovecot.conf: No such file or directory
grep: /etc/dovecot/dovecot.conf: No such file or directory
Solution:
apt-get --purge autoremove package
Postfix/Dovecot Install
by dervish on Feb.23, 2012, under Linux, Red Hat
Install Postfix:
yum install postfix (RedHat)
apt-get install postfix (Debian)
Add Domains to Accept Mail For:
vi /etc/postfix/main.cf
set
mydestination = localhost.localdomain, localhost, domain.com, host
Tell Postfix to use Maildir instead of mbox format:
postconf -e "home_mailbox = Maildir/"
postconf -e "mailbox_command ="
Set MAIL variable in /etc/profile:
export MAIL=$HOME/Maildir
Restart Postfix:
service postfix restart
Mail local user and confirm mail is delivered.
Install Dovecot:
apt-get install dovecot-common dovecot-imapd dovecot-pop3d