X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fmodules%2Fsmtp%2Fserv_smtpclient.c;h=8e87ce4c2f4da626569a4842c602db51aaf7af51;hb=51b18018ff923284d76a36cbd421d62abf6afcf4;hp=e18fe563f0f955d0a2e9cc78de4c80c73e442811;hpb=ea55c1f82ea74c3837ad694c238f40744044aed7;p=citadel.git diff --git a/citadel/modules/smtp/serv_smtpclient.c b/citadel/modules/smtp/serv_smtpclient.c index e18fe563f..8e87ce4c2 100644 --- a/citadel/modules/smtp/serv_smtpclient.c +++ b/citadel/modules/smtp/serv_smtpclient.c @@ -399,7 +399,7 @@ void smtp_process_one_msg(long qmsgnum) { } if (should_try_now) { - syslog(LOG_DEBUG, "smtpclient: %ld attempting delivery now", qmsgnum); + syslog(LOG_DEBUG, "smtpclient: attempting delivery of message <%ld> now", qmsgnum); StrBuf *NewInstr = NewStrBuf(); StrBufAppendPrintf(NewInstr, "Content-type: " SPOOLMIME "\n\n"); StrBufAppendPrintf(NewInstr, "msgid|%ld\n", msgid); @@ -561,7 +561,7 @@ CTDL_MODULE_INIT(smtpclient) { if (!threading) { CtdlRegisterMessageHook(smtp_aftersave, EVT_AFTERSAVE); - CtdlRegisterSessionHook(smtp_do_queue, EVT_TIMER, PRIO_AGGR + 50); + CtdlRegisterSessionHook(smtp_do_queue, EVT_TIMER, PRIO_AGGR + 51); smtp_init_spoolout(); }