1. Installing Debian Wheezy (snapshot) as of 20120828 to Kuro Sheeva

    Two machines of Kuro Sheeva got broken this summer (by power supply unit problem ).

    For new machine (which bought in 2010), I installed Debian Wheezy (snapshot).

    I use 32GB SD card for secondary storage and use USB memory for installer.

    Basically, it went well (except /etc/inittab entry).

    Update U-boot …

    more »
  2. MTA settings accepting SSMTP for submission

    These days, it's getting hard to send e-mail.

    For FSIJ members, MTA at fsij.org accepts SMTP connections at port 465 (submission) or 587 (ssmtp).

    We are using Exim4 as MTA and here are the settings for accepting e-mail submissions.

    We create a file named conf.d/main/02_exim4-config_ssmtp_submission.

    MAIN_TLS_ENABLE …
    more »
  3. MTA settings with alias entries by SQLite

    We use Django application, and we use it's DB file for e-mail aliases.

    The settings are by conf.d/router/402_exim4-config_virtual_sql.

    # members@fsij.org
    fsij_members:
      driver = redirect
      domains = fsij.org
      condition = ${if eq {$local_part}{members}{yes}{no}}
      forbid_pipe
      forbid_file
      data = ${lookup sqlite {/home/fsij/django/fsij/fsij.db \
               select email …
    more »