Update to Drupal 6!

With the recent release of Drupal 6, I felt myself in the obligation to migration the site. Here we are.

To be completely honest, there's still some issues. For exemple View and CCK modules are not fully ported to this new version but the essential content is online.

I've also update the theme for a more attractive one : Dreamy

pdf2tiff? Easy!

You're looking for a pdf2tiff conversion tool but found only paying softwares? Here a free and easy way to proceed!

$ convert file.pdf file.tiff

That's all? Yeah!

But you need to have ImageMagick installed first and your installation must match the requirement for PDF and TIFF format

How to add another listening port to Postix mail server

Edit /etc/services file and declare another network service. This file maps services name to their underlying assigned port numbers and protocol types. For example add the following smtp2 service

...

smtp 25/tcp mail smtp2 2525/tcp mail ..

You just have to choose a name, a port (here 2525) and a protocol (tcp).

Then in Postfix's master.cf file, add the smtp2 service declaration:

smtp      inet  n       -       -       -       -       smtpd

smtp2 inet n - - - - smtpd

Finally reload Postfix

Another way to describe software development

LDAPStudio

In one of my current projects, I embed Apache Directory Server in my unit test. I've also been surprised by LDAPStudio. It's a Eclipse plugin which is developped by the same team.

It provides also the features I need:

  • LDAP directory browsing.
  • directory structure edition.
  • LDIF file support.
  • LDAP schema file edition support (OpenLDAP format).
  • Eclipse integration.

Give it a try if you are developping LDAP application in Java.

Syndicate content