On Tue, Sep 21, 2010 at 07:05:11PM +0200, Matthias Pfützner wrote: > It's quite easy to compile it yourself. > > Besides that: I did open that RFE some time ago, and it had been > excepted and executed upon, if I remember correctly. So, in any newer > OpenSolaris or Solaris 11 Express version, that sasl support should be > in, afaik... But: I don't know, which version/build will contain that > support...
It appears the mutt in pkg:/mail/mutt supports SASL. As to compiling mutt, first follow the instructions on http://dev.mutt.org/trac/ to clone the Mercurial repo. I did that then I run a configure wrapper which basically looks like: MUTT_OPTIONS="--with-curses=/usr/gnu" # don't include lib part of path MUTT_OPTIONS="$MUTT_OPTIONS --with-libiconv-prefix=/usr/lib/iconv" MUTT_OPTIONS="$MUTT_OPTIONS --enable-imap" MUTT_OPTIONS="$MUTT_OPTIONS --enable-mailtool" MUTT_OPTIONS="$MUTT_OPTIONS --enable-smtp" MUTT_OPTIONS="$MUTT_OPTIONS --with-ssl=/usr/lib" MUTT_OPTIONS="$MUTT_OPTIONS --with-sasl=/usr" # these last three affect where mutt is installed MUTT_OPTIONS="$MUTT_OPTIONS --prefix=$HOME/app_support" MUTT_OPTIONS="$MUTT_OPTIONS --bindir=$HOME/bin/$(uname -p)" MUTT_OPTIONS="$MUTT_OPTIONS --sbindir=$HOME/bin/$(uname -p)" # needed with iconv support (I think) export CFLAGS="$CFLAGS -I/usr/include/idn" ./configure $MUTT_OPTIONS ############################################################ Then I run "gmake -j 12" and "gmake install". Note that you'll need to make sure you have whatever OpenSolaris packages installed prior to running configure if you want mutt to support that feature (like SSL). I've done this with a current version of mutt and all went well (I'm using it to compose/send this email). -- Will Fiveash Oracle http://opensolaris.org/os/project/kerberos/ Sent using mutt, a sweet text based e-mail app: http://www.mutt.org/ _______________________________________________ opensolaris-discuss mailing list opensolaris-discuss@opensolaris.org