f45d770362
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>
22 lines
615 B
Text
22 lines
615 B
Text
Index: modules/sortsieve.c
|
|
===================================================================
|
|
--- modules/sortsieve.c (revision 2218)
|
|
+++ modules/sortsieve.c (revision 2219)
|
|
@@ -200,7 +200,7 @@
|
|
/* If there were any imapflags, set them. */
|
|
if (flags) {
|
|
int i, j;
|
|
- msgflags = g_new0(int, IMAP_NFLASGS);
|
|
+ msgflags = g_new0(int, IMAP_NFLAGS);
|
|
|
|
for (i = 0; flags[i]; i++) { // Loop through all script/user-specified flags.
|
|
for (j = 0; imap_flag_desc[j]; i++) { // Find the ones we support.
|
|
@@ -223,7 +223,7 @@
|
|
}
|
|
|
|
if (msgflags)
|
|
- g_free(msgflasgs);
|
|
+ g_free(msgflags);
|
|
|
|
return SIEVE2_OK;
|
|
}
|