Skip to content

Commit f000e05

Browse files
author
paul
committed
merging git tree
git-svn-id: https://svn.ic-s.nl/svn/dbmail/trunk/dbmail@2484 7b491191-dbf0-0310-aff6-d879d4d69008
1 parent 3d4a459 commit f000e05

22 files changed

+420
-254
lines changed

ChangeLog

+42
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,45 @@
1+
2007-03-26 Paul J Stevens <[email protected]>
2+
3+
* imapcommands.c:
4+
fix fallout from imap args cleanup
5+
* misc.c:
6+
fix minor memleaks (ljackson)
7+
* dbmail-imapsession.c, misc.c, test-scripts/testimap.py:
8+
integrate and finish patches by AntonZ and LJackson
9+
10+
2007-03-25 Paul J Stevens <[email protected]>
11+
12+
* check_dbmail_imapd.c, dbmail-imapsession.c, dbmail-imapsession.h,
13+
imap4.c, imapcommands.c, misc.c:
14+
applied patch to fix argument parsing in imap (ljackson) (bug #546)
15+
* debug.c, debug.h:
16+
cleanup trace calls (closes #532)
17+
* db.c:
18+
small recent_flag fix
19+
* dbmail-imapsession.c, dsn.c, imapd.c, lmtpd.c, pop3d.c, timsieved.c:
20+
valgrind fixes (ljackson)
21+
22+
2007-03-24 Aaron Stone <[email protected]>
23+
24+
* serverparent.c, dbmailtypes.h, server.c:
25+
Fixes to SIGHUP handling (closes bug #546).
26+
* dbmail-message.c:
27+
Set the tmpfile not to use C library buffering.
28+
29+
2007-03-24 Paul J Stevens <[email protected]>
30+
31+
* db.c, dbmail-imapsession.c, dm_base64.c, modules/authsql.c:
32+
valgrind fixes
33+
* check_dbmail_imapd.c, misc.c:
34+
fix bug #551
35+
36+
2007-03-23 Aaron Stone <[email protected]>
37+
38+
* imapd.c, lmtpd.c, pop3d.c, timsieved.c:
39+
Accepted patch from Leif Jackson to formally initialize some variables.
40+
* misc.c, serverparent.c:
41+
Accepted patch from Leif Jackson to close some minor memory leaks.
42+
143
2007-03-23 Paul J Stevens <[email protected]>
244

345
* dbmail-imapsession.c, dbmail-imapsession.h, imap4.h:

check_dbmail_imapd.c

+17-6
Original file line numberDiff line numberDiff line change
@@ -124,13 +124,14 @@ END_TEST
124124

125125

126126
#define A(x,y) s=dbmail_imap_astring_as_string(x); \
127-
fail_unless(strcmp(y,s)==0,"dbmail_imap_astring_as_string failed"); \
127+
fail_unless(strcmp(y,s)==0,"dbmail_imap_astring_as_string failed [%s] != [%s]", s, y); \
128128
g_free(s)
129129
START_TEST(test_dbmail_imap_astring_as_string)
130130
{
131131
char *s;
132132
A("test","\"test\"");
133133
A("\"test\"","\"test\"");
134+
A("\"test\" \"test\"","{13}\r\n\"test\" \"test\"");
134135
A("\"test","{5}\r\n\"test");
135136
A("testÃ","{5}\r\ntestÃ");
136137
A("test\"","{5}\r\ntest\"");
@@ -326,7 +327,8 @@ START_TEST(test_imap_bodyfetch)
326327
fail_unless(0 == dbmail_imap_session_bodyfetch_get_last_octetcnt(s), "octetcnt init value incorrect");
327328
fail_unless(0 == dbmail_imap_session_bodyfetch_get_last_argstart(s), "argstart init value incorrect");
328329

329-
dbmail_imap_session_bodyfetch_set_argstart(s,23);
330+
s->args_idx = 23;
331+
dbmail_imap_session_bodyfetch_set_argstart(s);
330332
result = dbmail_imap_session_bodyfetch_get_last_argstart(s);
331333
fail_unless(result==23, "argstart incorrect");
332334

@@ -486,31 +488,40 @@ START_TEST(test_imap_get_envelope)
486488
{
487489
struct DbmailMessage *message;
488490
char *result, *expect;
491+
GString *s;
489492

490493
expect = g_new0(char, 1024);
491494

492495
/* text/plain */
493496
message = dbmail_message_new();
494-
message = dbmail_message_init_with_string(message, g_string_new(rfc822));
497+
s = g_string_new(rfc822);
498+
message = dbmail_message_init_with_string(message, s);
499+
g_string_free(s,TRUE);
495500
result = imap_get_envelope(GMIME_MESSAGE(message->content));
496501
strncpy(expect,"(\"Thu, 01 Jan 1970 00:00:00 +0000\" \"dbmail test message\" ((NIL NIL \"somewher\" \"foo.org\")) ((NIL NIL \"somewher\" \"foo.org\")) ((NIL NIL \"somewher\" \"foo.org\")) ((NIL NIL \"testuser\" \"foo.org\")) NIL NIL NIL NIL)",1024);
497502
fail_unless(strncasecmp(result,expect,1024)==0, "imap_get_envelope failed");
498503

499504
dbmail_message_free(message);
500505
g_free(result);
501506
result = NULL;
502-
g_free(expect);
503-
expect = NULL;
504507

505508
/* bare bones message */
506509
message = dbmail_message_new();
507-
message = dbmail_message_init_with_string(message, g_string_new(simple));
510+
s = g_string_new(simple);
511+
message = dbmail_message_init_with_string(message, s);
512+
g_string_free(s,TRUE);
508513
result = imap_get_envelope(GMIME_MESSAGE(message->content));
509514

515+
strncpy(expect,"(\"Thu, 01 Jan 1970 00:00:00 +0000\" \"dbmail test message\" NIL NIL NIL NIL NIL NIL NIL NIL)", 1024);
516+
fail_unless(strncasecmp(result,expect,1024)==0, "imap_get_envelope failed");
517+
510518
dbmail_message_free(message);
511519
g_free(result);
512520
result = NULL;
513521

522+
g_free(expect);
523+
expect = NULL;
524+
514525
}
515526
END_TEST
516527

db.c

+4-10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* $Id$ */
12
/*
23
Copyright (C) 1999-2004 IC & S [email protected]
34
Copyright (c) 2005-2006 NFG Net Facilities Group BV [email protected]
@@ -4083,12 +4084,10 @@ int db_get_msgflag(const char *flag_name, u64_t msg_idnr,
40834084
int db_set_msgflag(u64_t msg_idnr, u64_t mailbox_idnr, int *flags, int action_type)
40844085
{
40854086
size_t i;
4086-
size_t placed = 0;
40874087
size_t left;
40884088
char query[DEF_QUERYSIZE];
4089-
memset(query,0,DEF_QUERYSIZE);
4090-
40914089

4090+
memset(query,0,DEF_QUERYSIZE);
40924091
snprintf(query, DEF_QUERYSIZE, "UPDATE %smessages SET recent_flag=0,",DBPFX);
40934092

40944093
for (i = 0; i < IMAP_NFLAGS; i++) {
@@ -4104,15 +4103,13 @@ int db_set_msgflag(u64_t msg_idnr, u64_t mailbox_idnr, int *flags, int action_ty
41044103
strncat(query, db_flag_desc[i], left);
41054104
left = DEF_QUERYSIZE - strlen(query);
41064105
strncat(query, "=1,", left);
4107-
placed = 1;
41084106
}
41094107
break;
41104108
case IMAPFA_REMOVE:
41114109
if (flags[i] > 0) {
41124110
strncat(query, db_flag_desc[i], left);
41134111
left = DEF_QUERYSIZE - strlen(query);
41144112
strncat(query, "=0,", left);
4115-
placed = 1;
41164113
}
41174114
break;
41184115

@@ -4123,15 +4120,11 @@ int db_set_msgflag(u64_t msg_idnr, u64_t mailbox_idnr, int *flags, int action_ty
41234120
strncat(query, "=0,", left);
41244121
else
41254122
strncat(query, "=1,", left);
4126-
placed = 1;
41274123
break;
41284124
}
41294125
db_free_result();
41304126
}
41314127

4132-
if (!placed)
4133-
return DM_SUCCESS; /* nothing to update */
4134-
41354128
/* last character in string is comma, replace it --> strlen()-1 */
41364129
left = DEF_QUERYSIZE - strlen(query);
41374130
snprintf(&query[strlen(query) - 1], left,
@@ -4636,8 +4629,9 @@ int db_usermap_resolve(clientinfo_t *ci, const char *username, char *real_userna
46364629
int result;
46374630
int score, bestscore = -1;
46384631
char query[DEF_QUERYSIZE];
4639-
memset(query,0,DEF_QUERYSIZE);
46404632

4633+
memset(query,0,DEF_QUERYSIZE);
4634+
memset(clientsock,0,DM_SOCKADDR_LEN);
46414635

46424636
TRACE(TRACE_DEBUG,"checking userid [%s] in usermap", username);
46434637

0 commit comments

Comments
 (0)