2 * Copyright (c) 2008-2014, Simon Schubert <2@0x2c.org>.
3 * Copyright (c) 2008 The DragonFly Project. All rights reserved.
5 * This code is derived from software contributed to The DragonFly Project
6 * by Simon Schubert <2@0x2c.org> and
7 * Matthias Schmidt <matthias@dragonflybsd.org>.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
19 * 3. Neither the name of The DragonFly Project nor the names of its
20 * contributors may be used to endorse or promote products derived
21 * from this software without specific, prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
26 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
27 * COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
28 * INCIDENTAL, SPECIAL, EXEMPLARY OR CONSEQUENTIAL DAMAGES (INCLUDING,
29 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
30 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
31 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
33 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
40 #include <sys/types.h>
41 #include <sys/queue.h>
42 #include <sys/socket.h>
43 #include <arpa/nameser.h>
44 #include <arpa/inet.h>
45 #include <openssl/ssl.h>
49 #define VERSION "DragonFly Mail Agent " DMA_VERSION
52 #define ERRMSG_SIZE 200
53 #define USERNAME_SIZE 50
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 */
57 #define SLEEP_TIMEOUT 30 /* check for queue flush every 30 seconds */
59 #define PATH_MAX 1024 /* Max path len */
61 #define SMTP_PORT 25 /* Default SMTP port */
62 #define CON_TIMEOUT (5*60) /* Connection timeout per RFC5321 */
64 #define STARTTLS 0x002 /* StartTLS support */
65 #define SECURETRANS 0x004 /* SSL/TLS in general */
66 #define NOSSL 0x008 /* Do not use SSL */
67 #define DEFER 0x010 /* Defer mails */
68 #define INSECURE 0x020 /* Allow plain login w/o encryption */
69 #define FULLBOUNCE 0x040 /* Bounce the full message */
70 #define TLS_OPP 0x080 /* Opportunistic STARTTLS */
71 #define NULLCLIENT 0x100 /* Nullclient support */
74 #error Please define CONF_PATH
78 #error Please define LIBEXEC_PATH
81 #define SPOOL_FLUSHFILE "flush"
84 #define DMA_ROOT_USER "mail"
87 #define DMA_GROUP "mail"
96 SLIST_ENTRY(stritem
) next
;
99 SLIST_HEAD(strlist
, stritem
);
102 LIST_ENTRY(alias
) next
;
104 struct strlist dests
;
106 LIST_HEAD(aliases
, alias
);
109 LIST_ENTRY(qitem
) next
;
119 LIST_HEAD(queueh
, qitem
);
130 const char *smarthost
;
133 const char *spooldir
;
134 const char *authpath
;
135 const char *certfile
;
137 const char *mailname
;
138 const char *masquerade_host
;
139 const char *masquerade_user
;
141 /* XXX does not belong into config */
147 SLIST_ENTRY(authuser
) next
;
152 SLIST_HEAD(authusers
, authuser
);
155 struct mx_hostentry
{
157 char addr
[INET6_ADDRSTRLEN
];
160 struct sockaddr_storage sa
;
164 /* global variables */
165 extern struct aliases aliases
;
166 extern struct config config
;
167 extern struct strlist tmpfs
;
168 extern struct authusers authusers
;
169 extern char username
[USERNAME_SIZE
];
170 extern uid_t useruid
;
171 extern const char *logident_base
;
173 extern char neterr
[ERRMSG_SIZE
];
174 extern char errmsg
[ERRMSG_SIZE
];
176 /* aliases_parse.y */
183 void trim_line(char *);
184 void parse_conf(const char *);
185 void parse_authfile(const char *);
188 void hmac_md5(unsigned char *, int, unsigned char *, int, unsigned char *);
189 int smtp_auth_md5(int, char *, char *);
190 int smtp_init_crypto(int, int);
193 int dns_get_mx_list(const char *, int, struct mx_hostentry
**, int);
196 char *ssl_errstr(void);
197 int read_remote(int, int, char *);
198 ssize_t
send_remote_command(int, const char*, ...) __attribute__((__nonnull__(2), __format__ (__printf__
, 2, 3)));
199 int deliver_remote(struct qitem
*);
202 int base64_encode(const void *, int, char **);
203 int base64_decode(const char *, void *);
206 #define EXPAND_ADDR 1
207 #define EXPAND_WILDCARD 2
208 int add_recp(struct queue
*, const char *, int);
209 void run_queue(struct queue
*);
212 int newspoolf(struct queue
*);
213 int linkspool(struct queue
*);
214 int load_queue(struct queue
*);
215 void delqueue(struct qitem
*);
216 int acquirespool(struct qitem
*);
217 void dropspool(struct queue
*, struct qitem
*);
218 int flushqueue_since(unsigned int);
219 int flushqueue_signal(void);
222 int deliver_local(struct qitem
*);
225 void bounce(struct qitem
*, const char *);
226 int readmail(struct queue
*, int, int);
229 const char *hostname(void);
230 void setlogident(const char *, ...) __attribute__((__format__ (__printf__
, 1, 2)));
231 void errlog(int, const char *, ...) __attribute__((__format__ (__printf__
, 2, 3)));
232 void errlogx(int, const char *, ...) __attribute__((__format__ (__printf__
, 2, 3)));
233 void set_username(void);
235 int do_timeout(int, int);
236 int open_locked(const char *, int, ...);
237 char *rfc822date(void);
238 int strprefixcmp(const char *, const char *);
239 void init_random(void);