]> git.ipfire.org Git - people/ms/dma.git/blame - dma.h
dma.8: correct logic of comment/uncomment wording
[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
1b00f90e 47#define VERSION "DragonFly Mail Agent"
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 */
86e4d161
MS
57#define CON_TIMEOUT 120 /* Connection timeout */
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 */
1b00f90e 65
fd1de51a 66#ifndef CONF_PATH
1b00f90e 67#define CONF_PATH "/etc/dma/dma.conf" /* Default path to dma.conf */
fd1de51a 68#endif
86e4d161
MS
69
70struct stritem {
71 SLIST_ENTRY(stritem) next;
72 char *str;
73};
74SLIST_HEAD(strlist, stritem);
75
76struct alias {
77 LIST_ENTRY(alias) next;
78 char *alias;
79 struct strlist dests;
80};
81LIST_HEAD(aliases, alias);
82
83struct qitem {
84 LIST_ENTRY(qitem) next;
85 const char *sender;
86 char *addr;
87 char *queuefn;
fd1de51a 88 char *mailfn;
86e4d161 89 char *queueid;
87bdbc01 90 FILE *queuef;
fd1de51a 91 FILE *mailf;
e0a95d28 92 int remote;
86e4d161
MS
93};
94LIST_HEAD(queueh, qitem);
95
96struct queue {
97 struct queueh queue;
4d5af2b0 98 char *id;
87bdbc01 99 FILE *mailf;
86e4d161 100 char *tmpf;
057afad5 101 const char *sender;
86e4d161
MS
102};
103
104struct config {
a0c4afa6 105 const char *smarthost;
86e4d161 106 int port;
a0c4afa6
SS
107 const char *aliases;
108 const char *spooldir;
a0c4afa6
SS
109 const char *authpath;
110 const char *certfile;
86e4d161 111 int features;
a0c4afa6
SS
112 const char *mailname;
113 const char *mailnamefile;
114
115 /* XXX does not belong into config */
86e4d161 116 SSL *ssl;
86e4d161
MS
117};
118
119
86e4d161
MS
120struct authuser {
121 SLIST_ENTRY(authuser) next;
122 char *login;
123 char *password;
124 char *host;
125};
126SLIST_HEAD(authusers, authuser);
127
fd1de51a 128
8cbdbd34
SS
129struct mx_hostentry {
130 char host[MAXDNAME];
131 char addr[INET6_ADDRSTRLEN];
132 int pref;
133 struct addrinfo ai;
134 struct sockaddr_storage sa;
135};
136
137
fd1de51a 138/* global variables */
86e4d161 139extern struct aliases aliases;
a0c4afa6 140extern struct config config;
fd1de51a 141extern struct strlist tmpfs;
fd1de51a 142extern struct authusers authusers;
87bdbc01 143extern const char *username;
de13a881 144extern const char *logident_base;
86e4d161 145
7a73c463
SS
146extern char neterr[BUF_SIZE];
147
86e4d161 148/* aliases_parse.y */
fd1de51a 149int yyparse(void);
86e4d161
MS
150extern FILE *yyin;
151
152/* conf.c */
fd1de51a 153void trim_line(char *);
a0c4afa6 154void parse_conf(const char *);
a0c4afa6 155void parse_authfile(const char *);
86e4d161
MS
156
157/* crypto.c */
9b921550 158void hmac_md5(unsigned char *, int, unsigned char *, int, unsigned char *);
4d5af2b0
SS
159int smtp_auth_md5(int, char *, char *);
160int smtp_init_crypto(int, int);
86e4d161 161
8cbdbd34
SS
162/* dns.c */
163int dns_get_mx_list(const char *, int, struct mx_hostentry **, int);
164
86e4d161 165/* net.c */
fd1de51a
SS
166char *ssl_errstr(void);
167int read_remote(int, int, char *);
168ssize_t send_remote_command(int, const char*, ...);
169int deliver_remote(struct qitem *, const char **);
86e4d161
MS
170
171/* base64.c */
fd1de51a
SS
172int base64_encode(const void *, int, char **);
173int base64_decode(const char *, void *);
86e4d161
MS
174
175/* dma.c */
057afad5 176int add_recp(struct queue *, const char *, int);
28be0b96 177void run_queue(struct queue *);
fd1de51a
SS
178
179/* spool.c */
057afad5
SS
180int newspoolf(struct queue *);
181int linkspool(struct queue *);
de13a881 182int load_queue(struct queue *);
fd1de51a 183void delqueue(struct qitem *);
9aec6ad8 184int acquirespool(struct qitem *);
87bdbc01 185void dropspool(struct queue *, struct qitem *);
fd1de51a
SS
186
187/* local.c */
188int deliver_local(struct qitem *, const char **errmsg);
de13a881 189
28be0b96
SS
190/* mail.c */
191void bounce(struct qitem *, const char *);
f734c0ae 192int readmail(struct queue *, int, int);
28be0b96 193
de13a881
SS
194/* util.c */
195const char *hostname(void);
196void setlogident(const char *, ...);
197void errlog(int, const char *, ...);
198void errlogx(int, const char *, ...);
199void set_username(void);
200void deltmp(void);
201int open_locked(const char *, int, ...);
202char *rfc822date(void);
203int strprefixcmp(const char *, const char *);
ee613428 204void init_random(void);
de13a881 205
86e4d161 206#endif