]> git.ipfire.org Git - people/ms/dma.git/blame - dma.h
local: use space instead of tab in "From " separator
[people/ms/dma.git] / dma.h
CommitLineData
86e4d161 1/*
e458e5f0 2 * Copyright (c) 2008-2014, Simon Schubert <2@0x2c.org>.
86e4d161
MS
3 * Copyright (c) 2008 The DragonFly Project. All rights reserved.
4 *
5 * This code is derived from software contributed to The DragonFly Project
e458e5f0 6 * by Simon Schubert <2@0x2c.org> and
86e4d161
MS
7 * Matthias Schmidt <matthias@dragonflybsd.org>.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 *
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
18 * distribution.
19 * 3. Neither the name of The DragonFly Project nor the names of its
20 * contributors may be used to endorse or promote products derived
21 * from this software without specific, prior written permission.
22 *
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
26 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
27 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
28 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
29 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
30 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
31 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
33 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 * SUCH DAMAGE.
86e4d161
MS
35 */
36
37#ifndef DMA_H
38#define DMA_H
39
8cbdbd34 40#include <sys/types.h>
86e4d161 41#include <sys/queue.h>
8cbdbd34
SS
42#include <sys/socket.h>
43#include <arpa/nameser.h>
44#include <arpa/inet.h>
45#include <openssl/ssl.h>
46#include <netdb.h>
de196e33 47#include <sysexits.h>
86e4d161 48
d062346c 49#define VERSION "DragonFly Mail Agent " DMA_VERSION
86e4d161
MS
50
51#define BUF_SIZE 2048
249ee966
SS
52#define ERRMSG_SIZE 200
53#define USERNAME_SIZE 50
86e4d161
MS
54#define MIN_RETRY 300 /* 5 minutes */
55#define MAX_RETRY (3*60*60) /* retry at least every 3 hours */
56#define MAX_TIMEOUT (5*24*60*60) /* give up after 5 days */
3686aecc 57#define SLEEP_TIMEOUT 30 /* check for queue flush every 30 seconds */
dd475b5e 58#ifndef PATH_MAX
86e4d161 59#define PATH_MAX 1024 /* Max path len */
dd475b5e 60#endif
1b00f90e 61#define SMTP_PORT 25 /* Default SMTP port */
144941d9 62#define CON_TIMEOUT (5*60) /* Connection timeout per RFC5321 */
86e4d161 63
1b00f90e
MS
64#define STARTTLS 0x002 /* StartTLS support */
65#define SECURETRANS 0x004 /* SSL/TLS in general */
50c8e68a 66#define NOSSL 0x008 /* Do not use SSL */
1b00f90e
MS
67#define DEFER 0x010 /* Defer mails */
68#define INSECURE 0x020 /* Allow plain login w/o encryption */
8ee63931 69#define FULLBOUNCE 0x040 /* Bounce the full message */
4dea15f5 70#define TLS_OPP 0x080 /* Opportunistic STARTTLS */
e882bde8 71#define NULLCLIENT 0x100 /* Nullclient support */
1b00f90e 72
fd1de51a 73#ifndef CONF_PATH
d84c3daa 74#error Please define CONF_PATH
fd1de51a 75#endif
86e4d161 76
c1ebccb4
SS
77#ifndef LIBEXEC_PATH
78#error Please define LIBEXEC_PATH
79#endif
80
3686aecc
SS
81#define SPOOL_FLUSHFILE "flush"
82
296dd000 83#ifndef DMA_ROOT_USER
c1ebccb4 84#define DMA_ROOT_USER "mail"
296dd000
EM
85#endif
86#ifndef DMA_GROUP
c1ebccb4 87#define DMA_GROUP "mail"
296dd000 88#endif
c1ebccb4 89
fedbe711
SS
90#ifndef MBOX_STRICT
91#define MBOX_STRICT 0
92#endif
93
c1ebccb4 94
86e4d161
MS
95struct stritem {
96 SLIST_ENTRY(stritem) next;
97 char *str;
98};
99SLIST_HEAD(strlist, stritem);
100
101struct alias {
102 LIST_ENTRY(alias) next;
103 char *alias;
104 struct strlist dests;
105};
106LIST_HEAD(aliases, alias);
107
108struct qitem {
109 LIST_ENTRY(qitem) next;
110 const char *sender;
111 char *addr;
112 char *queuefn;
fd1de51a 113 char *mailfn;
86e4d161 114 char *queueid;
87bdbc01 115 FILE *queuef;
fd1de51a 116 FILE *mailf;
e0a95d28 117 int remote;
86e4d161
MS
118};
119LIST_HEAD(queueh, qitem);
120
121struct queue {
122 struct queueh queue;
4d5af2b0 123 char *id;
87bdbc01 124 FILE *mailf;
86e4d161 125 char *tmpf;
057afad5 126 const char *sender;
86e4d161
MS
127};
128
129struct config {
a0c4afa6 130 const char *smarthost;
86e4d161 131 int port;
a0c4afa6
SS
132 const char *aliases;
133 const char *spooldir;
a0c4afa6
SS
134 const char *authpath;
135 const char *certfile;
86e4d161 136 int features;
a0c4afa6 137 const char *mailname;
5bc72de8
SS
138 const char *masquerade_host;
139 const char *masquerade_user;
a0c4afa6
SS
140
141 /* XXX does not belong into config */
86e4d161 142 SSL *ssl;
86e4d161
MS
143};
144
145
86e4d161
MS
146struct authuser {
147 SLIST_ENTRY(authuser) next;
148 char *login;
149 char *password;
150 char *host;
151};
152SLIST_HEAD(authusers, authuser);
153
fd1de51a 154
8cbdbd34
SS
155struct mx_hostentry {
156 char host[MAXDNAME];
157 char addr[INET6_ADDRSTRLEN];
158 int pref;
159 struct addrinfo ai;
160 struct sockaddr_storage sa;
161};
162
163
fd1de51a 164/* global variables */
86e4d161 165extern struct aliases aliases;
a0c4afa6 166extern struct config config;
fd1de51a 167extern struct strlist tmpfs;
fd1de51a 168extern struct authusers authusers;
249ee966 169extern char username[USERNAME_SIZE];
75fdf182 170extern uid_t useruid;
de13a881 171extern const char *logident_base;
86e4d161 172
249ee966
SS
173extern char neterr[ERRMSG_SIZE];
174extern char errmsg[ERRMSG_SIZE];
7a73c463 175
86e4d161 176/* aliases_parse.y */
fd1de51a 177int yyparse(void);
5ef80d81
AHJ
178int yywrap(void);
179int yylex(void);
86e4d161
MS
180extern FILE *yyin;
181
182/* conf.c */
fd1de51a 183void trim_line(char *);
a0c4afa6 184void parse_conf(const char *);
a0c4afa6 185void parse_authfile(const char *);
86e4d161
MS
186
187/* crypto.c */
9b921550 188void hmac_md5(unsigned char *, int, unsigned char *, int, unsigned char *);
4d5af2b0
SS
189int smtp_auth_md5(int, char *, char *);
190int smtp_init_crypto(int, int);
86e4d161 191
8cbdbd34
SS
192/* dns.c */
193int dns_get_mx_list(const char *, int, struct mx_hostentry **, int);
194
86e4d161 195/* net.c */
fd1de51a
SS
196char *ssl_errstr(void);
197int read_remote(int, int, char *);
3aef8ec9 198ssize_t send_remote_command(int, const char*, ...) __attribute__((__nonnull__(2), __format__ (__printf__, 2, 3)));
249ee966 199int deliver_remote(struct qitem *);
86e4d161
MS
200
201/* base64.c */
fd1de51a
SS
202int base64_encode(const void *, int, char **);
203int base64_decode(const char *, void *);
86e4d161
MS
204
205/* dma.c */
a803c7a6
SS
206#define EXPAND_ADDR 1
207#define EXPAND_WILDCARD 2
057afad5 208int add_recp(struct queue *, const char *, int);
28be0b96 209void run_queue(struct queue *);
fd1de51a
SS
210
211/* spool.c */
057afad5
SS
212int newspoolf(struct queue *);
213int linkspool(struct queue *);
de13a881 214int load_queue(struct queue *);
fd1de51a 215void delqueue(struct qitem *);
9aec6ad8 216int acquirespool(struct qitem *);
87bdbc01 217void dropspool(struct queue *, struct qitem *);
3686aecc
SS
218int flushqueue_since(unsigned int);
219int flushqueue_signal(void);
fd1de51a
SS
220
221/* local.c */
249ee966 222int deliver_local(struct qitem *);
de13a881 223
28be0b96
SS
224/* mail.c */
225void bounce(struct qitem *, const char *);
f734c0ae 226int readmail(struct queue *, int, int);
28be0b96 227
de13a881
SS
228/* util.c */
229const char *hostname(void);
3aef8ec9
SS
230void setlogident(const char *, ...) __attribute__((__format__ (__printf__, 1, 2)));
231void errlog(int, const char *, ...) __attribute__((__format__ (__printf__, 2, 3)));
232void errlogx(int, const char *, ...) __attribute__((__format__ (__printf__, 2, 3)));
de13a881
SS
233void set_username(void);
234void deltmp(void);
a71122e7 235int do_timeout(int, int);
de13a881
SS
236int open_locked(const char *, int, ...);
237char *rfc822date(void);
238int strprefixcmp(const char *, const char *);
ee613428 239void init_random(void);
de13a881 240
86e4d161 241#endif