take more cruft to the bin
[apps/madmutt.git] / mutt_libesmtp.h
1 /*
2  * Copyright notice from original mutt:
3  * [none]
4  *
5  * This file is part of mutt-ng, see http://www.muttng.org/.
6  * It's licensed under the GNU General Public License,
7  * please see the file GPL in the top level source directory.
8  */
9
10 #ifndef _MUTT_LIBESMTP_H
11 #define _MUTT_LIBESMTP_H
12
13 #ifdef USE_LIBESMTP
14 #if (defined (USE_SSL) || defined (USE_GNUTLS))
15 int mutt_libesmtp_check_usetls (const char* option, unsigned long p,
16                                 char* errbuf, ssize_t errlen);
17 #endif
18
19 int mutt_libesmtp_invoke (address_t * from,       /* the sender */
20                           address_t * to, address_t * cc, address_t * bcc,    /* recips */
21                           const char *msg,      /* file containing message */
22                           int eightbit);        /* message contains 8bit chars */
23 #endif
24
25 #endif /* !_MUTT_LIBESMTP_H */