From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-2.9 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, URIBL_BLOCKED shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: meta@public-inbox.org Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id C83151F4E2; Thu, 3 Mar 2016 03:45:42 +0000 (UTC) Date: Thu, 3 Mar 2016 03:45:42 +0000 From: Eric Wong To: meta@public-inbox.org Subject: [ANNOUNCE] ssoma 0.2.0 - a bunch of updates Message-ID: <20160303034542.GA4696@dcvr.yhbt.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline List-Id: Most notably, this release fixes a potential bug where a ssoma repository could be confused by MIME encoding in Message-ID headers. While I have not seen any Message-ID with MIME encoding; this is a potential attack vector to confuse message identification between different implementations of ssoma. There's also a bunch of minor improvements since 0.1.0 which was released nearly 2 years ago: 26 changes since 0.1.0: ssoma: cleanup IMAP password warnings doc: remove HTML cleanup whitespace stripping disable case-insensitive option parsing Documentation/txt2pre: support #fragments and ftp:// doc: generate README.html instead of index.html set author info on git commits Ssoma::Git: hoist out ensure_sha1 function ssoma-mda: Use the email subject as the commit message INSTALL: add missing reference to IPC::Run .gitignore: relax MYMETA pattern ssoma_repository: document header usage/removal mda: strip out the Bytes header, too ssoma-rm: do not commit changes on auto-removal miss README: add OpenSSL exception use Perl POD instead of pandoc-flavored Markdown doc: fix links to AGPL-3.0+ documentation doc: use links for our public email address documentation build fixes t/*.t: quiet down "git init" t/: try to ensure test output is stable t/*: use identifiable tempdir names copyright updates for 2016 use Email::MIME::Header::header_raw to read Message-ID move scripts to script/ directory build: make syntax check target --- INSTALL | 2 +- Makefile.PL | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALL b/INSTALL index d907ea3..72affff 100644 --- a/INSTALL +++ b/INSTALL @@ -12,7 +12,7 @@ downloading ssoma is available via git and tarballs. The latest tarball release is available here: - http://ssoma.public-inbox.org/files/ssoma-0.1.0.tar.gz + http://ssoma.public-inbox.org/files/ssoma-0.2.0.tar.gz You may also clone using git: diff --git a/Makefile.PL b/Makefile.PL index 2a7a6e7..bbf784d 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -12,7 +12,7 @@ $PM_FILES =~ tr/\n/ /; WriteMakefile( NAME => 'ssoma', - VERSION => '0.1.0', + VERSION => '0.2.0', AUTHOR => 'Eric Wong ', ABSTRACT => 'some sort of mail archiver', EXE_FILES => \@EXE_FILES, -- EW