X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=mutt_libesmtp.h;h=c11ee2c76d2ed976668012466669b242347ace12;hp=9470792666a71f0e38248e92d15c0676b48fba45;hb=6ebff74ad242d4c56fb7762965b19cee14fd2daa;hpb=6833ce8bdca2d64e14485118f2a4417b7e1cb1b1;ds=sidebyside diff --git a/mutt_libesmtp.h b/mutt_libesmtp.h index 9470792..c11ee2c 100644 --- a/mutt_libesmtp.h +++ b/mutt_libesmtp.h @@ -1,10 +1,23 @@ -#if !defined(LIBESMTP_H) -#define LIBESMTP_H +/* + * Copyright notice from original mutt: + * [none] + * + * This file is part of mutt-ng, see http://www.muttng.org/. + * It's licensed under the GNU General Public License, + * please see the file GPL in the top level source directory. + */ -int -mutt_invoke_libesmtp (ADDRESS *from, /* the sender */ - ADDRESS *to, ADDRESS *cc, ADDRESS *bcc, /* recips */ - const char *msg, /* file containing message */ - int eightbit); /* message contains 8bit chars */ +#ifndef _MUTT_LIBESMTP_H +#define _MUTT_LIBESMTP_H -#endif /* !defined(LIBESMTP_H) */ +#if defined (USE_LIBESMTP) && (defined (USE_SSL) || defined (USE_GNUTLS)) +int mutt_libesmtp_check_usetls (const char* option, unsigned long p, + char* errbuf, size_t errlen); +#endif + +int mutt_libesmtp_invoke (address_t * from, /* the sender */ + address_t * to, address_t * cc, address_t * bcc, /* recips */ + const char *msg, /* file containing message */ + int eightbit); /* message contains 8bit chars */ + +#endif /* !_MUTT_LIBESMTP_H */