/* 
   Copyright (C) Andrew Tridgell 1998

   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 2 of the License, or
   (at your option) any later version.
   
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
   
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/

#include "config.h"
#include "includes.h"

struct user_info {
	char *email;
	char *state;
	char *password;
	char *conceal;
	char *name;
	int matched;
};

#include "proto.h"

#define NS(s) ((s)?(s):"(NULL)")

#define BASE_DIRECTORY "/data/local/listproc/weblist"
#define LIST_DIRECTORY "/data/local/listproc/lists"

#define MAXUSERS 20000
#define USERS_PER_PAGE 10

#define SMTP_ADDRESS "127.0.0.1"
#define MAILER NULL
#define GZIP_PATH "/usr/bin/gzip"
#define user_address(s) (s)
#define lp_gzip_path() GZIP_PATH
#define lp_display_binary() 0

#define FROM_ADDRESS "root@samba.org"
#define SUBSCRIBE_ADDRESS "listproc@samba.org"

int slprintf(char *str, int n, char *format, ...)
#ifdef __GNUC__
     __attribute__ ((format (printf, 3, 4)))
#endif
;
