socks proxy

To create socks proxy You need:
1. Server that you connect via ssh and create dynamic tunnel
2. Client application that can “wear socks”

First ssh to Your server
ssh -D someport someserver.tld
where someport i s Your dynamic socks port which You will be use
ssh -D 1080 your.server.tld

regexp alias w Postfixie

Chcielibyśmy aby maile zawierające w w polu adresat (to:) ciąg znaków “spam” były przekierowaywne na skrzynkę danego usera

# vi virtual-regexp
/^spam/ user
# vi main.cf
virtual_maps=hash:/usr/local/etc/postfix/virtual, regexp:/usr/local/etc/postfix/virtual-regexp
# postmap virtual-regexp
$ man regexp_table

Co dzięki temu uzyskaliśmy?
Możemy na różnych serwisach które wysyłają nam masę maili czasem potrzebnych czasem mniej, tworzyć dedykowany adres spamerski w stylu spam.facebook@, spam.twitter@ i filtrować maile tylko po adresacie (recipient) a nie wysyłającym (sender)

panic while removing files in FreeBSD 9.2

freebsd_crash

if you occured server panic on FreeBSD 9.2 using journaled soft updates you probably had not clean shutdown and there is some inconsistency (though filesystem is clean) – for better stability disable journaled soft updates:

boot into single mode and after full fsck do:

# tunefs -j disable /dev/filesystem
# reboot

or if you want to using journaled soft updates do manual fsck in single user mode without using journal

 # USE JOURNAL? [yn] n

then the server panics should not appear to the next unclean shutdown…