diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2011-04-14 17:06:44 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2011-04-14 17:06:44 +0000 |
commit | 939b40997b1415575cf660f12a25b6413bec527c (patch) | |
tree | 49fbc509c09719d53f6d41b63374c53e3819e792 /usr.sbin/smtpd/queue_fsqueue.c | |
parent | 261dcbec2c4c9a0c15d4408e30c8034c82c44e77 (diff) |
smtpd makes too many assumptions about the structure and layout of its
disk-based queue, it makes it near impossible to make changes to it without
editing twenty files... how am i going to implement mongodb support ? :-)
bring a new queue_backend API which hides the details of the disk-based
queue to smtpd. it is not "plugged in" yet and I'm filling the holes.
Diffstat (limited to 'usr.sbin/smtpd/queue_fsqueue.c')
-rw-r--r-- | usr.sbin/smtpd/queue_fsqueue.c | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/usr.sbin/smtpd/queue_fsqueue.c b/usr.sbin/smtpd/queue_fsqueue.c new file mode 100644 index 00000000000..ee2766c69cd --- /dev/null +++ b/usr.sbin/smtpd/queue_fsqueue.c @@ -0,0 +1,55 @@ +/* $OpenBSD: queue_fsqueue.c,v 1.1 2011/04/14 17:06:43 gilles Exp $ */ + +/* + * Copyright (c) 2011 Gilles Chehade <gilles@openbsd.org> + * + * Permission to use, copy, modify, and distribute this software for any + * purpose with or without fee is hereby granted, provided that the above + * copyright notice and this permission notice appear in all copies. + * + * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR + * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES + * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN + * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF + * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + */ + +#include <sys/types.h> +#include <sys/queue.h> +#include <sys/tree.h> +#include <sys/param.h> +#include <sys/socket.h> +#include <sys/stat.h> + +#include <event.h> +#include <imsg.h> +#include <libgen.h> +#include <pwd.h> +#include <stdio.h> +#include <stdlib.h> +#include <string.h> +#include <unistd.h> + +#include "smtpd.h" +#include "log.h" + +int queue_fsqueue_message(struct smtpd *, enum queue_kind, + enum queue_op, char *); +int queue_fsqueue_envelope(struct smtpd *, enum queue_kind, + enum queue_op , struct message *); + +int +queue_fsqueue_message(struct smtpd *env, enum queue_kind qkind, + enum queue_op qop, char *msgid) +{ + return 0; +} + +int +queue_fsqueue_envelope(struct smtpd *env, enum queue_kind qkind, + enum queue_op qop, struct message *envelope) +{ + return 0; +} |