Initial import (again)
[srvx.git] / src / sendmail.h
1 /* sendmail.h - mail sending utilities
2  * Copyright 2002 srvx Development Team
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.  Important limitations are
8  * listed in the COPYING file that accompanies this software.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, email srvx-maintainers@srvx.net.
17  */
18
19 #if !defined(SENDMAIL_H)
20 #define SENDMAIL_H
21
22 void sendmail_init(void);
23 void sendmail(struct userNode *from, struct handle_info *to, const char *subject, const char *body, int first_time);
24 const char *sendmail_prohibited_address(const char *addr);
25
26 #endif