1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
/* $OpenBSD: client.h,v 1.10 2010/01/02 13:42:42 jacekm Exp $ */
/*
* Copyright (c) 2009 Jacek Masiulaniec <jacekm@dobremiasto.net>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#ifndef nitems
#define nitems(_a) (sizeof((_a)) / sizeof((_a)[0]))
#endif
struct smtp_client;
/* return codes for io routines */
#define CLIENT_DONE -1 /* finished */
#define CLIENT_WANT_WRITE -2 /* want read + write */
#define CLIENT_STOP_WRITE -3 /* want read */
#define CLIENT_RCPT_FAIL -4 /* recipient refused */
/* client commands */
#define CLIENT_BANNER 0x1
#define CLIENT_EHLO 0x2
#define CLIENT_HELO 0x3
#define CLIENT_STARTTLS 0x4
#define CLIENT_AUTH 0x5
#define CLIENT_MAILFROM 0x6
#define CLIENT_RCPTTO 0x7
#define CLIENT_DATA 0x8
#define CLIENT_DOT 0x9
#define CLIENT_QUIT 0xa
struct client_cmd {
TAILQ_ENTRY(client_cmd) entry;
char *action;
int type;
void *data;
};
TAILQ_HEAD(cmdqueue, client_cmd);
/* smtp extensions */
#define CLIENT_EXT_STARTTLS 0
#define CLIENT_EXT_AUTH 1
#define CLIENT_EXT_PIPELINING 2
struct client_ext {
short have;
short want;
short must;
short done;
short fail;
char *name;
};
struct client_auth {
char *plain;
char *cert;
size_t certsz;
char *key;
size_t keysz;
};
struct smtp_client {
size_t cmdi; /* iterator */
size_t cmdw; /* window */
struct cmdqueue cmdsendq; /* cmds to send */
struct cmdqueue cmdrecvq; /* replies waited for */
void *rcptfail;
size_t rcptokay;
char *ehlo;
char reply[1024];
struct buf_read r;
struct msgbuf w;
short ssl_handshake;
void *ssl;
int sndlowat;
struct timeval timeout;
FILE *verbose;
struct buf *content; /* current chunk of content */
struct buf *head; /* headers + part of body */
FILE *body; /* rest of body */
struct client_ext exts[3];
struct client_auth auth;
char status[1024];
short dying;
};
struct smtp_client *client_init(int, int, char *, int);
void client_ssl_smtps(struct smtp_client *);
void client_ssl_optional(struct smtp_client *);
void client_certificate(struct smtp_client *, char *,
size_t, char *, size_t);
void client_auth(struct smtp_client *, char *);
void client_sender(struct smtp_client *, char *, ...);
void client_rcpt(struct smtp_client *, void *, char *, ...);
void client_printf(struct smtp_client *, char *, ...);
int client_talk(struct smtp_client *, int);
void client_close(struct smtp_client *);
|