Warning: Attempt to read property "date" on null in /usr/local/www/websvn.planix.org/blame.php on line 247

Warning: Attempt to read property "msg" on null in /usr/local/www/websvn.planix.org/blame.php on line 247
WebSVN – planix.SVN – Blame – /os/branches/feature_posix/sys/src/cmd/upas/ml/dat.h – Rev 2

Subversion Repositories planix.SVN

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2 - 1
 
2
#include "../smtp/smtp.h"
3
#include "../smtp/y.tab.h"
4
 
5
typedef struct Addr Addr;
6
struct Addr
7
{
8
	char *addr;
9
	Addr *next;
10
};
11
 
12
String *from;
13
String *sender;
14
Field *firstfield;
15
int na;
16
Addr *al;
17
 
18
extern String*	getaddr(Node *p);
19
extern void	getaddrs(void);
20
extern void	writeaddr(char *file, char *addr, int, char *);
21
extern void	remaddr(char *addr);
22
extern int	addaddr(char *addr);
23
extern void	readaddrs(char *file);
24
extern int	startmailer(char *name);
25
extern void	sendnotification(char *addr, char *listname, int rem);