[Dbmail-dev] announce: Dbmail 2.1.4 released

2006-03-02 Thread Paul J Stevens
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


We're happy to announce the release of dbmail-2.1.4, the final major
milestone on the road to 2.2.0.

With this release we've completed all targets with respect to new
features. All further work on the 2.1.x codebase will be aimed making
2.2.0 the best production release of dbmail to date. Bugs need to be
fixed and documentation needs to be updated or added. All our beta
testers are kindly invited to help us find and flush out any remaining
problems.

The most noteworthy changes since 2.1.3 are:

* Dbmail now fully supports SORT
* Sieve support is now operational. While not complete yet, it
should be usable for most cases
* Drivers for storage and authentication are now loadable modules


- --
  
  Paul Stevens  paul at nfg.nl
  NET FACILITIES GROUP GPG/PGP: 1024D/11F8CD31
  The Netherlandshttp://www.nfg.nl
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFEBw9h8iITvBH4zTERAmXhAKDcyX8/DBin7ck4V9004VGI6UtmLACeM57L
x8Qcex85G5NgMjYIgUuwg20=
=W5nP
-END PGP SIGNATURE-


[Dbmail-dev] Upgrading from 2.0 to 2.1: issues

2006-03-02 Thread Matthew Sayler
Hello,

I thought I'd list the issues I'd hit so far upgrading to 2.1.4 from
2.0.9:

BUILD
-

Need Glib 2.0
Need GMIME 2.1 (not 2.0 as claimed by autoconf)

CONFIG
--

driver and authdriver are required in dbmail.conf

SCHEMA
--

??? Missing headers, even after I ran the add_header_tables.mysql
script.  Do I need to populate this, and if so how?


[Dbmail-dev] Re: Upgrading from 2.0 to 2.1: issues

2006-03-02 Thread Matthew Sayler

On Thu, Mar 02, 2006 at 02:14:10PM -0600, Matthew Sayler wrote:
 SCHEMA
 --
 
 ??? Missing headers, even after I ran the add_header_tables.mysql
 script.  Do I need to populate this, and if so how?

dbmail-util -by

I searched the ML for about 20 minutes looking for this before I sent
the message then found it randomly about 2 minutes after I'd sent it.

:/

Matt


Re: [Dbmail-dev] Upgrading from 2.0 to 2.1: issues

2006-03-02 Thread Paul J Stevens
Matthew Sayler wrote:
 Hello,
 
 I thought I'd list the issues I'd hit so far upgrading to 2.1.4 from
 2.0.9:
 
 BUILD
 -
 
 Need Glib 2.0
 Need GMIME 2.1 (not 2.0 as claimed by autoconf)
 
 CONFIG
 --
 
 driver and authdriver are required in dbmail.conf
 
 SCHEMA
 --
 
 ??? Missing headers, even after I ran the add_header_tables.mysql
 script.  Do I need to populate this, and if so how?

dbmail-util -by



-- 
  
  Paul Stevens  paul at nfg.nl
  NET FACILITIES GROUP GPG/PGP: 1024D/11F8CD31
  The Netherlandshttp://www.nfg.nl


Re: [Dbmail-dev] Re: Upgrading from 2.0 to 2.1: issues

2006-03-02 Thread Aaron Stone
Let's start a page on the wiki!
http://www.dbmail.org/dokuwiki/doku.php?id=upgrading_to_2.1

Aaron

On Thu, 2006-03-02 at 14:18 -0600, Matthew Sayler wrote:
 On Thu, Mar 02, 2006 at 02:14:10PM -0600, Matthew Sayler wrote:
  SCHEMA
  --
  
  ??? Missing headers, even after I ran the add_header_tables.mysql
  script.  Do I need to populate this, and if so how?
 
 dbmail-util -by
 
 I searched the ML for about 20 minutes looking for this before I sent
 the message then found it randomly about 2 minutes after I'd sent it.
 
 :/
 
 Matt
 ___
 Dbmail-dev mailing list
 Dbmail-dev@dbmail.org
 http://twister.fastxs.net/mailman/listinfo/dbmail-dev



