]> git.mxchange.org Git - friendica.git/commitdiff
add mail module
authorMike Macgirvin <mike@macgirvin.com>
Thu, 22 Jul 2010 09:12:56 +0000 (02:12 -0700)
committerMike Macgirvin <mike@macgirvin.com>
Thu, 22 Jul 2010 09:12:56 +0000 (02:12 -0700)
mod/mail.php [new file with mode: 0644]

diff --git a/mod/mail.php b/mod/mail.php
new file mode 100644 (file)
index 0000000..6bb0408
--- /dev/null
@@ -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