<?xml version="1.0"?>
<rss version="2.0">
  <channel>
    <title>Advogato blog for richdawe</title>
    <link>http://www.advogato.org/person/richdawe/</link>
    <description>Advogato blog for richdawe</description>
    <language>en-us</language>
    <generator>mod_virgule</generator>
    <pubDate>Sun, 7 Sep 2008 09:20:31 GMT</pubDate>
    <item>
      <pubDate>Sat, 19 Jul 2008 12:07:48 GMT</pubDate>
      <title>File::ExtAttr 1.08, (Open)Solaris and 2 xattr schemes</title>
      <link>http://www.advogato.org/person/richdawe/diary.html?start=134</link>
      <guid>http://richdawe.livejournal.com/3576.html</guid>
      <description>&lt;p&gt;I released &lt;a href="http://search.cpan.org/dist/File-ExtAttr/" &gt;File::ExtAttr&lt;/a&gt; 1.08, which has some changes to make it report errors more consistently (&lt;tt&gt;$!&lt;/tt&gt; should always contain the value of &lt;tt&gt;errno&lt;/tt&gt; now). It also has some build changes, which will hopefully avoid all the CPAN Testers FAIL reports on platforms that don't have the development packages installed for using xattrs (libattr-devel rpm on Linux).&lt;/p&gt;

&lt;p&gt;I development this release on various platforms, but the most exciting one was OpenSolaris 2008.05 (AKA Project Indiana). This is so much easier to install and use than Solaris 10. It's much more like using a Linux distro. The OpenSolaris LiveCD is very easy to install, and things just seem to work. It took about 6 steps to get a fully functional development environment for File::ExtAttr.&lt;/p&gt;

&lt;p&gt;While developing 1.08 on OpenSolaris, I discovered that it has two separate ways of storing extended metadata: extended file attributes, and extensible system attributes. The &lt;a href="http://opensolaris.org/os/community/arc/caselog/2007/315/spec-final-txt/" &gt;extensible system attributes&lt;/a&gt; were added as part of supporting CIFS on ZFS. It's still unclear to me why the existing metadata scheme wasn't good enough -- maybe the semantics of the original xattr interface weren't compatible with the use cases?&lt;/p&gt;

&lt;p&gt;(The original xattr scheme is that you open the file as though it were a directory, and then the xattrs can be accessed through directory entries. This is clever, but different to the way Linux, *BSD and Mac OS X implement xattrs.)&lt;/p&gt;

&lt;p&gt;I'm now not sure which xattr API I should be exposing through File::ExtAttr. I guess it comes down to which one will be more portable across platforms. I think that will be determined by which xattrs are preserved by tar, etc.&lt;/p&gt;

&lt;p&gt;Anyow, here's the change log for File::ExtAttr 1.08:&lt;/p&gt;

