]> git.ipfire.org Git - people/ms/dma.git/blame - dma.h
dma: Move comment.
[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.
34 *
c507d897 35 * $DragonFly: src/libexec/dma/dma.h,v 1.8 2008/09/30 17:47:21 swildner Exp $
86e4d161
MS
36 */
37
38#ifndef DMA_H
39#define DMA_H
40
86e4d161 41#include <openssl/ssl.h>
86e4d161
MS
42
43#include <sys/queue.h>
65bec70e 44#include <stdint.h>
86e4d161
MS
45#include <stdio.h>
46
dd475b5e
SS
47#ifndef __unused
48#ifdef __GNUC__
49#define __unused __attribute__((unused))
50#else
51#define __unused
52#endif /* __GNUC__ */
53#endif
86e4d161 54
1b00f90e 55#define VERSION "DragonFly Mail Agent"
86e4d161
MS
56
57#define BUF_SIZE 2048
58#define MIN_RETRY 300 /* 5 minutes */
59#define MAX_RETRY (3*60*60) /* retry at least every 3 hours */
60#define MAX_TIMEOUT (5*24*60*60) /* give up after 5 days */
dd475b5e 61#ifndef PATH_MAX
86e4d161 62#define PATH_MAX 1024 /* Max path len */
dd475b5e 63#endif
1b00f90e 64#define SMTP_PORT 25 /* Default SMTP port */
86e4d161
MS
65#define CON_TIMEOUT 120 /* Connection timeout */
66
1b00f90e
MS
67#define VIRTUAL 0x001 /* Support for address rewrites */
68#define STARTTLS 0x002 /* StartTLS support */
69#define SECURETRANS 0x004 /* SSL/TLS in general */
50c8e68a 70#define NOSSL 0x008 /* Do not use SSL */
1b00f90e
MS
71#define DEFER 0x010 /* Defer mails */
72#define INSECURE 0x020 /* Allow plain login w/o encryption */
8ee63931 73#define FULLBOUNCE 0x040 /* Bounce the full message */
1b00f90e
MS
74
75#define CONF_PATH "/etc/dma/dma.conf" /* Default path to dma.conf */
86e4d161
MS
76
77struct stritem {
78 SLIST_ENTRY(stritem) next;
79 char *str;
80};
81SLIST_HEAD(strlist, stritem);
82
83struct alias {
84 LIST_ENTRY(alias) next;
85 char *alias;
86 struct strlist dests;
87};
88LIST_HEAD(aliases, alias);
89
90struct qitem {
91 LIST_ENTRY(qitem) next;
92 const char *sender;
93 char *addr;
94 char *queuefn;
95 char *queueid;
96 FILE *queuef;
97 off_t hdrlen;
e0a95d28 98 int remote;
23a44f07 99 int locked;
86e4d161
MS
100};
101LIST_HEAD(queueh, qitem);
102
103struct queue {
104 struct queueh queue;
105 uintmax_t id;
106 int mailfd;
107 char *tmpf;
108};
109
110struct config {
111 char *smarthost;
112 int port;
113 char *aliases;
114 char *spooldir;
115 char *virtualpath;
116 char *authpath;
117 char *certfile;
118 int features;
86e4d161 119 SSL *ssl;
ebe7ade7
SS
120 char *mailname;
121 char *mailnamefile;
86e4d161
MS
122};
123
124
125struct virtuser {
126 SLIST_ENTRY(virtuser) next;
127 char *login;
128 char *address;
129};
130SLIST_HEAD(virtusers, virtuser);
131
132struct authuser {
133 SLIST_ENTRY(authuser) next;
134 char *login;
135 char *password;
136 char *host;
137};
138SLIST_HEAD(authusers, authuser);
139
140extern struct aliases aliases;
141
7a73c463
SS
142extern char neterr[BUF_SIZE];
143
86e4d161
MS
144/* aliases_parse.y */
145extern int yyparse(void);
146extern FILE *yyin;
147
148/* conf.c */
149extern void trim_line(char *);
150extern int parse_conf(const char *, struct config *);
151extern int parse_virtuser(const char *);
152extern int parse_authfile(const char *);
153
154/* crypto.c */
c507d897
SW
155extern void hmac_md5(unsigned char *, int, unsigned char *, int, caddr_t);
156extern int smtp_auth_md5(struct qitem *, int, char *, char *);
86e4d161 157extern int smtp_init_crypto(struct qitem *, int, int);
86e4d161
MS
158
159/* net.c */
53885e5a 160extern char *ssl_errstr(void);
bf28fcc6 161extern int read_remote(int, int, char *);
86e4d161 162extern ssize_t send_remote_command(int, const char*, ...);
09da7b5e 163extern int deliver_remote(struct qitem *, const char **);
86e4d161
MS
164
165/* base64.c */
166extern int base64_encode(const void *, int, char **);
bf28fcc6 167extern int base64_decode(const char *, void *);
86e4d161
MS
168
169/* dma.c */
170extern char * hostname(void);
171#endif