322e45efd5eefd465ef052361f7f5ed97ca66535
[citadel.git] / citadel / modules / smtp / smtpqueue.h
1 /*
2  *
3  * Copyright (c) 1998-2012 by the citadel.org team
4  *
5  *  This program is open source software; you can redistribute it and/or modify
6  *  it under the terms of the GNU General Public License as published by
7  *  the Free Software Foundation; either version 3 of the License, or
8  *  (at your option) any later version.
9  *
10  *  This program is distributed in the hope that it will be useful,
11  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  *  GNU General Public License for more details.
14  *
15  *  You should have received a copy of the GNU General Public License
16  *  along with this program; if not, write to the Free Software
17  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18  */
19
20 /*****************************************************************************/
21 /*               SMTP CLIENT (Queue Management) STUFF                        */
22 /*****************************************************************************/
23
24 #define MaxAttempts 15
25 extern const unsigned short DefaultMXPort;
26
27 typedef struct _mailq_entry {
28         StrBuf *Recipient;
29         StrBuf *StatusMessage;
30         int Status;
31         /**<
32          * 0 = No delivery has yet been attempted
33          * 2 = Delivery was successful
34          * 3 = Transient error like connection problem. Try next remote if available.
35          * 4 = A transient error was experienced ... try again later
36          * 5 = Delivery to this address failed permanently.  The error message
37          *     should be placed in the fourth field so that a bounce message may
38          *     be generated.
39          */
40
41         int n;
42         int Active;
43 }MailQEntry;
44
45 typedef struct queueitem {
46         long SendBounceMail;
47         long MessageID;
48         long QueMsgID;
49         long Submitted;
50         int FailNow;
51         HashList *MailQEntries;
52 /* copy of the currently parsed item in the MailQEntries list;
53  * if null add a new one.
54  */
55         MailQEntry *Current;
56         time_t ReattemptWhen;
57         time_t Retry;
58
59         long ActiveDeliveries;
60         long NotYetShutdownDeliveries;
61         StrBuf *EnvelopeFrom;
62         StrBuf *BounceTo;
63         StrBuf *SenderRoom;
64         ParsedURL *URL;
65         ParsedURL *FallBackHost;
66         int HaveRelay;
67 } OneQueItem;
68
69 typedef void (*QItemHandler)(OneQueItem *Item, StrBuf *Line, const char **Pos);
70
71
72 typedef struct __QItemHandlerStruct {
73         QItemHandler H;
74 } QItemHandlerStruct;
75 int     DecreaseQReference(OneQueItem *MyQItem);
76 void DecreaseShutdownDeliveries(OneQueItem *MyQItem);
77 int GetShutdownDeliveries(OneQueItem *MyQItem);
78 void    RemoveQItem(OneQueItem *MyQItem);
79 int     CountActiveQueueEntries(OneQueItem *MyQItem);
80 StrBuf *SerializeQueueItem(OneQueItem *MyQItem);
81 void    smtpq_do_bounce(OneQueItem *MyQItem, StrBuf *OMsgTxt);
82
83 int CheckQEntryIsBounce(MailQEntry *ThisItem);