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…

how to change default program to open specified file extension

In registry editor change the key:

HKEY_CLASSES_ROOT\textfile\shell\open\command

and add or modify a value: Type REG_EXPAND_SZ

"c:\tools\notepad++\unicode\notepad++.exe" "%1"

the reg file is:

Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Applications\notepad++.exe]
[HKEY_CLASSES_ROOT\Applications\notepad++.exe\shell]
[HKEY_CLASSES_ROOT\Applications\notepad++.exe\shell\edit]
[HKEY_CLASSES_ROOT\Applications\notepad++.exe\shell\edit\command]
@="\"C:\\Program Files (x86)\\Notepad++\\notepad++.exe\" \"%1\""
[HKEY_CLASSES_ROOT\Applications\notepad++.exe\shell\open]
[HKEY_CLASSES_ROOT\Applications\notepad++.exe\shell\open\command]
@="\"C:\\Program Files (x86)\\Notepad++\\notepad++.exe\" \"%1\""