&lt;p&gt;&lt;pre&gt;1.08 2008-08-19

     - (richdawe) Add a typemap for usage of "const char *" in the XS.
                  This may help fix the build with Perl 5.6.x or earlier.

     - (richdawe) Remove NetBSD 3.x from list of supported OSes,
                  since File::ExtAttr's test suite will never pass on it.

     - (richdawe) Update Makefile.PL to fail more gracefully when the build
                  pre-requisites are not present. On Linux use
                  Devel::CheckLib to check for libattr. Also exit
                  more gracefully if libattr's headers are not present.

     - (richdawe) OpenBSD isn't supported, so bail gracefully
                  in Makefile.PL on that platform.

     - (richdawe) Make sure that the errno value from any failed
                  system calls is propagated into $! (#32679, #32680).

     - (richdawe) File::ExtAttr no longer generate noisy warnings
                  when an xattr system call fails. All error reporting
                  is now via the function return values and $!.

     - (richdawe) Operations with non-default or non-"user" namespaces
                  will now fail with EOPNOTSUPP instead of ENOATTR
                  on Mac OS X, *BSD and Solaris. This behaviour
                  matches the behaviour on Linux.

     - (richdawe) Added a note to the documentation about Solaris
                  extensible system attributes, which are different
                  to extended file attributes.&lt;/pre&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <pubDate>Wed, 19 Mar 2008 23:06:49 GMT</pubDate>
      <title>rpm: Filtering dependencies differently for different subpackages</title>
      <link>http://www.advogato.org/person/richdawe/diary.html?start=133</link>
      <guid>http://richdawe.livejournal.com/3102.html</guid>
      <description>&lt;p&gt;Recently I was trying to work out how to filter rpm Requires/Provides dependencies differently for different subpackages. I was trying to produce a subpackage that was the same as another subpackage, but stripping out some library dependencies. Call the one subpackage &lt;tt&gt;foo&lt;/tt&gt; and the other &lt;tt&gt;foo-nodeps&lt;/tt&gt;. (Don't ask why I was trying to do this.)&lt;/p&gt;

&lt;p&gt;rpm has a way of hooking the dependency generation, as described in &lt;a href="http://fedoraproject.org/wiki/PackagingDrafts/FilteringAutomaticDependencies" &gt;FilteringAutomaticDependencies at the Fedora wiki&lt;/a&gt;. This is pretty magical. You disable rpm's internal dependency generation. You can then override the default external dependency generation scripts (if you want). Normally rpm uses &lt;tt&gt;find-requires&lt;/tt&gt; and &lt;tt&gt;find-provides&lt;/tt&gt; in &lt;tt&gt;/usr/lib/rpm&lt;/tt&gt;, or &lt;tt&gt;/usr/lib/rpm/redhat&lt;/tt&gt; on some Red Hat or Red Hat-derived systems. If you do override the scripts, it's likely you'll want to call them and filter their output.&lt;/p&gt;

&lt;p&gt;When you define your own dependency generation scripts, they are applied to all subpackages. There is no information passed to the script to indicate which package/subpackage it is being call for. You can pass arbitrary parameters to your custom find-requires/find-provides scripts. But there are no macros that you can use to pass that in as a parameter (&lt;tt&gt;%name&lt;/tt&gt; is always the main package's name -- there's no &lt;tt&gt;%subpackage&lt;/tt&gt; macro AFACIS).&lt;/p&gt;

&lt;p&gt;A solution was to pass that information in via the filesystem. In the &lt;tt&gt;%install&lt;/tt&gt; script I'd create a file per package. Something like this:&lt;/p&gt;

&lt;p&gt;&lt;pre&gt;mkdir -p %{buildroot}/NOTINSTALLED
touch %{buildroot}/NOTINSTALLED/foo.ghost
touch %{buildroot}/NOTINSTALLED/foo-nodeps.ghost&lt;/pre&gt;&lt;/p&gt;

&lt;p&gt;Then in each package's file list I'd put the appropriate file:&lt;/p&gt;

&lt;p&gt;&lt;pre&gt;%files
...
%ghost /NOTINSTALLED/foo.ghost

%files nodeps
...
%ghost /NOTINSTALLED/foo-nodeps.ghost&lt;/pre&gt;&lt;/p&gt;

&lt;p&gt;The &lt;tt&gt;%ghost&lt;/tt&gt; ensures that the file isn't installed, but is still passed to the find-requires/find-provides scripts. A custom find-requires script can then find out which subpackage it's being called for. Something like this:&lt;/p&gt;

&lt;p&gt;&lt;pre&gt;cat &amp;gt; .files
if (grep -q -E '^/NOTINSTALLED/foo-nodeps.ghost$' 2&amp;gt;/dev/null); then
  # Filter out dependencies on libfoo
  /usr/lib/rpm/find-requires | grep -v -E '^libfoo.so'
else
  /usr/lib/rpm/find-requires
fi&lt;/pre&gt;&lt;/p&gt;</description>
    </item>
    <item>
      <pubDate>Sat, 12 Jan 2008 09:04:43 GMT</pubDate>
      <title>FileVault</title>
      <link>http://www.advogato.org/person/richdawe/diary.html?start=132</link>
      <guid>http://richdawe.livejournal.com/2877.html</guid>
      <description>I enabled FileVault home directory encryption on my work Macbook Pro the other day, which is running Mac OS X Tiger (10.4). I was a little bit hesitant about doing this, because of various horror stories about it not working, or performance being terrible. I made sure I had a proper backup, before starting the process.&lt;br /&gt;&lt;br /&gt;The 160 GB hard disk was about 40% full before I started. It took 1.5 hours to encrypt my 41 GB home directory, followed by 3.5 hours to securely erase the old unencrypted version.&lt;br /&gt;&lt;br /&gt;The performance afterwards seems to be generally the same before. The only exception I've hit so far is with Parallels resizing an expanding disk in a virtual machine, and there the performance is terrible. This makes some kind of sense: There are two disk images being expanded, the Parallels VM disk inside the encrypted home directory, and then the encrypted disk image containing the home directory. Pre-allocating the disk image for the VM helps, because it means no resizing is required at run-time.&lt;br /&gt;&lt;br /&gt;Some of my preferences seem to have been lost. I had to make Firefox my default browser again. And I had a hot corner to turn on the sceensaver, which mysteriously stopped working -- I fixed that by setting a different corner to do "show desktop", after which the screensaver hot corner worked again (strange).</description>
    </item>
    <item>
      <pubDate>Sun, 11 Nov 2007 22:12:02 GMT</pubDate>
      <title>Recycling Compact Flourescent Lightbulbs (CFLs)</title>
      <link>http://www.advogato.org/person/richdawe/diary.html?start=131</link>
      <guid>http://richdawe.livejournal.com/2730.html</guid>
      <description>&lt;p&gt;I read in Scientific American that Compact Flourescent Lightbulbs (CFLs) contain mercury, and some US stores/states have recylcing programmes at stores or kiosks. I didn't realise they contained mercury, and probably would have just thrown them in the bin with my other rubbish. Links:&lt;/p&gt;

&lt;p&gt;&lt;a href="http://www.energystar.gov/index.cfm?c=cfls.pr_cfls" &gt;Compact Fluorescent Light Bulbs at energystar.gov&lt;/a&gt;&lt;br&gt;
&lt;a href="http://en.wikipedia.org/wiki/Compact_fluorescent_lamp" &gt;Compact fluorescent lamp at Wikipedia&lt;/a&gt;&lt;br&gt;
&lt;a href="http://www.reuk.co.uk/Toxic-Mercury-in-CFL-Bulbs.htm" &gt;Toxic Mercury In CFL Bulbs&lt;/a&gt;&lt;br&gt;
&lt;a href="http://www.lamprecycle.org/" &gt;lamprecycle.org&lt;/a&gt; (not much use here in the UK)&lt;/p&gt;

&lt;p&gt;I had a look to see what's on offer in the UK. The &lt;a href="http://www.recyclenow.com/" &gt;&amp;quot;Recycle Now&amp;quot;&lt;/a&gt; website doesn't seem to contain any information about how to recycle CFLs. &lt;a href="http://www.greenpeace.org.uk/blog/climate/everything-youve-wanted-to-know-about-light-bulbs-20070807" &gt;Greenpeace has an article about CFLs&lt;/a&gt;, which suggests I should be able to take them back to the retailer. Do I have to prove that I bought the bulb from the retailer in the first place?&lt;/p&gt;</description>
    </item>
    <item>
      <pubDate>Sun, 4 Nov 2007 11:15:20 GMT</pubDate>
      <title>File::ExtAttr 1.06, mab2ldif</title>
      <link>http://www.advogato.org/person/richdawe/diary.html?start=130</link>
      <guid>http://richdawe.livejournal.com/2520.html</guid>
      <description>&lt;p&gt;I released &lt;a href="http://search.cpan.org/dist/File-ExtAttr/" &gt;File::ExtAttr 1.06&lt;/a&gt; to fix building on Mac OS X. File::ExtAttr provides an interface to extended file attributes (meta-data) that's consistent across Linux, Mac OS X, *BSD, Solaris.&lt;/p&gt;

&lt;p&gt;I also released &lt;a href="http://homepages.nildram.co.uk/~phekda/richdawe/mysoft.html#mab2ldif" &gt;mab2ldif&lt;/a&gt;, which takes a Mork-format address book (e.g.: as used by Thunderbird) and converts it into an LDIF file. You can import the LDIF file into Thunderbird. I wrote this to recover my old Thunderbird address book from an old computer that died. You can actually export the address book from Thunderbird into LDIF, but if Thunderbird won't run, you'll need this tool to get your data back.&lt;/p&gt;</description>
    </item>
    <item>
      <pubDate>Sun, 4 Nov 2007 11:15:20 GMT</pubDate>
      <title>richdawe @ 2007-11-04T10:23:00</title>
      <link>http://www.advogato.org/person/richdawe/diary.html?start=129</link>
      <guid>http://richdawe.livejournal.com/2194.html</guid>
      <description>&lt;p&gt;I saw on &lt;a href="http://blogs.sun.com/ahl/entry/dtrace_firefox_leopard" &gt;Adam Leventhal's blog&lt;/a&gt; that Apple ship a DTrace provider for Perl with Leopard:&lt;/p&gt;

&lt;p&gt;&lt;blockquote&gt;&amp;quot;Not only did Apple port DTrace, but they've also included a bunch of USDT providers. Perl, Python, Ruby -- they all ship in Leopard with built-in DTrace probes that allow developers to observe function calls, object allocation, and other points of interest from the perspective of that dynamic language.&amp;quot;&lt;/blockquote&gt;&lt;/p&gt;

&lt;p&gt;It's also mentioned on &lt;a href="http://www.apple.com/macosx/technology/unix.html" &gt;Unix Technology page for Leopard&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;I had a quick look to see if Apple had released any patches. I didn't find any -- at some point I should dig around their open source section, to see if it's included in that.&lt;/p&gt;

&lt;p&gt;I did find &lt;a href="http://bugs.opensolaris.org/bugdatabase/view_bug.do?bug_id=6355891" &gt;OpenSolaris Bug ID 6355891&lt;/a&gt; asking for Perl support to be added to DTrace.&lt;/p&gt;</description>
    </item>
    <item>
      <pubDate>Sun, 28 Oct 2007 19:11:58 GMT</pubDate>
      <title>Women in Tech/Biz</title>
      <link>http://www.advogato.org/person/richdawe/diary.html?start=128</link>
      <guid>http://richdawe.livejournal.com/1891.html</guid>
      <description>&lt;p&gt;I read a few interesting articles about women and tech/biz recently:&lt;/p&gt;

&lt;p&gt;&lt;ul&gt;
&lt;li&gt;&lt;a href="http://news.ycombinator.com/item?id=61006" &gt;&amp;quot;What I learned about women &amp; business today&amp;quot;&lt;/a&gt; at Y Combinator News&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The entire &lt;a href="http://www.oreillynet.com/womenintech/" &gt;&amp;quot;Women in Technology&amp;quot; series&lt;/a&gt; at O'Reilly, but specifically:&lt;/p&gt;
&lt;p&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://www.oreillynet.com/pub/a/womenintech/2007/09/17/women-who-risk-making-women-in-technology-visible.html" &gt;&amp;quot;Women Who Risk: Making Women in Technology Visible&amp;quot;&lt;/a&gt;;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.oreillynet.com/pub/a/womenintech/2007/09/28/to-sir-with-love-how-to-get-more-women-involved-in-open-source.html?page=last#thread" &gt;Comments in response to &amp;quot;To Sir, with Love: How To Get More Women Involved in Open Source&amp;quot;&lt;/a&gt; (I found the discussions involving the author much more interesting than the article);&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.oreillynet.com/pub/a/womenintech/2007/09/07/interview-with-danah-boyd.html" &gt;&amp;quot;Interview with danah boyd&amp;quot;&lt;/a&gt; (interesting bit about effects of a 3D environment on men vs. women).&lt;/li&gt;&lt;/p&gt;
&lt;/ul&gt;&lt;/p&gt;
&lt;/ul&gt;

&lt;p&gt;On an unrelated note, I found Judith Donath's talk at Google &lt;a href="http://video.google.com/videoplay?docid=3480148850517625338&amp;amp;q=type%3Agoogle+engEDU" &gt;&amp;quot;Signals, Truth and Design (with an emphasis on information and fashion)&amp;quot;&lt;/a&gt; interesting.&lt;/p&gt;</description>
    </item>
    <item>
      <pubDate>Sat, 8 Sep 2007 13:08:07 GMT</pubDate>
      <title>The War of Art</title>
      <link>http://www.advogato.org/person/richdawe/diary.html?start=127</link>
      <guid>http://richdawe.livejournal.com/1668.html</guid>
      <description>&lt;p&gt;I recently read &lt;a href="http://www.amazon.com/War-Art-Through-Creative-Battles/dp/0446691437/" &gt;The War of Art&lt;/a&gt; by &lt;a href="http://www.stevenpressfield.com/" &gt;Steven Pressfield&lt;/a&gt;. It's a book about overcoming creative blocks and other factors that prevent you from being creative, called Resistance.&lt;/p&gt;

&lt;p&gt;I found it to be an entertaining, quick read (~2 hours). I didn't actually find it as useful as I was expecting. I originally bought it to try to get past some blocks, but I overcame them naturally. In fact, at one point I was procrastinating so much that I thought about reading this book, rather than doing anything else -- and that spurred me to stop procrastinating and &lt;em&gt;just do something&lt;/em&gt;. One of the key ideas in the book is that by just starting something, you will overcome the blocks.&lt;/p&gt;

&lt;p&gt;At a few points the author talked about difficult parts of his life, which seemed to be key to him forming his idea of Resistance (in all its manifestations). I felt there wasn't quite enough detail at these points (and there isn't much more on his website). It would have been useful to understand his journey. That said, it didn't really detract from the presentation of the ideas.&lt;/p&gt;

&lt;p&gt;A lot of the ideas in this book are quite simple. But it's easy to lose track of them, when you are being distracted. And the book contains some good quotes. So I think I would turn to this book, if I were in the middle of a creative funk.&lt;/p&gt;</description>
    </item>
    <item>
      <pubDate>Sat, 1 Sep 2007 21:06:20 GMT</pubDate>
      <title>postfix config-o-rama</title>
      <link>http://www.advogato.org/person/richdawe/diary.html?start=126</link>
      <guid>http://richdawe.livejournal.com/1413.html</guid>
      <description>&lt;p&gt;I spent a lot of today finally setting up e-mail for my domain, &lt;a href="http://www.phekda.org/" &gt;phekda.org&lt;/a&gt;. My goals were:&lt;/p&gt;

&lt;p&gt;&lt;ul&gt;
&lt;li&gt;Set up an SMTP SUBMIT server (running on port 587), so that I can send mail from &lt;tt&gt;@phekda.org&lt;/tt&gt; addresses from anywhere.&lt;/li&gt;
&lt;li&gt;Require mail to be submitted over TLS.&lt;/li&gt;
&lt;li&gt;Authenticate the client by requiring that the client presents a certificate issued by my private certificate authority (CA). Since I'm only going to issue certificates to people/machines I trust, possession of a certificate is implicit authentication.&lt;/li&gt;
&lt;/ul&gt;&lt;/p&gt;

&lt;h4&gt;TinyCA&lt;/h4&gt;

&lt;p&gt;I used &lt;a href="http://tinyca.sm-zone.net/" &gt;TinyCA2&lt;/a&gt; to set up my own personal CA. It's really easy to use. I created a CA for phekda.org. I also created a "bad" CA for testing that my postfix box would only accept certificates issued for phekda.org.&lt;/p&gt;

&lt;p&gt;Here's what I generated in total:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;CA cert for phekda.org&lt;/li&gt;
&lt;li&gt;Server cert for mail.phekda.org, signed by CA phekda.org&lt;/li&gt;
&lt;li&gt;Client cert for my desktop machine, signed by CA phekda.org&lt;/li&gt;
&lt;li&gt;CA cert for bad.ca&lt;/li&gt;
&lt;li&gt;Client cert for my desktop machine, signed by CA bad.ca (for testing)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Tip:&lt;/strong&gt; You can generate password-free keys with TinyCA2. To do this you create the key as normal, specifying the password. When you export the key into a PEM file, you can choose to export without the password.&lt;/p&gt;

&lt;h4&gt;Server-side postfix configuration&lt;/h4&gt;

&lt;p&gt;My server is running postfix 2.3.8 on Debian 4.0. The server-side config was split into two halves: general TLS configuration in &lt;tt&gt;main.cf&lt;/tt&gt;, and the config to turn on an SMTP daemon on port 587 with TLS enabled.&lt;/p&gt;

&lt;p&gt;Here's the config I added to &lt;tt&gt;main.cf&lt;/tt&gt;:&lt;/p&gt;

&lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;smtpd_tls_req_ccert = yes
smtpd_tls_session_cache_database = sdbm:/etc/postfix/smtpd_scache

smtpd_tls_CAfile = /etc/postfix/CAcert.pem
smtpd_tls_cert_file = /etc/postfix/server-cert.pem
smtpd_tls_key_file = /etc/postfix/server-key.pem

# Log TLS info, in logs and headers.
smtpd_tls_loglevel = 2
smtpd_tls_receivedheader = yes&lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;

&lt;p&gt;Note that these entries in &lt;tt&gt;main.cf&lt;/tt&gt; don't actually enable TLS. &lt;tt&gt;smtpd_tls_req_ccert&lt;/tt&gt; requires SMTP clients to use STARTTLS, when TLS is enabled. The &lt;tt&gt;smtpd_tls_*file&lt;/tt&gt; entries set up everything that's needed on the server-side for TLS encryption. I turned on the last couple of options for debugging purposes.&lt;/p&gt;

&lt;p&gt;Here's the line I added to &lt;tt&gt;master.cf&lt;/tt&gt;, split over multiple lines for clarity. You won't need the backslashes, when you recombine them into one line.&lt;/p&gt;

&lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;587       inet  n       -       n       -       -       smtpd \
-o smtpd_enforce_tls=yes \
-o smtpd_tls_req_ccert=yes \
-o smtpd_recipient_restrictions= \
  permit_mynetworks, \
  permit_tls_all_clientcerts, \
  reject_unauth_destination&lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;

&lt;p&gt;&lt;tt&gt;smtpd_recipient_restrictions&lt;/tt&gt; allows clients with authenticated certificates to relay, in addition to local users. Although I'm not sure why a local user would relay through port 587.&lt;/p&gt;

&lt;h4&gt;Server-side testing&lt;/h4&gt;

&lt;p&gt;I tested this using OpenSSL's s_client, to set up a client SMTP session using the client certificates I generated with TinyCA2. You fire up &lt;tt&gt;openssl s_client&lt;/tt&gt; with appropriate options, then enter SMTP commands as normal, e.g.:&lt;/p&gt;

&lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;ehlo fred
mail from:&amp;lt;me@my.domain.example&amp;gt;
rcpt to:&amp;lt;someone@somewhere.else.example&amp;gt;
data
Subject: just a test

.&lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;

&lt;p&gt;You need to go all the way, to check that the message can actually be delivered.&lt;/p&gt;

&lt;ul&gt;

&lt;li&gt;&lt;p&gt;Connection should be accepted, because the client is using a certificate issued by the CA for phekda.org:&lt;br&gt;
&lt;pre&gt;openssl s_client -connect mail.phekda.org:587 -starttls smtp \
  -CAfile phekda.org-cacert.pem \
  -key katrina.phekda.gotadsl.co.uk-key.pem \
  -cert katrina.phekda.gotadsl.co.uk-cert.pem&lt;/pre&gt;&lt;/p&gt;&lt;/li&gt;

&lt;li&gt;&lt;p&gt;Connection should not be accepted, because the client is using a certificate not issued by the CA for phekda.org:&lt;br&gt;
&lt;pre&gt;openssl s_client -connect mail.phekda.org:587 -starttls smtp \
  -CAfile phekda.org-cacert.pem \
  -key mail.bad.ca-key.pem \
  -cert mail.bad.ca-cert.pem&lt;/pre&gt;&lt;br&gt;
And a slight variation:&lt;br&gt;
&lt;pre&gt;openssl s_client -connect mail.phekda.org:587 -starttls smtp \
  -CAfile bad.ca-cacert.pem \
  -key mail.bad.ca-key.pem \
  -cert mail.bad.ca-cert.pem&lt;/pre&gt;&lt;/p&gt;&lt;/li&gt;

&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Tip:&lt;/strong&gt; One thing to beware of is that &lt;a href="http://tumbleweed.org.za/2007/07/17/s_clients-r-feature/" &gt;OpenSSL will do a TLS renegotiation if you use "RCPT TO"&lt;/a&gt;, so use "rcpt to" instead.&lt;/p&gt;

&lt;h4&gt;Client-side postfix configuration&lt;/h4&gt;

&lt;p&gt;I have several e-mail accounts. I want to keep sending from my old domain &lt;tt&gt;@phekda.gotadsl.co.uk&lt;/tt&gt;, but I also want to be able to send from &lt;tt&gt;@phekda.org&lt;/tt&gt;. These messages would be sent via the same postfix server running on my desktop machine.&lt;/p&gt;

&lt;p&gt;Before making the changes, all my mail was smart-hosted through my ISP's mail server -- i.e.: all my mail went through my ISP's mail server. Afterwards, my &lt;tt&gt;@phekda.org&lt;/tt&gt; was routed over TLS to &lt;tt&gt;mail.phekda.org&lt;/tt&gt; on port 587, and the rest of the mail was smart-hosted.&lt;/p&gt;

&lt;p&gt;To achieve what I wanted, I set up sender-based routing (SBR). Normally mail is routed by recipient address -- SBR overrides the recipient-based routing. Configuring sender-based routing was the hardest part to achieve, because postfix's documentation of SBR and its &lt;tt&gt;&lt;a href="http://www.postfix.org/postconf.5.html#sender_dependent_relayhost_maps" &gt;sender_dependent_relayhost_maps&lt;/a&gt;&lt;/tt&gt; configuration format is a little, uh, &lt;a href="http://www.postfix.org/transport.5.html" &gt;brief&lt;/a&gt;. Fortunately the postfix source code is readable, and I figured it out from that.&lt;/p&gt;

&lt;p&gt;My desktop box is running postfix 2.4.3 on Fedora 7. The client-side postfix config is split into three parts: routing and TLS configuration in &lt;tt&gt;main.cf&lt;/tt&gt;; sender-based routing (SBR) map file, &lt;tt&gt;sender_dependent_relayhost&lt;/tt&gt;; TLS policy map file, &lt;tt&gt;smtp_tls_policy&lt;/tt&gt;.&lt;/p&gt;

&lt;p&gt;Firstly, here's the configuration in &lt;tt&gt;main.cf&lt;/tt&gt;:&lt;/p&gt;

&lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;# Smart-host via Nildram...
relayhost = [smtp.gotadsl.co.uk]

# ...except for certain senders, who we relay through other boxes.
sender_dependent_relayhost_maps = hash:/etc/postfix/sender_dependent_relayhost

# TLS configuration for sending mail to phekda.org
smtp_tls_CAfile = /etc/postfix/CAcert.pem
smtp_tls_cert_file = /etc/postfix/client-cert.pem
smtp_tls_key_file = /etc/postfix/client-key.pem

smtp_tls_loglevel = 1

smtp_tls_policy_maps = hash:/etc/postfix/smtp_tls_policy&lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;

&lt;p&gt;Here is &lt;tt&gt;/etc/postfix/sender_dependent_relayhost_maps&lt;/tt&gt;:&lt;/p&gt;

&lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;#
# Regenerate using:
#   postmap hash:sender_dependent_relayhost &amp;lt; sender_dependent_relayhost
#

# phekda.org sender should be submitted to mail.phekda.org.
@phekda.org	[mail.phekda.org]:587&lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;

&lt;p&gt;It wasn't clear how I could configure all &lt;tt&gt;phekda.org&lt;/tt&gt; subdomains to be routed in the same way. It looks like I would have to specify them all manually. Any domains not configured in this file are routed using the normal mechanisms, which in this case ends up being the smarthost specified by &lt;tt&gt;relayhost&lt;/tt&gt;.&lt;/p&gt;

&lt;p&gt;Here is &lt;tt&gt;/etc/postfix/smtp_tls_policy&lt;/tt&gt;:&lt;/p&gt;

&lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;#
# Regenerate using:
#   postmap hash:smtp_tls_policy &amp;lt; smtp_tls_policy
#

phekda.org	secure
[mail.phekda.org]:587	secure&lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;

&lt;p&gt;These configuration files need building into &lt;tt&gt;.db&lt;/tt&gt; files before postfix can use them -- this is done using &lt;tt&gt;postmap&lt;/tt&gt;. I wrote a simple Makefile to automate that.&lt;/p&gt;

&lt;h4&gt;Client-side testing&lt;/h4&gt;

&lt;p&gt;I tested sending to my gmail account using &lt;tt&gt;@phekda.gotadsl.co.uk&lt;/tt&gt; and &lt;tt&gt;@phekda.org&lt;/tt&gt; addresses. I did this using plain ol' telnet. From the postfix log in &lt;tt&gt;/var/log/maillog&lt;/tt&gt;, I could see where the messages were being routed to. E.g.:&lt;/p&gt;

&lt;p&gt;&lt;blockquote&gt;&lt;pre&gt;Sep  1 20:30:38 katrina postfix/smtp[27281]: 3225BD: to=&amp;lt;richdawe@gmail.com&amp;gt;,
relay=smtp.gotadsl.co.uk[195.112.4.54]:25, delay=8.6, delays=8.2/0.19/0.11/0.09,
dsn=2.0.0, status=sent (250 Ok: queued as 3501A2BAE63)

Sep  1 20:51:31 katrina postfix/smtp[27374]: 9E258D: to=&amp;lt;richdawe@gmail.com&amp;gt;,
relay=mail.phekda.org[80.68.89.241]:587, delay=25, delays=24/0.13/1.1/0.15,
dsn=2.0.0, status=sent (250 2.0.0 Ok: queued as 0E501803B)&lt;/pre&gt;&lt;/blockquote&gt;&lt;/p&gt;

&lt;p&gt;It was easy to see when the config was broken.&lt;/p&gt;</description>
    </item>
    <item>
      <pubDate>Fri, 20 Jul 2007 12:06:59 GMT</pubDate>
      <title>Perl and DTrace</title>
      <link>http://www.advogato.org/person/richdawe/diary.html?start=125</link>
      <guid>http://richdawe.livejournal.com/1090.html</guid>
      <description>I finally got DTrace working on Perl, as described in &lt;a href="http://blogs.sun.com/alanbur/entry/dtrace_and_perl" &gt;Alan Burlison's blog post on how to DTrace Perl&lt;/a&gt;. I have &lt;a href="http://rich.phekda.org/perl-dtrace/" &gt;a patch to add DTrace support to Perl&lt;/a&gt;, which includes some instructions and example scripts.&lt;br /&gt;&lt;br /&gt;I'm giving a talk on DTrace and Perl next Wednesday evening at &lt;a href="http://birmingham.pm.org/" &gt;Birmingham Perl Mongers&lt;/a&gt;.</description>
    </item>
  </channel>
</rss>
