freebsd-ports/mail/dbmail21/files/patch-2.1.7_002
Edwin Groothuis f45d770362 New port: mail/dbmail21 -current branch of DBMail
Dbmail is the name of a group of programs that enable the possiblilty
	of storing and retrieving mail messages from a database (currently
	MySQL, PostgreSQL or SQLite).

	What are the advantages?

	    * Scalability.
	      Dbmail is as scalable as the database that is used for the
	      mail storage.
	    * Manageability.
	      Dbmail is based upon a database. Dbmail can be managed by
	      changing settings in the database (f.e. using PHP/Perl/SQL).
	    * Speed.
	      Dbmail uses very efficient, database specific queries for
	      retrieving mail information. This is much faster then parsing
	      a filesystem.
	    * Security.
	      Dbmail has got nothing to do with the filesystem or interaction
	      with other programs in the Unix environment which need special
	      permissions.  Dbmail is as secure as the database it's based
	      upon.
	    * Flexibility.
	      Changes on a Dbmail system (adding of users, changing passwords
	      etc.) are effective immediately.

	WWW: http://www.dbmail.org/

PR:		ports/101356
Submitted by:	Mark Starovoytov <mark_sf@kikg.ifmo.ru>
2006-08-05 22:35:33 +00:00

28 lines
752 B
Text

Index: db.c
===================================================================
--- db.c (revision 2212)
+++ db.c (revision 2213)
@@ -2885,6 +2885,9 @@
*mailboxes = g_list_reverse(*mailboxes);
*errmsg = "Everything is peachy keen";
+ g_strfreev(chunks);
+ dm_free(cpy);
+
return DM_SUCCESS;
equery:
Index: ChangeLog
===================================================================
--- ChangeLog (revision 2212)
+++ ChangeLog (revision 2213)
@@ -3,6 +3,9 @@
* modules/sortsieve.c:
Accepted patch from maenaka (closes bug #383) to clear the IMAP flags
if none are given by the Sieve script.
+ * db.c:
+ Accepted patch from Leif Jackson to close a memory leak in
+ db_imap_split_mailbox.
2006-07-25 Paul J Stevens <paul@nfg.nl>