diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2011-06-11 12:12:46 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2011-06-11 12:12:46 -0400 |
commit | 279010bc0791556e63b4951d83a2c45252142b80 (patch) | |
tree | 2f0ca07764a555764bb1f5a628a3468e88bf0c59 /src/LYMail.h | |
parent | 0b30d0d375231ff07227872f2d1d25f005e43e98 (diff) | |
download | lynx-snapshots-279010bc0791556e63b4951d83a2c45252142b80.tar.gz |
snapshot of project "lynx", label v2_8_8dev_9a
Diffstat (limited to 'src/LYMail.h')
-rw-r--r-- | src/LYMail.h | 88 |
1 files changed, 0 insertions, 88 deletions
diff --git a/src/LYMail.h b/src/LYMail.h deleted file mode 100644 index f75f686b..00000000 --- a/src/LYMail.h +++ /dev/null @@ -1,88 +0,0 @@ -/* - * $LynxId: LYMail.h,v 1.17 2011/06/02 10:37:23 tom Exp $ - */ -#ifndef LYMAIL_H -#define LYMAIL_H - -#ifndef LYSTRUCTS_H -#include <LYStructs.h> -#endif /* LYSTRUCTS_H */ - -#ifdef __cplusplus -extern "C" { -#endif - -#ifdef SH_EX -#undef USE_BLAT_MAILER -#define USE_BLAT_MAILER 1 -#endif - -#ifndef USE_ALT_BLAT_MAILER -#define USE_ALT_BLAT_MAILER 0 -#endif - -#ifndef USE_BLAT_MAILER -#define USE_BLAT_MAILER 0 -#endif - -#ifndef ALTBLAT_MAIL_FLAGS -#define ALTBLAT_MAIL_FLAGS "" -#endif - -#ifndef BLAT_MAIL_FLAGS -#define BLAT_MAIL_FLAGS "" -#endif - -#ifdef VMS -#define USE_VMS_MAILER 1 -#else -#define USE_VMS_MAILER 0 -#endif - -#ifndef SYSTEM_MAIL -#define SYSTEM_MAIL "sendmail" -#endif - -#ifndef SYSTEM_MAIL_FLAGS -#define SYSTEM_MAIL_FLAGS "" -#endif - -/* - * Ifdef's in case we have a working popen/pclose, useful for piping to the - * mail program. - */ -#ifndef CAN_PIPE_TO_MAILER -#if !defined(HAVE_POPEN) || USE_VMS_MAILER || defined(DOSPATH) || defined(__CYGWIN__) -#define CAN_PIPE_TO_MAILER 0 -#else -#define CAN_PIPE_TO_MAILER 1 -#endif -#endif - - extern BOOLEAN term_letter; - - extern BOOLEAN LYSystemMail(void); - extern BOOLEAN LYMailPMDF(void); - extern FILE *LYPipeToMailer(void); - extern int LYSendMailFile(char *the_address, - char *the_filename, - char *the_subject, - char *the_ccaddr, - char *message); - extern void mailform(const char *mailto_address, - const char *mailto_subject, - const char *mailto_content, - const char *mailto_type); - extern void mailmsg(int cur, - char *owner_address, - char *filename, - char *linkname); - extern void reply_by_mail(char *mail_address, - char *filename, - const char *title, - const char *refid); - -#ifdef __cplusplus -} -#endif -#endif /* LYMAIL_H */ |