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