1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
/*
* $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 */
|