Read multiline SMTP-Replies; we need to analyze all of them to detect the proper...
[citadel.git] / citadel / modules / smtp / smtp_clienthandlers.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 typedef enum _eSMTP_C_States {
21         eConnectMX,
22         eEHLO,
23         eHELO,
24         eSMTPAuth,
25         eSMTPAuthPlain1,
26         eSMTPAuthPlain2,
27         eFROM,
28         eRCPT,
29         eDATA,
30         eDATABody,
31         eDATATerminateBody,
32         eQUIT,
33         eMaxSMTPC
34 } eSMTP_C_States;
35
36
37 typedef struct _stmp_out_msg {
38         MailQEntry *MyQEntry;
39         OneQueItem *MyQItem;
40         long n;
41         AsyncIO IO;
42         long CXFlags;
43         int IDestructQueItem;
44         int nRemain;
45
46         eSMTP_C_States State;
47
48         struct ares_mx_reply *AllMX;
49         struct ares_mx_reply *CurrMX;
50         const char *mx_port;
51         const char *mx_host;
52         const char *LookupHostname;
53         int iMX, nMX;
54         int LookupWhich;
55
56         DNSQueryParts MxLookup;
57         DNSQueryParts HostLookup;
58         struct hostent *OneMX;
59         char **pIP;
60
61         ParsedURL *Relay;
62         ParsedURL *pCurrRelay;
63         StrBuf *msgtext;
64         StrBuf *QMsgData;
65         StrBuf *MultiLineBuf;
66         const char *envelope_from;
67
68         char user[1024];
69         char node[1024];
70         char name[1024];
71         char mailfrom[1024];
72         long SendLogin;
73         long Flags;
74 } SmtpOutMsg;
75
76
77 typedef eNextState (*SMTPReadHandler)(SmtpOutMsg *Msg);
78 typedef eNextState (*SMTPSendHandler)(SmtpOutMsg *Msg);
79
80 SMTPReadHandler ReadHandlers[eMaxSMTPC];
81 SMTPSendHandler SendHandlers[eMaxSMTPC];
82 const ConstStr ReadErrors[eMaxSMTPC+1];
83 const double SMTP_C_ReadTimeouts[eMaxSMTPC];
84 const double SMTP_C_SendTimeouts[eMaxSMTPC];
85 const double SMTP_C_ConnTimeout;
86
87 #define F_RELAY          (1<<0) /* we have a Relay    host configuration */
88 #define F_HAVE_FALLBACK  (1<<1) /* we have a fallback host configuration */
89 #define F_FALLBACK       (1<<2)
90 #define F_HAVE_MX        (1<<3) /* we have a list of mx records to go through.*/
91 #define F_DIRECT         (1<<4) /* no mx record found, trying direct connect. */
92
93 extern int SMTPClientDebugEnabled;
94
95 int smtp_resolve_recipients(SmtpOutMsg *SendMsg);
96
97 #define QID ((SmtpOutMsg*)IO->Data)->MyQItem->MessageID
98 #define N ((SmtpOutMsg*)IO->Data)->n
99 #define DBGLOG(LEVEL) if ((LEVEL != LOG_DEBUG) || (SMTPClientDebugEnabled != 0))
100
101 #define EVS_syslog(LEVEL, FORMAT, ...) \
102         DBGLOG(LEVEL) syslog(LEVEL,               \
103                "SMTPC:IO[%ld]CC[%d]S[%ld][%ld] " FORMAT, \
104                IO->ID, CCID, QID, N, __VA_ARGS__)
105
106 #define EVSM_syslog(LEVEL, FORMAT) \
107         DBGLOG(LEVEL) syslog(LEVEL, \
108                "SMTPC:IO[%ld]CC[%d]S[%ld][%ld] " FORMAT, \
109                IO->ID, CCID, QID, N)
110
111 #define EVNCS_syslog(LEVEL, FORMAT, ...) \
112         DBGLOG(LEVEL) syslog(LEVEL, "SMTPC:IO[%ld]S[%ld][%ld] " FORMAT, \
113                IO->ID, QID, N, __VA_ARGS__)
114
115 #define EVNCSM_syslog(LEVEL, FORMAT) \
116         DBGLOG(LEVEL) syslog(LEVEL, "SMTPC:IO[%ld]S[%ld][%ld] " FORMAT, \
117                IO->ID, QID, N)
118
119 #define SMTPC_syslog(LEVEL, FORMAT, ...)          \
120         DBGLOG(LEVEL) syslog(LEVEL,               \
121                              "SMTPCQ: " FORMAT,   \
122                              __VA_ARGS__)
123
124 #define SMTPCM_syslog(LEVEL, FORMAT)            \
125         DBGLOG(LEVEL) syslog(LEVEL,             \
126                              "SMTPCQ: " FORMAT)
127
128
129
130 typedef enum __smtpstate {
131         eSTMPmxlookup,
132         eSTMPevaluatenext,
133         eSTMPalookup,
134         eSTMPaaaalookup,
135         eSTMPconnecting,
136         eSTMPsmtp,
137         eSTMPsmtpdata,
138         eSTMPsmtpdone,
139         eSTMPfinished,
140         eSTMPfailOne,
141         eSMTPFailTemporary,
142         eSMTPFailTotal
143 } smtpstate;
144
145 void SetSMTPState(AsyncIO *IO, smtpstate State);