Add reply-to header in Mac OS X Mail
Mac OS X Mail To make Mac OS X Mail add a custom “Reply-To” header line to all emails you send: Open Terminal. Type “defaults read com.apple.mail UserHeaders”. Press Enter. If that command returns “The domain/default pair of (com.apple.mail, UserHeaders) does not exist”: Type “defaults write com.apple.mail UserHeaders ‘{“Reply-To” = “reply-to@address”; }’” (excluding the […]
Boot recovery of Ubuntu with LUKS encrypted LVM
(Tested on Ubuntu 10.04) First boot of LiveCD and choose “try without installing” Open a terminal from Menu Accessoires $ sudo -i # apt-get install lvm2 # cryptsetup luksOpen /dev/sda2 crypt-sys # pvscan # vgscan # vgchange -ay # cd /mnt # mkdir root # mount /dev/ubuntu/rootfs root # mount /dev/sda1 root/boot # chroot […]