[Dbmail-dev] 2.1.4: lmtpd

2006-03-02 Thread Oleg Lapshin

Hello.

I downloaded an run dbmail-2.1.4
and what I get (with TRACE_STDERR=5 in config):

$ dbmail-lmtpd -n
dbmysql.c,db_query: executing query [SELECT 1=1 FROM dbmail_physmessage LIMIT 
1 OFFSET 0]
dbmysql.c,db_query: executing query [SELECT 1=1 FROM dbmail_headervalue LIMIT 
1 OFFSET 0]
serverchild.c,manage_start_cli_server: client info init complete, calling 
client handler
220 fox DBMail LMTP service ready to rock
mail from: [EMAIL PROTECTED]
lmtp(): incoming buffer: [mail from: [EMAIL PROTECTED]]
lmtp(): command issued :cmd [mail], value [from: [EMAIL PROTECTED]]

lmtp(): command looked up as commandtype 4
misc.c, find_bounded: Found [EMAIL PROTECTED] of length [13] between '' and 
'' 
so next skip [20]
250 Sender [EMAIL PROTECTED] OK
*** glibc detected *** double free or corruption (fasttop): 0x08067660 ***
Aborted

valgrind log in attach

-- 
Oleg Lapshin


dbmail-2.1.4-valgrind.log.gz
Description: GNU Zip compressed data


Re: [Dbmail-dev] 2.1.4: lmtpd

2006-03-02 Thread Oleg Lapshin
 250 Sender [EMAIL PROTECTED] OK
 *** glibc detected *** double free or corruption (fasttop): 0x08067660 ***
 Aborted

Removing line 479 from lmtp.c:

if (goodtogo) {
/* Sure fine go ahead. */
dm_list_nodeadd(from, tmpaddr, 
strlen(tmpaddr)+1);
-   dm_free(tmpaddr);
ci_write((FILE *) stream,
250 Sender %s OK\r\n,
(char *)
(dm_list_getstart(from)-data));

solve the problem
Don't know, correct this or no
May be dm_free(tmpaddr); must be in other line?

-- 
Oleg Lapshin



Re: [Dbmail-dev] 2.1.4: lmtpd

2006-03-02 Thread Aaron Stone
Crap. The dm_free(tmpaddr) on line 479 got put back in!

Aaron

On Fri, 2006-03-03 at 00:31 +0300, Oleg Lapshin wrote:
 Hello.
 
 I downloaded an run dbmail-2.1.4
 and what I get (with TRACE_STDERR=5 in config):
 
 $ dbmail-lmtpd -n
 dbmysql.c,db_query: executing query [SELECT 1=1 FROM dbmail_physmessage LIMIT 
 1 OFFSET 0]
 dbmysql.c,db_query: executing query [SELECT 1=1 FROM dbmail_headervalue LIMIT 
 1 OFFSET 0]
 serverchild.c,manage_start_cli_server: client info init complete, calling 
 client handler
 220 fox DBMail LMTP service ready to rock
 mail from: [EMAIL PROTECTED]
 lmtp(): incoming buffer: [mail from: [EMAIL PROTECTED]]
 lmtp(): command issued :cmd [mail], value [from: [EMAIL PROTECTED]]
 
 lmtp(): command looked up as commandtype 4
 misc.c, find_bounded: Found [EMAIL PROTECTED] of length [13] between '' and 
 '' 
 so next skip [20]
 250 Sender [EMAIL PROTECTED] OK
 *** glibc detected *** double free or corruption (fasttop): 0x08067660 ***
 Aborted
 
 valgrind log in attach
 
 ___
 Dbmail-dev mailing list
 Dbmail-dev@dbmail.org
 http://twister.fastxs.net/mailman/listinfo/dbmail-dev