b56f40301d4e826c1774ba58a667356b877b0e49
[citadel.git] / citadel / modules / smtp / serv_smtpqueue.c
1 /*
2  * This module is an SMTP and ESMTP implementation for the Citadel system.
3  * It is compliant with all of the following:
4  *
5  * RFC  821 - Simple Mail Transfer Protocol
6  * RFC  876 - Survey of SMTP Implementations
7  * RFC 1047 - Duplicate messages and SMTP
8  * RFC 1652 - 8 bit MIME
9  * RFC 1869 - Extended Simple Mail Transfer Protocol
10  * RFC 1870 - SMTP Service Extension for Message Size Declaration
11  * RFC 2033 - Local Mail Transfer Protocol
12  * RFC 2197 - SMTP Service Extension for Command Pipelining
13  * RFC 2476 - Message Submission
14  * RFC 2487 - SMTP Service Extension for Secure SMTP over TLS
15  * RFC 2554 - SMTP Service Extension for Authentication
16  * RFC 2821 - Simple Mail Transfer Protocol
17  * RFC 2822 - Internet Message Format
18  * RFC 2920 - SMTP Service Extension for Command Pipelining
19  *  
20  * The VRFY and EXPN commands have been removed from this implementation
21  * because nobody uses these commands anymore, except for spammers.
22  *
23  * Copyright (c) 1998-2012 by the citadel.org team
24  *
25  *  This program is open source software; you can redistribute it and/or modify
26  *  it under the terms of the GNU General Public License version 3.
27  *  
28  *  
29  *
30  *  This program is distributed in the hope that it will be useful,
31  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
32  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
33  *  GNU General Public License for more details.
34  *
35  *  
36  *  
37  *  
38  */
39
40 #include "sysdep.h"
41 #include <stdlib.h>
42 #include <unistd.h>
43 #include <stdio.h>
44 #include <termios.h>
45 #include <fcntl.h>
46 #include <signal.h>
47 #include <pwd.h>
48 #include <errno.h>
49 #include <sys/types.h>
50 #include <syslog.h>
51
52 #if TIME_WITH_SYS_TIME
53 # include <sys/time.h>
54 # include <time.h>
55 #else
56 # if HAVE_SYS_TIME_H
57 #  include <sys/time.h>
58 # else
59 #  include <time.h>
60 # endif
61 #endif
62 #include <sys/wait.h>
63 #include <ctype.h>
64 #include <string.h>
65 #include <limits.h>
66 #include <sys/socket.h>
67 #include <netinet/in.h>
68 #include <arpa/inet.h>
69 #include <libcitadel.h>
70 #include "citadel.h"
71 #include "server.h"
72 #include "citserver.h"
73 #include "support.h"
74 #include "config.h"
75 #include "control.h"
76 #include "user_ops.h"
77 #include "database.h"
78 #include "msgbase.h"
79 #include "internet_addressing.h"
80 #include "genstamp.h"
81 #include "domain.h"
82 #include "clientsocket.h"
83 #include "locate_host.h"
84 #include "citadel_dirs.h"
85
86 #include "ctdl_module.h"
87
88 #include "smtpqueue.h"
89 #include "smtp_clienthandlers.h"
90 #include "event_client.h"
91
92
93 struct CitContext smtp_queue_CC;
94 pthread_mutex_t ActiveQItemsLock;
95 HashList *ActiveQItems  = NULL;
96 HashList *QItemHandlers = NULL;
97 const unsigned short DefaultMXPort = 25;
98 int max_sessions_for_outbound_smtp = 500; /* how many sessions might be active till we stop adding more smtp jobs */
99 int ndelay_count = 50; /* every n queued messages we will sleep... */
100 int delay_msec = 5000; /* this many seconds. */
101
102 static const long MaxRetry = SMTP_RETRY_INTERVAL * 2 * 2 * 2 * 2 * 2 * 2 * 2 * 2 * 2 * 2 * 2 * 2 * 2 * 2;
103 int MsgCount            = 0;
104 int run_queue_now       = 0;    /* Set to 1 to ignore SMTP send retry times */
105
106 void RegisterQItemHandler(const char *Key, long Len, QItemHandler H)
107 {
108         QItemHandlerStruct *HS = (QItemHandlerStruct*)malloc(sizeof(QItemHandlerStruct));
109         HS->H = H;
110         Put(QItemHandlers, Key, Len, HS, NULL);
111 }
112
113
114
115 void smtp_try_one_queue_entry(OneQueItem *MyQItem,
116                               MailQEntry *MyQEntry,
117                               StrBuf *MsgText,
118 /* KeepMsgText allows us to use MsgText as ours. */
119                               int KeepMsgText,
120                               int MsgCount,
121                               ParsedURL *RelayUrls);
122
123
124 void smtp_evq_cleanup(void)
125 {
126
127         pthread_mutex_lock(&ActiveQItemsLock);
128         DeleteHash(&QItemHandlers);
129         DeleteHash(&ActiveQItems);
130         pthread_mutex_unlock(&ActiveQItemsLock);
131         pthread_setspecific(MyConKey, (void *)&smtp_queue_CC);
132 /*      citthread_mutex_destroy(&ActiveQItemsLock); TODO */
133 }
134
135 int DecreaseQReference(OneQueItem *MyQItem)
136 {
137         int IDestructQueItem;
138
139         pthread_mutex_lock(&ActiveQItemsLock);
140         MyQItem->ActiveDeliveries--;
141         IDestructQueItem = MyQItem->ActiveDeliveries == 0;
142         pthread_mutex_unlock(&ActiveQItemsLock);
143         return IDestructQueItem;
144 }
145
146 void DecreaseShutdownDeliveries(OneQueItem *MyQItem)
147 {
148         pthread_mutex_lock(&ActiveQItemsLock);
149         MyQItem->NotYetShutdownDeliveries--;
150         pthread_mutex_unlock(&ActiveQItemsLock);
151 }
152
153 int GetShutdownDeliveries(OneQueItem *MyQItem)
154 {
155         int DestructNow;
156
157         pthread_mutex_lock(&ActiveQItemsLock);
158         DestructNow = MyQItem->ActiveDeliveries == 0;
159         pthread_mutex_unlock(&ActiveQItemsLock);
160         return DestructNow;
161 }
162 void RemoveQItem(OneQueItem *MyQItem)
163 {
164         long len;
165         const char* Key;
166         void *VData;
167         HashPos  *It;
168
169         pthread_mutex_lock(&ActiveQItemsLock);
170         It = GetNewHashPos(ActiveQItems, 0);
171         if (GetHashPosFromKey(ActiveQItems, LKEY(MyQItem->MessageID), It))
172                 DeleteEntryFromHash(ActiveQItems, It);
173         else
174         {
175                 SMTPC_syslog(LOG_WARNING,
176                              "unable to find QItem with ID[%ld]",
177                              MyQItem->MessageID);
178                 while (GetNextHashPos(ActiveQItems, It, &len, &Key, &VData))
179                         SMTPC_syslog(LOG_WARNING,
180                                      "have_: ID[%ld]",
181                                      ((OneQueItem *)VData)->MessageID);
182         }
183         pthread_mutex_unlock(&ActiveQItemsLock);
184         DeleteHashPos(&It);
185 }
186
187
188 void FreeMailQEntry(void *qv)
189 {
190         MailQEntry *Q = qv;
191 /*
192         SMTPC_syslog(LOG_DEBUG, "---------------%s--------------", __FUNCTION__);
193         cit_backtrace();
194 */
195         FreeStrBuf(&Q->Recipient);
196         FreeStrBuf(&Q->StatusMessage);
197
198         memset(Q, 0, sizeof(MailQEntry));
199         free(Q);
200 }
201 void FreeQueItem(OneQueItem **Item)
202 {
203 /*
204         SMTPC_syslog(LOG_DEBUG, "---------------%s--------------", __FUNCTION__);
205         cit_backtrace();
206 */
207         DeleteHash(&(*Item)->MailQEntries);
208         FreeStrBuf(&(*Item)->EnvelopeFrom);
209         FreeStrBuf(&(*Item)->BounceTo);
210         FreeStrBuf(&(*Item)->SenderRoom);
211         FreeURL(&(*Item)->URL);
212         memset(*Item, 0, sizeof(OneQueItem));
213         free(*Item);
214         Item = NULL;
215 }
216 void HFreeQueItem(void *Item)
217 {
218         FreeQueItem((OneQueItem**)&Item);
219 }
220
221 /* inspect recipients with a status of:
222  * - 0 (no delivery yet attempted)
223  * - 3/4 (transient errors
224  *        were experienced and it's time to try again)
225  */
226 int CheckQEntryActive(MailQEntry *ThisItem)
227 {
228         if ((ThisItem->Status == 0) ||
229             (ThisItem->Status == 3) ||
230             (ThisItem->Status == 4))
231         {
232                 return 1;
233         }
234         else
235                 return 0;
236 }
237 int CheckQEntryIsBounce(MailQEntry *ThisItem)
238 {
239         if ((ThisItem->Status == 3) ||
240             (ThisItem->Status == 4) ||
241             (ThisItem->Status == 5))
242         {
243                 return 1;
244         }
245         else
246                 return 0;
247 }       
248
249 int CountActiveQueueEntries(OneQueItem *MyQItem, int before)
250 {
251         HashPos  *It;
252         long len;
253         long ActiveDeliveries;
254         const char *Key;
255         void *vQE;
256
257         ActiveDeliveries = 0;
258         It = GetNewHashPos(MyQItem->MailQEntries, 0);
259         while (GetNextHashPos(MyQItem->MailQEntries, It, &len, &Key, &vQE))
260         {
261                 int Active;
262                 MailQEntry *ThisItem = vQE;
263
264                 if (CheckQEntryActive(ThisItem))
265                 {
266                         ActiveDeliveries++;
267                         Active = 1;
268                 }
269                 else
270                         Active = 0;
271                 if (before)
272                         ThisItem->Active = Active;
273                 else
274                         ThisItem->StillActive = Active;
275         }
276         DeleteHashPos(&It);
277         return ActiveDeliveries;
278 }
279
280 OneQueItem *DeserializeQueueItem(StrBuf *RawQItem, long QueMsgID)
281 {
282         OneQueItem *Item;
283         const char *pLine = NULL;
284         StrBuf *Line;
285         StrBuf *Token;
286         void *v;
287
288         Item = (OneQueItem*)malloc(sizeof(OneQueItem));
289         memset(Item, 0, sizeof(OneQueItem));
290         Item->Retry = SMTP_RETRY_INTERVAL;
291         Item->MessageID = -1;
292         Item->QueMsgID = QueMsgID;
293
294         Token = NewStrBuf();
295         Line = NewStrBufPlain(NULL, 128);
296         while (pLine != StrBufNOTNULL) {
297                 const char *pItemPart = NULL;
298                 void *vHandler;
299
300                 StrBufExtract_NextToken(Line, RawQItem, &pLine, '\n');
301                 if (StrLength(Line) == 0) continue;
302                 StrBufExtract_NextToken(Token, Line, &pItemPart, '|');
303                 if (GetHash(QItemHandlers, SKEY(Token), &vHandler))
304                 {
305                         QItemHandlerStruct *HS;
306                         HS = (QItemHandlerStruct*) vHandler;
307                         HS->H(Item, Line, &pItemPart);
308                 }
309         }
310         FreeStrBuf(&Line);
311         FreeStrBuf(&Token);
312
313         if (Item->Retry >= MaxRetry)
314                 Item->FailNow = 1;
315
316         pthread_mutex_lock(&ActiveQItemsLock);
317         if (GetHash(ActiveQItems,
318                     LKEY(Item->MessageID),
319                     &v))
320         {
321                 /* WHOOPS. somebody else is already working on this. */
322                 pthread_mutex_unlock(&ActiveQItemsLock);
323                 FreeQueItem(&Item);
324                 return NULL;
325         }
326         else {
327                 /* mark our claim on this. */
328                 Put(ActiveQItems,
329                     LKEY(Item->MessageID),
330                     Item,
331                     HFreeQueItem);
332                 pthread_mutex_unlock(&ActiveQItemsLock);
333         }
334
335         return Item;
336 }
337
338 StrBuf *SerializeQueueItem(OneQueItem *MyQItem)
339 {
340         StrBuf *QMessage;
341         HashPos  *It;
342         const char *Key;
343         long len;
344         void *vQE;
345
346         QMessage = NewStrBufPlain(NULL, SIZ);
347         StrBufPrintf(QMessage, "Content-type: %s\n", SPOOLMIME);
348 //      "attempted|%ld\n"  "retry|%ld\n",, (long)time(NULL), (long)retry );
349         StrBufAppendBufPlain(QMessage, HKEY("\nmsgid|"), 0);
350         StrBufAppendPrintf(QMessage, "%ld", MyQItem->MessageID);
351
352         StrBufAppendBufPlain(QMessage, HKEY("\nsubmitted|"), 0);
353         StrBufAppendPrintf(QMessage, "%ld", MyQItem->Submitted);
354
355         if (StrLength(MyQItem->BounceTo) > 0) {
356                 StrBufAppendBufPlain(QMessage, HKEY("\nbounceto|"), 0);
357                 StrBufAppendBuf(QMessage, MyQItem->BounceTo, 0);
358         }
359
360         if (StrLength(MyQItem->EnvelopeFrom) > 0) {
361                 StrBufAppendBufPlain(QMessage, HKEY("\nenvelope_from|"), 0);
362                 StrBufAppendBuf(QMessage, MyQItem->EnvelopeFrom, 0);
363         }
364
365         if (StrLength(MyQItem->SenderRoom) > 0) {
366                 StrBufAppendBufPlain(QMessage, HKEY("\nsource_room|"), 0);
367                 StrBufAppendBuf(QMessage, MyQItem->SenderRoom, 0);
368         }
369
370         StrBufAppendBufPlain(QMessage, HKEY("\nretry|"), 0);
371         StrBufAppendPrintf(QMessage, "%ld",
372                            MyQItem->Retry);
373
374         StrBufAppendBufPlain(QMessage, HKEY("\nattempted|"), 0);
375         StrBufAppendPrintf(QMessage, "%ld",
376                            time(NULL) /*ctdl_ev_now()*/ + MyQItem->Retry);
377
378         It = GetNewHashPos(MyQItem->MailQEntries, 0);
379         while (GetNextHashPos(MyQItem->MailQEntries, It, &len, &Key, &vQE))
380         {
381                 MailQEntry *ThisItem = vQE;
382
383                 StrBufAppendBufPlain(QMessage, HKEY("\nremote|"), 0);
384                 StrBufAppendBuf(QMessage, ThisItem->Recipient, 0);
385                 StrBufAppendBufPlain(QMessage, HKEY("|"), 0);
386                 StrBufAppendPrintf(QMessage, "%d", ThisItem->Status);
387                 StrBufAppendBufPlain(QMessage, HKEY("|"), 0);
388                 StrBufAppendBuf(QMessage, ThisItem->StatusMessage, 0);
389         }
390         DeleteHashPos(&It);
391         StrBufAppendBufPlain(QMessage, HKEY("\n"), 0);
392         return QMessage;
393 }
394
395
396
397
398
399 void NewMailQEntry(OneQueItem *Item)
400 {
401         Item->Current = (MailQEntry*) malloc(sizeof(MailQEntry));
402         memset(Item->Current, 0, sizeof(MailQEntry));
403
404         if (Item->MailQEntries == NULL)
405                 Item->MailQEntries = NewHash(1, Flathash);
406         /* alocate big buffer so we won't get problems reallocating later. */
407         Item->Current->StatusMessage = NewStrBufPlain(NULL, SIZ);
408         Item->Current->n = GetCount(Item->MailQEntries);
409         Put(Item->MailQEntries,
410             IKEY(Item->Current->n),
411             Item->Current,
412             FreeMailQEntry);
413 }
414
415 void QItem_Handle_MsgID(OneQueItem *Item, StrBuf *Line, const char **Pos)
416 {
417         Item->MessageID = StrBufExtractNext_long(Line, Pos, '|');
418 }
419
420 void QItem_Handle_EnvelopeFrom(OneQueItem *Item, StrBuf *Line, const char **Pos)
421 {
422         if (Item->EnvelopeFrom == NULL)
423                 Item->EnvelopeFrom = NewStrBufPlain(NULL, StrLength(Line));
424         StrBufExtract_NextToken(Item->EnvelopeFrom, Line, Pos, '|');
425 }
426
427 void QItem_Handle_BounceTo(OneQueItem *Item, StrBuf *Line, const char **Pos)
428 {
429         if (Item->BounceTo == NULL)
430                 Item->BounceTo = NewStrBufPlain(NULL, StrLength(Line));
431         StrBufExtract_NextToken(Item->BounceTo, Line, Pos, '|');
432 }
433
434 void QItem_Handle_SenderRoom(OneQueItem *Item, StrBuf *Line, const char **Pos)
435 {
436         if (Item->SenderRoom == NULL)
437                 Item->SenderRoom = NewStrBufPlain(NULL, StrLength(Line));
438         StrBufExtract_NextToken(Item->SenderRoom, Line, Pos, '|');
439 }
440
441 void QItem_Handle_Recipient(OneQueItem *Item, StrBuf *Line, const char **Pos)
442 {
443         if (Item->Current == NULL)
444                 NewMailQEntry(Item);
445         if (Item->Current->Recipient == NULL)
446                 Item->Current->Recipient=NewStrBufPlain(NULL, StrLength(Line));
447         StrBufExtract_NextToken(Item->Current->Recipient, Line, Pos, '|');
448         Item->Current->Status = StrBufExtractNext_int(Line, Pos, '|');
449         StrBufExtract_NextToken(Item->Current->StatusMessage, Line, Pos, '|');
450         Item->Current = NULL; // TODO: is this always right?
451 }
452
453
454 void QItem_Handle_retry(OneQueItem *Item, StrBuf *Line, const char **Pos)
455 {
456         Item->Retry =
457                 StrBufExtractNext_int(Line, Pos, '|');
458         if (Item->Retry == 0)
459                 Item->Retry = SMTP_RETRY_INTERVAL;
460         else
461                 Item->Retry *= 2;
462 }
463
464
465 void QItem_Handle_Submitted(OneQueItem *Item, StrBuf *Line, const char **Pos)
466 {
467         Item->Submitted = atol(*Pos);
468
469 }
470
471 void QItem_Handle_Attempted(OneQueItem *Item, StrBuf *Line, const char **Pos)
472 {
473         Item->ReattemptWhen = StrBufExtractNext_int(Line, Pos, '|');
474 }
475
476
477
478 /**
479  * this one has to have the context for loading the message via the redirect buffer...
480  */
481 StrBuf *smtp_load_msg(OneQueItem *MyQItem, int n, char **Author, char **Address)
482 {
483         CitContext *CCC=CC;
484         StrBuf *SendMsg;
485
486         CCC->redirect_buffer = NewStrBufPlain(NULL, SIZ);
487         CtdlOutputMsg(MyQItem->MessageID,
488                       MT_RFC822, HEADERS_ALL,
489                       0, 1, NULL,
490                       (ESC_DOT|SUPPRESS_ENV_TO),
491                       Author,
492                       Address);
493
494         SendMsg = CCC->redirect_buffer;
495         CCC->redirect_buffer = NULL;
496         if ((StrLength(SendMsg) > 0) &&
497             ChrPtr(SendMsg)[StrLength(SendMsg) - 1] != '\n') {
498                 SMTPC_syslog(LOG_WARNING,
499                              "[%d] Possible problem: message did not "
500                              "correctly terminate. (expecting 0x10, got 0x%02x)\n",
501                              MsgCount, //yes uncool, but best choice here...
502                              ChrPtr(SendMsg)[StrLength(SendMsg) - 1] );
503                 StrBufAppendBufPlain(SendMsg, HKEY("\r\n"), 0);
504         }
505         return SendMsg;
506 }
507
508
509
510 /*
511  * smtp_do_bounce() is caled by smtp_do_procmsg() to scan a set of delivery
512  * instructions for "5" codes (permanent fatal errors) and produce/deliver
513  * a "bounce" message (delivery status notification).
514  */
515 void smtpq_do_bounce(OneQueItem *MyQItem, StrBuf *OMsgTxt, ParsedURL *Relay)
516 {
517         static int seq = 0;
518
519         struct CtdlMessage *bmsg = NULL;
520         StrBuf *boundary;
521         StrBuf *Msg = NULL;
522         StrBuf *BounceMB;
523         struct recptypes *valid;
524         time_t now;
525
526         HashPos *It;
527         void *vQE;
528         long len;
529         const char *Key;
530
531         int first_attempt = 0;
532         int successful_bounce = 0;
533         int num_bounces = 0;
534         int give_up = 0;
535
536         SMTPCM_syslog(LOG_DEBUG, "smtp_do_bounce() called\n");
537
538         if (MyQItem->SendBounceMail == 0)
539                 return;
540
541         now = time (NULL); //ev_time();
542
543         if ( (now - MyQItem->Submitted) > SMTP_GIVE_UP ) {
544                 give_up = 1;
545         }
546
547         if (MyQItem->Retry == SMTP_RETRY_INTERVAL) {
548                 first_attempt = 1;
549         }
550
551         /*
552          * Now go through the instructions checking for stuff.
553          */
554         Msg = NewStrBufPlain(NULL, 1024);
555         It = GetNewHashPos(MyQItem->MailQEntries, 0);
556         while (GetNextHashPos(MyQItem->MailQEntries, It, &len, &Key, &vQE))
557         {
558                 MailQEntry *ThisItem = vQE;
559                 if ((ThisItem->Active && (ThisItem->Status == 5)) || /* failed now? */
560                     ((give_up == 1) && (ThisItem->Status != 2)) ||
561                     ((first_attempt == 1) && (ThisItem->Status != 2)))
562                         /* giving up after failed attempts... */
563                 {
564                         ++num_bounces;
565
566                         StrBufAppendBufPlain(Msg, HKEY(" "), 0);
567                         StrBufAppendBuf(Msg, ThisItem->Recipient, 0);
568                         StrBufAppendBufPlain(Msg, HKEY(": "), 0);
569                         StrBufAppendBuf(Msg, ThisItem->StatusMessage, 0);
570                         StrBufAppendBufPlain(Msg, HKEY("\r\n"), 0);
571                 }
572         }
573         DeleteHashPos(&It);
574
575         /* Deliver the bounce if there's anything worth mentioning */
576         SMTPC_syslog(LOG_DEBUG, "num_bounces = %d\n", num_bounces);
577
578         if (num_bounces == 0) {
579                 FreeStrBuf(&Msg);
580                 return;
581         }
582
583         if ((StrLength(MyQItem->SenderRoom) == 0) && MyQItem->HaveRelay) {
584                 const char *RelayUrlStr = "[not found]";
585                 /* one message that relaying is broken is enough; no extra room error message. */
586                 StrBuf *RelayDetails = NewStrBuf();
587
588                 if (Relay != NULL)
589                         RelayUrlStr = ChrPtr(Relay->URL);
590
591                 StrBufPrintf(RelayDetails,
592                              "Relaying via %s failed permanently. \n Reason:\n%s\n Revalidate your relay configuration.",
593                              RelayUrlStr,
594                              ChrPtr(Msg));
595                 CtdlAideMessage(ChrPtr(RelayDetails), "Relaying Failed");
596                 FreeStrBuf(&RelayDetails);
597         }
598
599         boundary = NewStrBufPlain(HKEY("=_Citadel_Multipart_"));
600         StrBufAppendPrintf(boundary,
601                            "%s_%04x%04x",
602                            config.c_fqdn,
603                            getpid(),
604                            ++seq);
605
606         /* Start building our bounce message; go shopping for memory first. */
607         BounceMB = NewStrBufPlain(
608                 NULL,
609                 1024 + /* mime stuff.... */
610                 StrLength(Msg) +  /* the bounce information... */
611                 StrLength(OMsgTxt)); /* the original message */
612         if (BounceMB == NULL) {
613                 FreeStrBuf(&boundary);
614                 SMTPCM_syslog(LOG_ERR, "Failed to alloc() bounce message.\n");
615
616                 return;
617         }
618
619         bmsg = (struct CtdlMessage *) malloc(sizeof(struct CtdlMessage));
620         if (bmsg == NULL) {
621                 FreeStrBuf(&boundary);
622                 FreeStrBuf(&BounceMB);
623                 SMTPCM_syslog(LOG_ERR, "Failed to alloc() bounce message.\n");
624
625                 return;
626         }
627         memset(bmsg, 0, sizeof(struct CtdlMessage));
628
629
630         StrBufAppendBufPlain(BounceMB, HKEY("Content-type: multipart/mixed; boundary=\""), 0);
631         StrBufAppendBuf(BounceMB, boundary, 0);
632         StrBufAppendBufPlain(BounceMB, HKEY("\"\r\n"), 0);
633         StrBufAppendBufPlain(BounceMB, HKEY("MIME-Version: 1.0\r\n"), 0);
634         StrBufAppendBufPlain(BounceMB, HKEY("X-Mailer: " CITADEL "\r\n"), 0);
635         StrBufAppendBufPlain(BounceMB, HKEY("\r\nThis is a multipart message in MIME format.\r\n\r\n"), 0);
636         StrBufAppendBufPlain(BounceMB, HKEY("--"), 0);
637         StrBufAppendBuf(BounceMB, boundary, 0);
638         StrBufAppendBufPlain(BounceMB, HKEY("\r\n"), 0);
639         StrBufAppendBufPlain(BounceMB, HKEY("Content-type: text/plain\r\n\r\n"), 0);
640
641         if (give_up)
642                 StrBufAppendBufPlain(
643                         BounceMB,
644                         HKEY(
645                                 "A message you sent could not be delivered "
646                                 "to some or all of its recipients\n"
647                                 "due to prolonged unavailability "
648                                 "of its destination(s).\n"
649                                 "Giving up on the following addresses:\n\n"
650                                 ), 0);
651         else
652                 StrBufAppendBufPlain(
653                         BounceMB,
654                         HKEY(
655                                 "A message you sent could not be delivered "
656                                 "to some or all of its recipients.\n"
657                                 "The following addresses "
658                                 "were undeliverable:\n\n"
659                                 ), 0);
660
661         StrBufAppendBuf(BounceMB, Msg, 0);
662         FreeStrBuf(&Msg);
663
664         if (StrLength(MyQItem->SenderRoom) > 0)
665         {
666                 StrBufAppendBufPlain(
667                         BounceMB,
668                         HKEY("The message was originaly posted in: "), 0);
669                 StrBufAppendBuf(BounceMB, MyQItem->SenderRoom, 0);
670                 StrBufAppendBufPlain(
671                         BounceMB,
672                         HKEY("\n"), 0);
673         }
674
675         /* Attach the original message */
676         StrBufAppendBufPlain(BounceMB, HKEY("\r\n--"), 0);
677         StrBufAppendBuf(BounceMB, boundary, 0);
678         StrBufAppendBufPlain(BounceMB, HKEY("\r\n"), 0);
679         StrBufAppendBufPlain(BounceMB,
680                              HKEY("Content-type: message/rfc822\r\n"), 0);
681         StrBufAppendBufPlain(BounceMB,
682                              HKEY("Content-Transfer-Encoding: 7bit\r\n"), 0);
683         StrBufAppendBufPlain(BounceMB,
684                              HKEY("Content-Disposition: inline\r\n"), 0);
685         StrBufAppendBufPlain(BounceMB, HKEY("\r\n"), 0);
686         StrBufAppendBuf(BounceMB, OMsgTxt, 0);
687
688         /* Close the multipart MIME scope */
689         StrBufAppendBufPlain(BounceMB, HKEY("--"), 0);
690         StrBufAppendBuf(BounceMB, boundary, 0);
691         StrBufAppendBufPlain(BounceMB, HKEY("--\r\n"), 0);
692
693         bmsg->cm_magic = CTDLMESSAGE_MAGIC;
694         bmsg->cm_anon_type = MES_NORMAL;
695         bmsg->cm_format_type = FMT_RFC822;
696
697         bmsg->cm_fields['O'] = strdup(MAILROOM);
698         bmsg->cm_fields['A'] = strdup("Citadel");
699         bmsg->cm_fields['N'] = strdup(config.c_nodename);
700         bmsg->cm_fields['U'] = strdup("Delivery Status Notification (Failure)");
701         bmsg->cm_fields['M'] = SmashStrBuf(&BounceMB);
702
703         /* First try the user who sent the message */
704         if (StrLength(MyQItem->BounceTo) == 0) {
705                 SMTPCM_syslog(LOG_ERR, "No bounce address specified\n");
706         }
707         else {
708                 SMTPC_syslog(LOG_DEBUG, "bounce to user? <%s>\n",
709                        ChrPtr(MyQItem->BounceTo));
710         }
711
712         /* Can we deliver the bounce to the original sender? */
713         valid = validate_recipients(ChrPtr(MyQItem->BounceTo), NULL, 0);
714         if ((valid != NULL) && (valid->num_error == 0)) {
715                 CtdlSubmitMsg(bmsg, valid, "", QP_EADDR);
716                 successful_bounce = 1;
717         }
718
719         /* If not, post it in the Aide> room */
720         if (successful_bounce == 0) {
721                 CtdlSubmitMsg(bmsg, NULL, config.c_aideroom, QP_EADDR);
722         }
723
724         /* Free up the memory we used */
725         free_recipients(valid);
726         FreeStrBuf(&boundary);
727         CtdlFreeMessage(bmsg);
728         SMTPCM_syslog(LOG_DEBUG, "Done processing bounces\n");
729 }
730
731 ParsedURL *LoadRelayUrls(OneQueItem *MyQItem,
732                          char *Author,
733                          char *Address)
734 {
735         int nRelays = 0;
736         ParsedURL *RelayUrls = NULL;
737         char mxbuf[SIZ];
738         ParsedURL **Url = &MyQItem->URL;
739
740         nRelays = get_hosts(mxbuf, "fallbackhost");
741         if (nRelays > 0) {
742                 StrBuf *All;
743                 StrBuf *One;
744                 const char *Pos = NULL;
745                 All = NewStrBufPlain(mxbuf, -1);
746                 One = NewStrBufPlain(NULL, StrLength(All) + 1);
747                 
748                 while ((Pos != StrBufNOTNULL) &&
749                        ((Pos == NULL) ||
750                         !IsEmptyStr(Pos)))
751                 {
752                         StrBufExtract_NextToken(One, All, &Pos, '|');
753                         if (!ParseURL(Url, One, DefaultMXPort)) {
754                                 SMTPC_syslog(LOG_DEBUG,
755                                              "Failed to parse: %s\n",
756                                              ChrPtr(One));
757                         }
758                         else {
759                                 (*Url)->IsRelay = 1;
760                                 MyQItem->HaveRelay = 1;
761                         }
762                 }
763                 FreeStrBuf(&All);
764                 FreeStrBuf(&One);
765         }
766         nRelays = get_hosts(mxbuf, "smarthost");
767         if (nRelays > 0) {
768                 char *User;
769                 StrBuf *All;
770                 StrBuf *One;
771                 const char *Pos = NULL;
772                 All = NewStrBufPlain(mxbuf, -1);
773                 One = NewStrBufPlain(NULL, StrLength(All) + 1);
774                 
775                 while ((Pos != StrBufNOTNULL) &&
776                        ((Pos == NULL) ||
777                         !IsEmptyStr(Pos)))
778                 {
779                         StrBufExtract_NextToken(One, All, &Pos, '|');
780                         User = strchr(ChrPtr(One), ' ');
781                         if (User != NULL) {
782                                 if (!strcmp(User + 1, Author) ||
783                                     !strcmp(User + 1, Address))
784                                         StrBufCutAt(One, 0, User);
785                                 else {
786                                         MyQItem->HaveRelay = 1;
787                                         continue;
788                                 }
789                         }
790                         if (!ParseURL(Url, One, DefaultMXPort)) {
791                                 SMTPC_syslog(LOG_DEBUG,
792                                              "Failed to parse: %s\n",
793                                              ChrPtr(One));
794                         }
795                         else {
796                                 ///if (!Url->IsIP)) // todo dupe me fork ipv6
797                                 (*Url)->IsRelay = 1;
798                                 MyQItem->HaveRelay = 1;
799                         }
800                 }
801                 FreeStrBuf(&All);
802                 FreeStrBuf(&One);
803         }
804         return RelayUrls;
805 }
806 /*
807  * smtp_do_procmsg()
808  *
809  * Called by smtp_do_queue() to handle an individual message.
810  */
811 void smtp_do_procmsg(long msgnum, void *userdata) {
812         time_t now;
813         int mynumsessions = num_sessions;
814         struct CtdlMessage *msg = NULL;
815         char *Author = NULL;
816         char *Address = NULL;
817         char *instr = NULL;
818         StrBuf *PlainQItem;
819         OneQueItem *MyQItem;
820         char *pch;
821         HashPos  *It;
822         void *vQE;
823         long len;
824         const char *Key;
825         int HaveBuffers = 0;
826         StrBuf *Msg =NULL;
827
828         if (mynumsessions > max_sessions_for_outbound_smtp) {
829                 SMTPC_syslog(LOG_DEBUG,
830                              "skipping because of num jobs %d > %d max_sessions_for_outbound_smtp",
831                              mynumsessions,
832                              max_sessions_for_outbound_smtp);
833         }
834
835         SMTPC_syslog(LOG_DEBUG, "smtp_do_procmsg(%ld)\n", msgnum);
836         ///strcpy(envelope_from, "");
837
838         msg = CtdlFetchMessage(msgnum, 1);
839         if (msg == NULL) {
840                 SMTPC_syslog(LOG_ERR, "tried %ld but no such message!\n",
841                        msgnum);
842                 return;
843         }
844
845         pch = instr = msg->cm_fields['M'];
846
847         /* Strip out the headers (no not amd any other non-instruction) line */
848         while (pch != NULL) {
849                 pch = strchr(pch, '\n');
850                 if ((pch != NULL) && (*(pch + 1) == '\n')) {
851                         instr = pch + 2;
852                         pch = NULL;
853                 }
854         }
855         PlainQItem = NewStrBufPlain(instr, -1);
856         CtdlFreeMessage(msg);
857         MyQItem = DeserializeQueueItem(PlainQItem, msgnum);
858         FreeStrBuf(&PlainQItem);
859
860         if (MyQItem == NULL) {
861                 SMTPC_syslog(LOG_ERR,
862                              "Msg No %ld: already in progress!\n",
863                              msgnum);
864                 return; /* s.b. else is already processing... */
865         }
866
867         /*
868          * Postpone delivery if we've already tried recently.
869          */
870         now = time(NULL);
871         if ((MyQItem->ReattemptWhen != 0) && 
872             (now < MyQItem->ReattemptWhen) &&
873             (run_queue_now == 0))
874         {
875                 SMTPC_syslog(LOG_DEBUG, 
876                              "Retry time not yet reached. %ld seconds left.",
877                              MyQItem->ReattemptWhen - now);
878
879                 It = GetNewHashPos(MyQItem->MailQEntries, 0);
880                 pthread_mutex_lock(&ActiveQItemsLock);
881                 {
882                         if (GetHashPosFromKey(ActiveQItems,
883                                               LKEY(MyQItem->MessageID),
884                                               It))
885                         {
886                                 DeleteEntryFromHash(ActiveQItems, It);
887                         }
888                 }
889                 pthread_mutex_unlock(&ActiveQItemsLock);
890                 ////FreeQueItem(&MyQItem); TODO: DeleteEntryFromHash frees this?
891                 DeleteHashPos(&It);
892                 return;
893         }
894
895         /*
896          * Bail out if there's no actual message associated with this
897          */
898         if (MyQItem->MessageID < 0L) {
899                 SMTPCM_syslog(LOG_ERR, "no 'msgid' directive found!\n");
900                 It = GetNewHashPos(MyQItem->MailQEntries, 0);
901                 pthread_mutex_lock(&ActiveQItemsLock);
902                 {
903                         if (GetHashPosFromKey(ActiveQItems,
904                                               LKEY(MyQItem->MessageID),
905                                               It))
906                         {
907                                 DeleteEntryFromHash(ActiveQItems, It);
908                         }
909                 }
910                 pthread_mutex_unlock(&ActiveQItemsLock);
911                 DeleteHashPos(&It);
912                 ////FreeQueItem(&MyQItem); TODO: DeleteEntryFromHash frees this?
913                 return;
914         }
915
916
917         It = GetNewHashPos(MyQItem->MailQEntries, 0);
918         while (GetNextHashPos(MyQItem->MailQEntries, It, &len, &Key, &vQE))
919         {
920                 MailQEntry *ThisItem = vQE;
921                 SMTPC_syslog(LOG_DEBUG, "SMTP Queue: Task: <%s> %d\n",
922                              ChrPtr(ThisItem->Recipient),
923                              ThisItem->Active);
924         }
925         DeleteHashPos(&It);
926
927         MyQItem->NotYetShutdownDeliveries = 
928                 MyQItem->ActiveDeliveries = CountActiveQueueEntries(MyQItem, 1);
929
930         /* failsafe against overload: 
931          * will we exceed the limit set? 
932          */
933         if ((MyQItem->ActiveDeliveries + mynumsessions > max_sessions_for_outbound_smtp) && 
934             /* if yes, did we reach more than half of the quota? */
935             ((mynumsessions * 2) > max_sessions_for_outbound_smtp) && 
936             /* if... would we ever fit into half of the quota?? */
937             (((MyQItem->ActiveDeliveries * 2)  < max_sessions_for_outbound_smtp)))
938         {
939                 /* abort delivery for another time. */
940                 SMTPC_syslog(LOG_DEBUG,
941                              "SMTP Queue: skipping because of num jobs %d + %ld > %d max_sessions_for_outbound_smtp",
942                              mynumsessions,
943                              MyQItem->ActiveDeliveries,
944                              max_sessions_for_outbound_smtp);
945
946                 FreeQueItem(&MyQItem);
947
948                 return;
949         }
950
951
952         if (MyQItem->ActiveDeliveries > 0)
953         {
954                 ParsedURL *RelayUrls = NULL;
955                 int nActivated = 0;
956                 int n = MsgCount++;
957                 int m = MyQItem->ActiveDeliveries;
958                 int i = 1;
959
960                 It = GetNewHashPos(MyQItem->MailQEntries, 0);
961
962                 Msg = smtp_load_msg(MyQItem, n, &Author, &Address);
963                 RelayUrls = LoadRelayUrls(MyQItem, Author, Address);
964                 if ((RelayUrls == NULL) && MyQItem->HaveRelay) {
965
966                         while ((i <= m) &&
967                                (GetNextHashPos(MyQItem->MailQEntries,
968                                                It, &len, &Key, &vQE)))
969                         {
970                                 int KeepBuffers = (i == m);
971                                 MailQEntry *ThisItem = vQE;
972                                 StrBufPrintf(ThisItem->StatusMessage,
973                                              "No relay configured matching %s / %s", 
974                                              (Author != NULL)? Author : "",
975                                              (Address != NULL)? Address : "");
976                                 ThisItem->Status = 5;
977
978                                 nActivated++;
979
980                                 if (i > 1) n = MsgCount++;
981                                 syslog(LOG_INFO,
982                                        "SMTPC: giving up on <%ld> <%s> %d / %d \n",
983                                        MyQItem->MessageID,
984                                        ChrPtr(ThisItem->Recipient),
985                                        i,
986                                        m);
987                                 (*((int*) userdata)) ++;
988                                 smtp_try_one_queue_entry(MyQItem,
989                                                          ThisItem,
990                                                          Msg,
991                                                          KeepBuffers,
992                                                          n,
993                                                          RelayUrls);
994
995                                 if (KeepBuffers) HaveBuffers = 1;
996
997                                 i++;
998                         }
999                         if (Author != NULL) free (Author);
1000                         if (Address != NULL) free (Address);
1001                         DeleteHashPos(&It);
1002
1003                         return;
1004                 }
1005                 if (Author != NULL) free (Author);
1006                 if (Address != NULL) free (Address);
1007
1008                 while ((i <= m) &&
1009                        (GetNextHashPos(MyQItem->MailQEntries,
1010                                        It, &len, &Key, &vQE)))
1011                 {
1012                         MailQEntry *ThisItem = vQE;
1013
1014                         if (ThisItem->Active == 1)
1015                         {
1016                                 int KeepBuffers = (i == m);
1017
1018                                 nActivated++;
1019                                 if (nActivated % ndelay_count == 0)
1020                                         usleep(delay_msec);
1021
1022                                 if (i > 1) n = MsgCount++;
1023                                 syslog(LOG_DEBUG,
1024                                        "SMTPC: Trying <%ld> <%s> %d / %d \n",
1025                                        MyQItem->MessageID,
1026                                        ChrPtr(ThisItem->Recipient),
1027                                        i,
1028                                        m);
1029                                 (*((int*) userdata)) ++;
1030                                 smtp_try_one_queue_entry(MyQItem,
1031                                                          ThisItem,
1032                                                          Msg,
1033                                                          KeepBuffers,
1034                                                          n,
1035                                                          RelayUrls);
1036
1037                                 if (KeepBuffers) HaveBuffers = 1;
1038
1039                                 i++;
1040                         }
1041                 }
1042                 DeleteHashPos(&It);
1043         }
1044         else
1045         {
1046                 It = GetNewHashPos(MyQItem->MailQEntries, 0);
1047                 pthread_mutex_lock(&ActiveQItemsLock);
1048                 {
1049                         if (GetHashPosFromKey(ActiveQItems,
1050                                               LKEY(MyQItem->MessageID),
1051                                               It))
1052                         {
1053                                 DeleteEntryFromHash(ActiveQItems, It);
1054                         }
1055                         else
1056                         {
1057                                 long len;
1058                                 const char* Key;
1059                                 void *VData;
1060
1061                                 SMTPC_syslog(LOG_WARNING,
1062                                              "unable to find QItem with ID[%ld]",
1063                                              MyQItem->MessageID);
1064                                 while (GetNextHashPos(ActiveQItems,
1065                                                       It,
1066                                                       &len,
1067                                                       &Key,
1068                                                       &VData))
1069                                 {
1070                                         SMTPC_syslog(LOG_WARNING,
1071                                                      "have: ID[%ld]",
1072                                                      ((OneQueItem *)VData)->MessageID);
1073                                 }
1074                         }
1075
1076                 }
1077                 pthread_mutex_unlock(&ActiveQItemsLock);
1078                 DeleteHashPos(&It);
1079                 ////FreeQueItem(&MyQItem); TODO: DeleteEntryFromHash frees this?
1080
1081 // TODO: bounce & delete?
1082
1083         }
1084         if (!HaveBuffers) {
1085                 FreeStrBuf (&Msg);
1086 // TODO : free RelayUrls
1087         }
1088 }
1089
1090
1091
1092 /*
1093  * smtp_queue_thread()
1094  *
1095  * Run through the queue sending out messages.
1096  */
1097 void smtp_do_queue(void) {
1098         int num_processed = 0;
1099         int num_activated = 0;
1100
1101         pthread_setspecific(MyConKey, (void *)&smtp_queue_CC);
1102         SMTPCM_syslog(LOG_INFO, "processing outbound queue");
1103
1104         if (CtdlGetRoom(&CC->room, SMTP_SPOOLOUT_ROOM) != 0) {
1105                 SMTPC_syslog(LOG_ERR, "Cannot find room <%s>", SMTP_SPOOLOUT_ROOM);
1106         }
1107         else {
1108                 num_processed = CtdlForEachMessage(MSGS_ALL,
1109                                                    0L,
1110                                                    NULL,
1111                                                    SPOOLMIME,
1112                                                    NULL,
1113                                                    smtp_do_procmsg,
1114                                                    &num_activated);
1115         }
1116         SMTPC_syslog(LOG_INFO,
1117                      "queue run completed; %d messages processed %d activated",
1118                      num_processed, num_activated);
1119
1120 }
1121
1122
1123
1124 /*
1125  * Initialize the SMTP outbound queue
1126  */
1127 void smtp_init_spoolout(void) {
1128         struct ctdlroom qrbuf;
1129
1130         /*
1131          * Create the room.  This will silently fail if the room already
1132          * exists, and that's perfectly ok, because we want it to exist.
1133          */
1134         CtdlCreateRoom(SMTP_SPOOLOUT_ROOM, 3, "", 0, 1, 0, VIEW_QUEUE);
1135
1136         /*
1137          * Make sure it's set to be a "system room" so it doesn't show up
1138          * in the <K>nown rooms list for Aides.
1139          */
1140         if (CtdlGetRoomLock(&qrbuf, SMTP_SPOOLOUT_ROOM) == 0) {
1141                 qrbuf.QRflags2 |= QR2_SYSTEM;
1142                 CtdlPutRoomLock(&qrbuf);
1143         }
1144 }
1145
1146
1147
1148
1149 /*****************************************************************************/
1150 /*                          SMTP UTILITY COMMANDS                            */
1151 /*****************************************************************************/
1152
1153 void cmd_smtp(char *argbuf) {
1154         char cmd[64];
1155         char node[256];
1156         char buf[1024];
1157         int i;
1158         int num_mxhosts;
1159
1160         if (CtdlAccessCheck(ac_aide)) return;
1161
1162         extract_token(cmd, argbuf, 0, '|', sizeof cmd);
1163
1164         if (!strcasecmp(cmd, "mx")) {
1165                 extract_token(node, argbuf, 1, '|', sizeof node);
1166                 num_mxhosts = getmx(buf, node);
1167                 cprintf("%d %d MX hosts listed for %s\n",
1168                         LISTING_FOLLOWS, num_mxhosts, node);
1169                 for (i=0; i<num_mxhosts; ++i) {
1170                         extract_token(node, buf, i, '|', sizeof node);
1171                         cprintf("%s\n", node);
1172                 }
1173                 cprintf("000\n");
1174                 return;
1175         }
1176
1177         else if (!strcasecmp(cmd, "runqueue")) {
1178                 run_queue_now = 1;
1179                 cprintf("%d All outbound SMTP will be retried now.\n", CIT_OK);
1180                 return;
1181         }
1182
1183         else {
1184                 cprintf("%d Invalid command.\n", ERROR + ILLEGAL_VALUE);
1185         }
1186
1187 }
1188
1189
1190 CTDL_MODULE_INIT(smtp_queu)
1191 {
1192         char *pstr;
1193
1194         if (!threading)
1195         {
1196                 pstr = getenv("CITSERVER_n_session_max");
1197                 if ((pstr != NULL) && (*pstr != '\0'))
1198                         max_sessions_for_outbound_smtp = atol(pstr); /* how many sessions might be active till we stop adding more smtp jobs */
1199
1200                 pstr = getenv("CITSERVER_smtp_n_delay_count");
1201                 if ((pstr != NULL) && (*pstr != '\0'))
1202                         ndelay_count = atol(pstr); /* every n queued messages we will sleep... */
1203
1204                 pstr = getenv("CITSERVER_smtp_delay");
1205                 if ((pstr != NULL) && (*pstr != '\0'))
1206                         delay_msec = atol(pstr) * 1000; /* this many seconds. */
1207
1208
1209
1210
1211                 CtdlFillSystemContext(&smtp_queue_CC, "SMTP_Send");
1212                 ActiveQItems = NewHash(1, lFlathash);
1213                 pthread_mutex_init(&ActiveQItemsLock, NULL);
1214
1215                 QItemHandlers = NewHash(0, NULL);
1216
1217                 RegisterQItemHandler(HKEY("msgid"),             QItem_Handle_MsgID);
1218                 RegisterQItemHandler(HKEY("envelope_from"),     QItem_Handle_EnvelopeFrom);
1219                 RegisterQItemHandler(HKEY("retry"),             QItem_Handle_retry);
1220                 RegisterQItemHandler(HKEY("attempted"),         QItem_Handle_Attempted);
1221                 RegisterQItemHandler(HKEY("remote"),            QItem_Handle_Recipient);
1222                 RegisterQItemHandler(HKEY("bounceto"),          QItem_Handle_BounceTo);
1223                 RegisterQItemHandler(HKEY("source_room"),       QItem_Handle_SenderRoom);
1224                 RegisterQItemHandler(HKEY("submitted"),         QItem_Handle_Submitted);
1225
1226                 smtp_init_spoolout();
1227
1228                 CtdlRegisterEVCleanupHook(smtp_evq_cleanup);
1229
1230                 CtdlRegisterProtoHook(cmd_smtp, "SMTP", "SMTP utility commands");
1231                 CtdlRegisterSessionHook(smtp_do_queue, EVT_TIMER, PRIO_SEND + 10);
1232         }
1233
1234         /* return our Subversion id for the Log */
1235         return "smtpeventclient";
1236 }