aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorMike Macgirvin <mike@macgirvin.com>2010-07-22 02:12:56 -0700
committerMike Macgirvin <mike@macgirvin.com>2010-07-22 02:12:56 -0700
commita9befec59e2e608b507e6d1f99a5a2fe70978c3f (patch)
tree17d760a15735ab577ca4de75ee6cd968a60c5e75 /mod
parent7ef0207cea2a55624c034752ff1c217e33e77021 (diff)
downloadvolse-hubzilla-a9befec59e2e608b507e6d1f99a5a2fe70978c3f.tar.gz
volse-hubzilla-a9befec59e2e608b507e6d1f99a5a2fe70978c3f.tar.bz2
volse-hubzilla-a9befec59e2e608b507e6d1f99a5a2fe70978c3f.zip
add mail module
Diffstat (limited to 'mod')
-rw-r--r--mod/mail.php85
1 files changed, 85 insertions, 0 deletions
diff --git a/mod/mail.php b/mod/mail.php
new file mode 100644
index 000000000..6bb040879
--- /dev/null
+++ b/mod/mail.php
@@ -0,0 +1,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
+
+
+
+} \ No newline at end of file