]> git.ipfire.org Git - people/ms/dma.git/blame - dma.h
drop 11-double-bounce.patch: incorrect fix
[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
50#define MIN_RETRY 300 /* 5 minutes */
51#define MAX_RETRY (3*60*60) /* retry at least every 3 hours */
52#define MAX_TIMEOUT (5*24*60*60) /* give up after 5 days */
dd475b5e 53#ifndef PATH_MAX
86e4d161 54#define PATH_MAX 1024 /* Max path len */
dd475b5e 55#endif
1b00f90e 56#define SMTP_PORT 25 /* Default SMTP port */
144941d9 57#define CON_TIMEOUT (5*60) /* Connection timeout per RFC5321 */
86e4d161 58
1b00f90e
MS
59#define STARTTLS 0x002 /* StartTLS support */
60#define SECURETRANS 0x004 /* SSL/TLS in general */
50c8e68a 61#define NOSSL 0x008 /* Do not use SSL */
1b00f90e
MS
62#define DEFER 0x010 /* Defer mails */
63#define INSECURE 0x020 /* Allow plain login w/o encryption */
8ee63931 64#define FULLBOUNCE 0x040 /* Bounce the full message */
4dea15f5 65#define TLS_OPP 0x080 /* Opportunistic STARTTLS */
1b00f90e 66
fd1de51a 67#ifndef CONF_PATH
1b00f90e 68#define CONF_PATH "/etc/dma/dma.conf" /* Default path to dma.conf */
fd1de51a 69#endif
86e4d161
MS
70
71struct stritem {
72 SLIST_ENTRY(stritem) next;
73 char *str;
74};
75SLIST_HEAD(strlist, stritem);
76
77struct alias {
78 LIST_ENTRY(alias) next;
79 char *alias;
80 struct strlist dests;
81};
82LIST_HEAD(aliases, alias);
83
84struct qitem {
85 LIST_ENTRY(qitem) next;
86 const char *sender;
87 char *addr;
88 char *queuefn;
fd1de51a 89 char *mailfn;
86e4d161 90 char *queueid;
87bdbc01 91 FILE *queuef;
fd1de51a 92 FILE *mailf;
e0a95d28 93 int remote;
86e4d161
MS
94};
95LIST_HEAD(queueh, qitem);
96
97struct queue {
98 struct queueh queue;
4d5af2b0 99 char *id;
87bdbc01 100 FILE *mailf;
86e4d161 101 char *tmpf;
057afad5 102 const char *sender;
86e4d161
MS
103};
104
105struct config {
a0c4afa6 106 const char *smarthost;
86e4d161 107 int port;
a0c4afa6
SS
108 const char *aliases;
109 const char *spooldir;
a0c4afa6
SS
110 const char *authpath;
111 const char *certfile;
86e4d161 112 int features;
a0c4afa6
SS
113 const char *mailname;
114 const char *mailnamefile;
115
116 /* XXX does not belong into config */
86e4d161 117 SSL *ssl;
86e4d161
MS
118};
119
120
86e4d161
MS
121struct authuser {
122 SLIST_ENTRY(authuser) next;
123 char *login;
124 char *password;
125 char *host;
126};
127SLIST_HEAD(authusers, authuser);
128
fd1de51a 129
8cbdbd34
SS
130struct mx_hostentry {
131 char host[MAXDNAME];
132 char addr[INET6_ADDRSTRLEN];
133 int pref;
134 struct addrinfo ai;
135 struct sockaddr_storage sa;
136};
137
138
fd1de51a 139/* global variables */
86e4d161 140extern struct aliases aliases;
a0c4afa6 141extern struct config config;
fd1de51a 142extern struct strlist tmpfs;
fd1de51a 143extern struct authusers authusers;
87bdbc01 144extern const char *username;
de13a881 145extern const char *logident_base;
86e4d161 146
7a73c463
SS
147extern char neterr[BUF_SIZE];
148
86e4d161 149/* aliases_parse.y */
fd1de51a 150int yyparse(void);
86e4d161
MS
151extern FILE *yyin;
152
153/* conf.c */
fd1de51a 154void trim_line(char *);
a0c4afa6 155void parse_conf(const char *);
a0c4afa6 156void parse_authfile(const char *);
86e4d161
MS
157
158/* crypto.c */
9b921550 159void hmac_md5(unsigned char *, int, unsigned char *, int, unsigned char *);
4d5af2b0
SS
160int smtp_auth_md5(int, char *, char *);
161int smtp_init_crypto(int, int);
86e4d161 162
8cbdbd34
SS
163/* dns.c */
164int dns_get_mx_list(const char *, int, struct mx_hostentry **, int);
165
86e4d161 166/* net.c */
fd1de51a
SS
167char *ssl_errstr(void);
168int read_remote(int, int, char *);
169ssize_t send_remote_command(int, const char*, ...);
170int deliver_remote(struct qitem *, const char **);
86e4d161
MS
171
172/* base64.c */
fd1de51a
SS
173int base64_encode(const void *, int, char **);
174int base64_decode(const char *, void *);
86e4d161
MS
175
176/* dma.c */
057afad5 177int add_recp(struct queue *, const char *, int);
28be0b96 178void run_queue(struct queue *);
fd1de51a
SS
179
180/* spool.c */
057afad5
SS
181int newspoolf(struct queue *);
182int linkspool(struct queue *);
de13a881 183int load_queue(struct queue *);
fd1de51a 184void delqueue(struct qitem *);
9aec6ad8 185int acquirespool(struct qitem *);
87bdbc01 186void dropspool(struct queue *, struct qitem *);
fd1de51a
SS
187
188/* local.c */
189int deliver_local(struct qitem *, const char **errmsg);
de13a881 190
28be0b96
SS
191/* mail.c */
192void bounce(struct qitem *, const char *);
f734c0ae 193int readmail(struct queue *, int, int);
28be0b96 194
de13a881
SS
195/* util.c */
196const char *hostname(void);
197void setlogident(const char *, ...);
198void errlog(int, const char *, ...);
199void errlogx(int, const char *, ...);
200void set_username(void);
201void deltmp(void);
a71122e7 202int do_timeout(int, int);
de13a881
SS
203int open_locked(const char *, int, ...);
204char *rfc822date(void);
205int strprefixcmp(const char *, const char *);
ee613428 206void init_random(void);
de13a881 207
86e4d161 208#endif