aboutsummaryrefslogtreecommitdiffstats
path: root/mod/mail.php
blob: 6bb040879d0b0952b759b3f67e47a55e27e48ae8 (plain) (blame)
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
<?php


function mail_post(&$a) {

	// handles mail created by me, or mail posted to my profile page.
	// If remote we must have a DFRN-url.

	if((x($_POST,'dfrn_url')) && (strlen($_POST['dfrn_url']))) {
		// get post params
		$remote = true;
		
		// check blacklist


		// scrape url



		// sanitise

		// store


		// notify


	}

	if(local_user()) {


		// get data


		// sanitise


		// store


		// notify




	}
	








}


function mail_content(&$a) {

	// remot mail


	// list mail





	// read message




	// reply




	// new mail



}