March 27th, 2009 §
This post details how to setup mailman using lighttpd and postfix on gentoo.
Before starting I assume that you have:
* Lighttpd setup and working
* Postfix setup to handle mail from one domain
* MX records setup for the subdomain you want to use for lists
First, we need to install mailman, but before we do that we need to make sure it uses the right UID and GID (lighttpd) instead of apache, which is the default. To do this append
MAILMAN_CGIGID="lighttpd"
MAILMAN_CGIUID="lighttpd"
to /etc/make.conf and then proceed to install mailman:
# emerge mailman
Now it’s time to configure lighttpd. This we do by adding the following to /etc/lighttpd/lighttpd.conf:
alias.url += (
"/services/mailman/mailman-icons" => "/usr/lib64/mailman/icons/",
"/services/mailman/pipermail" => "/var/lib/mailman/archives/public/",
"/services/mailman" => "/usr/lib64/mailman/cgi-bin/",
)
$HTTP["url"] =~ "^/services/mailman" {
cgi.assign = (
"/admin" => "",
"/admindb" => "",
"/confirm" => "",
"/create" => "",
"/edithtml" => "",
"/listinfo" => "",
"/options" => "",
"/private" => "",
"/rmlist" => "",
"/roster" => "",
"/subscribe" => "")
server.indexfiles = ("listinfo", "index.html")
}
$HTTP["url"] =~ "^/services/mailman/pipermail/" {
dir-listing.activate = "enable"
dir-listing.hide-dotfiles = "enable"
server.follow-symlink = "enable"
}
I choose not to serve mailman from a vhost, if you want to do that you’ll need to change the above accordingly. Otherwise you’ll just have to change the url matches and aliases to reflect from where you want to host mailman. You will also need to make sure that the alias and cgi modules are enabled (located at the top of lighttpd.conf).
The next thing to configure is mailman itself. Append the following to /etc/mailman/mm_cfg.py:
MTA = 'Postfix'
DEFAULT_EMAIL_HOST = 'lists.example.tld'
DEFAULT_URL_HOST = 'example.tld'
DEFAULT_URL_PATTERN = 'http://%s/services/mailman/'
add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)
IMAGE_LOGOS = '/services/mailman/mailman-icons/'
POSTFIX_STYLE_VIRTUAL_DOMAINS = [DEFAULT_EMAIL_HOST]
PUBLIC_ARCHIVE_URL = 'http://%(hostname)s/services/mailman/pipermail/%(listname)s'
You should set DEFAULT_EMAIL_HOST to the subdomain you want your lists to use, DEFAULT_URL_HOST to the host from which you will serve the mailman web pages, and change DEFAULT_URL_PATTERN, IMAGE_LOGOS, PUBLIC_ARCHIVE_URL so that they are consistent with your settings in lighttpd.conf. The call to add_virtualhost is need when you change either of the _HOST variables like this.
Continuing, there is a few things we need to do as the mailman user. First install the cron jobs:
# su - mailman
mailman $ cd cron
mailman $ crontab crontab.in
mailman $ cd ..
Then set the site password:
mailman $ bin/mmsitepass
The site password works instead of any other password in the mailman installation, and is used to adminstrate it.
Next we create the site-wide mailing list, which is needed for proper operation of mailman:
mailman $ bin/newlist mailman
And logout from the mailman account and continue…
…with configuring postfix. This is as simple as adding the following two lines to /etc/postfix/main.cf:
virtual_alias_domains = lists.example.tld
virtual_alias_maps = hash:/var/lib/mailman/data/virtual-mailman
Once again replacing lists.example.tld with the subdomain you want your lists to use.
Now we only need to reload postfix, start mailman and add it to the default runlevel:
# /etc/init.d/postfix reload
# /etc/init.d/mailman start
# rc-update add mailman default
Congratulations, you should now have a working mailman install!
January 13th, 2009 §
(If you don’t know what a yubikey is, have a look here)
So I wrote up ebuilds for yubico-pam and its dependency yubico-c-client. You can get them here.
Just extract the tarball into your portage overlay and emerge pam_yubico. If you don’t have an overlay, then just do this (as root):
mkdir /usr/local/portage/
echo 'PORTDIR_OVERLAY="/usr/local/portage/"' >> /etc/make.conf
tar xvzf pam_yubico-ebuildstar.gz -C /usr/local/portage/
emerge pam_yubico
For myself I configured sshd to be able to login using either my yubikey or a normal password. I will describe how to do that – if you need some other configuration have a look at the PAM module’s site (mentioned above).
- You will need to get your yubico client id. The only way I know of to do this is through the YMS.
- Configure PAM to make ssh use the newly installed module. This by prepending
auth sufficient pam_yubico.so id=16 try_first_pass to /etc/pam.d/sshd. Be sure to change 16 to the ID you aquired in step 1.
- Add your yubikey id to the file pam_yubico looks in, namely
~/.yubico/authorized_yubikeys. Create the file with and add the line user:yubikey_id. The yubikey id is the first 12 characters from the OTPs it generates.
And that’s it. You should now be able to log in over SSH using either your regular password or your yubikey.
July 12th, 2008 §
IMPORTANT: Turns out I was wrong about why SDL_gfx doesn’t compile – thanks to sweetlilmre for pointing it out.
I strongly suggest using his suggestions for steps 2 and 8, whereas step 4 merely is a matter of preference. You should probably skip step 10 as well, since static_cast() is not C, but C++.
Sadly there are no officially provided binaries for SDL_gfx (unlike most other SDL_* libraries), and so I had to compile it myself. SDL_gfx, however has just about no documentation telling you how to do this – and the methods provided doesn’t even work.
Since it took me a while to get this working, so I thought I’d write it down for future reference.
1. Download and unpack the source package.
2. Rename *.c to *.cpp. This is to solve what seems to be this bug, that supposedly was fixed in VS6.
3. Extract sdlgfx.vcproj from ‘Other Builds\VisualC7.zip’ into the source directory and open it, and go through the Conversion Wizard.
4. Remove the source files from the project, and then add the *.cpp files and the *.h files to the project. This is needed because the paths in the original project file are incorrect.
5. Change target to Release.
6. Add SDL.lib to Linker -> Input -> Additional Dependencies in the project properties.
7. Add BUILD_DLL to C/C++ -> Preprocessor -> Preprocessor Definitions.
8. In SDL_gfxPrimitives, replace
#ifdef WIN32
__inline long int
lrint (double ftl)
{
int intgr;
_asm
{
fld flt
fistp intgr
};
return intgr;
}
#endif
with
#define lrint(x) (floor(x+(x>0) ? 0.5 : -0.5))
(As per this site)
9. Compile, and save the solution somewhere when asked to.
10. There should be 4 compilation errors, all of which can be solved by using static_cast<>():
SDL_rotozoom.cpp (Line 501) becomes:
pc = static_cast<tColorRGBA*>(dst->pixels);
SDL_rotozoom.cpp (Line 657) becomes:
pc = static_cast<tColorY*>(dst->pixels);
SDL_gfxPrimitives.cpp (Line 3105) becomes:
sab = sqrt(static_cast<double>(a2 + b2));
SDL_gfxPrimitives.cpp (Line 4289) becomes:
currentFontdata = static_cast<const unsigned char*>(fontdata);
11. Compile. The project should now compile correctly, and you will find sdlgfx.dll and sdlgfx.lib in the Release sub-folder of your source directory.
Now, this is all good, but I would really prefer either official binaries, *or* fixes to the code problems, and instructions that are actually up to date.
Since there was interest I’ve now uploaded my binaries as well. It’s SDL_gfx-2.0.17 compiled against SDL-1.2.13, and can be downloaded here.
June 15th, 2008 §
Since I had a some time on my hands I decided to make a web page that cycles through a collection of flash movies and shows each one for a specified amount of time.
It should work in most modern browsers – I’ve verified with Opera and Firefox (Internet Explorer doesn’t work).
You can find the source of the page here, and a sample of it in use here.
April 17th, 2008 §
I finally got SSBB working, and here’s how. But let’s start with what does NOT work.
First, my setup:
PAL Wii with latest firmware (Bought on the release date)
WiiKey (Firmware 1.9s)
Try 1 (No go):
Enabling update blocker on the WiiKey:
Doesn’t work, from reading a litte on the net I found out that you have to enable dev mode as well.
Try 2 (A bit better):
Enabled dev mode as well as the update blocker on the WiiKey. The disc loads correctly, but when you try to start it you just get a black screen.
Try 3 (Almost there):
Got a tip to try it in 50hz mode. Did that, and… it works. However the game runs awfully slow, and you get audio artefacts from some sounds which means it’s not really playable.
Try 4 (Success!):
Decided to try FreeLoader for Wii. I disabled update blocker and dev mode on the WiiKey, and changed back to 60hz.
First I went to the disc screen and inserted the FreeLoader disc and waited for it to load (you may see some graphic artefacts during this time). Then I ejected the FreeLoader disc and inserted my SMBB disc and started it. And it worked fine.
If you get a white screen saying the disc can’t be read after the “Loading…” message you’re propably suffering from a bad burn.
February 25th, 2008 §
One thing I really don’t like is libraries that lacks documentation. Which, incidentally, is exactly what ruby’s readline module does.
Happily, however, I found this post which explains at least the basic usage – thank you, Adam!
December 2nd, 2007 §
I’ve yet again remade my website (second time this year), and I think it looks better than the older two.
New for this version is a new PHP backend for the portfolio part, which I’m quite happy with. Eventually I’ll probably release the source for it, too.
I’d also like to thank Andreas Viklund for the template I used, and friends of mine for help with a few design decisions.
September 4th, 2007 §
Yep, I’ve decided to release the source of the game SvsG that I made together with a classmate quite a long time ago. It’s released under the MIT license, and you can find it here.
I haven’t cleaned up the directories, but it should still be usable (otherwise you could just import the important files into a new project).
It should also be noted that I consider most of the code not to be very well written. But it’s still usable. ;)
August 20th, 2007 §
You sometimes want announce what music you’re playing on IRC, but when using irssi on a remote server this becomes something of a problem. Therefore I wrote a script for irssi that track info for the currently playing track from last.fm, and prints it to the current channel.
To use the script:
1. Get it and place it in your ~/.irssi/scripts folder.
2. Optionally place a symlink to it in ~/.irssi/scripts/autorun directory to load it automatically when you start irssi.
3. Edit the file and change the $lastfmuser variable to your Last.fm username.
4. Load the script in irssi: /RUN npScriptLastFm.pl
5. You can now use the script by using the command /np
As written in the file itselft it’s distributed under the MIT license.
Hope you’ll find it useful.
Update 2: It is no longer recommended to use this script. See this comment for details and a better alternative.
Update 1: Thanks to Salminen (see comments), the script should now be working, I’ve updated the link so it points to the working version.
August 20th, 2007 §
Yes, it’s now time for the last clue, here and it is (the original unenciphered text). The text is from Wikipedia (Credit given where credit is due).
And so, as stated before, getting the cipher key should now be a question of brute force ;)