]> git.ipfire.org Git - people/ms/dma.git/blame - dma.h
dma: initialize queue structures
[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
86e4d161 39#include <openssl/ssl.h>
86e4d161
MS
40
41#include <sys/queue.h>
86e4d161 42
dd475b5e
SS
43#ifndef __unused
44#ifdef __GNUC__
45#define __unused __attribute__((unused))
46#else
47#define __unused
48#endif /* __GNUC__ */
49#endif
86e4d161 50
1b00f90e 51#define VERSION "DragonFly Mail Agent"
86e4d161
MS
52
53#define BUF_SIZE 2048
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 */
dd475b5e 57#ifndef PATH_MAX
86e4d161 58#define PATH_MAX 1024 /* Max path len */
dd475b5e 59#endif
1b00f90e 60#define SMTP_PORT 25 /* Default SMTP port */
86e4d161
MS
61#define CON_TIMEOUT 120 /* Connection timeout */
62
1b00f90e
MS
63#define VIRTUAL 0x001 /* Support for address rewrites */
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 */
1b00f90e 70
fd1de51a 71#ifndef CONF_PATH
1b00f90e 72#define CONF_PATH "/etc/dma/dma.conf" /* Default path to dma.conf */
fd1de51a 73#endif
86e4d161
MS
74
75struct stritem {
76 SLIST_ENTRY(stritem) next;
77 char *str;
78};
79SLIST_HEAD(strlist, stritem);
80
81struct alias {
82 LIST_ENTRY(alias) next;
83 char *alias;
84 struct strlist dests;
85};
86LIST_HEAD(aliases, alias);
87
88struct qitem {
89 LIST_ENTRY(qitem) next;
90 const char *sender;
91 char *addr;
92 char *queuefn;
fd1de51a 93 char *mailfn;
86e4d161 94 char *queueid;
87bdbc01 95 FILE *queuef;
fd1de51a 96 FILE *mailf;
86e4d161 97 off_t hdrlen;
e0a95d28 98 int remote;
86e4d161
MS
99};
100LIST_HEAD(queueh, qitem);
101
102struct queue {
103 struct queueh queue;
4d5af2b0 104 char *id;
87bdbc01 105 FILE *mailf;
86e4d161
MS
106 char *tmpf;
107};
108
109struct config {
110 char *smarthost;
111 int port;
112 char *aliases;
113 char *spooldir;
114 char *virtualpath;
115 char *authpath;
116 char *certfile;
117 int features;
86e4d161 118 SSL *ssl;
ebe7ade7
SS
119 char *mailname;
120 char *mailnamefile;
86e4d161
MS
121};
122
123
124struct virtuser {
125 SLIST_ENTRY(virtuser) next;
126 char *login;
127 char *address;
128};
129SLIST_HEAD(virtusers, virtuser);
130
131struct authuser {
132 SLIST_ENTRY(authuser) next;
133 char *login;
134 char *password;
135 char *host;
136};
137SLIST_HEAD(authusers, authuser);
138
fd1de51a
SS
139
140/* global variables */
86e4d161 141extern struct aliases aliases;
fd1de51a
SS
142extern struct config *config;
143extern struct strlist tmpfs;
144extern struct virtusers virtusers;
145extern struct authusers authusers;
87bdbc01 146extern const char *username;
de13a881 147extern const char *logident_base;
86e4d161 148
7a73c463
SS
149extern char neterr[BUF_SIZE];
150
86e4d161 151/* aliases_parse.y */
fd1de51a 152int yyparse(void);
86e4d161
MS
153extern FILE *yyin;
154
155/* conf.c */
fd1de51a
SS
156void trim_line(char *);
157int parse_conf(const char *);
158int parse_virtuser(const char *);
159int parse_authfile(const char *);
86e4d161
MS
160
161/* crypto.c */
fd1de51a 162void hmac_md5(unsigned char *, int, unsigned char *, int, caddr_t);
4d5af2b0
SS
163int smtp_auth_md5(int, char *, char *);
164int smtp_init_crypto(int, int);
86e4d161
MS
165
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 */
fd1de51a 177int add_recp(struct queue *, const char *, const char *, int);
28be0b96 178void run_queue(struct queue *);
fd1de51a
SS
179
180/* spool.c */
181int newspoolf(struct queue *, const char *);
87bdbc01 182int linkspool(struct queue *, const char *);
de13a881 183int load_queue(struct queue *);
fd1de51a 184void delqueue(struct qitem *);
87bdbc01
SS
185int aquirespool(struct qitem *);
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 *);
193int readmail(struct queue *, const char *, int);
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);
202int open_locked(const char *, int, ...);
203char *rfc822date(void);
204int strprefixcmp(const char *, const char *);
205
86e4d161 206#endif