diff --git a/ifttt/README.md b/ifttt/README.md
new file mode 100644
index 00000000..3455116a
--- /dev/null
+++ b/ifttt/README.md
@@ -0,0 +1,20 @@
+IFTTT Connector
+===============
+
+The purpose of this connector is to use [IFTTT](http://www.ifttt.com)
+to mirror posts from remote networks like Facebook.
+
+IFTTT (IF This Then That) is a service that triggers commands on
+definable conditions.
+
+Its main purpose is to mirror your own posts from Facebook as if they
+would have been posted directly on Friendica but it should be possible
+to mirror posts from other networks as well.
+
+Every time when IFTTT detects that there is a new post on the remote
+network, it triggers an HTTP POST call on the Friendica server that
+creates a post from the connected account.
+
+By now there is a posting loop detection for Facebook but not for any
+other network. So please be careful to not mirror from networks where
+you post your items via Friendica.
diff --git a/ifttt/ifttt.php b/ifttt/ifttt.php
new file mode 100644
index 00000000..3203fec4
--- /dev/null
+++ b/ifttt/ifttt.php
@@ -0,0 +1,177 @@
+
+ */
+
+require_once("mod/item.php");
+require_once("include/items.php");
+
+function ifttt_install() {
+ register_hook('connector_settings', 'addon/ifttt/ifttt.php', 'ifttt_settings');
+ register_hook('connector_settings_post','addon/ifttt/ifttt.php', 'ifttt_settings_post');
+}
+
+function ifttt_uninstall() {
+ unregister_hook('connector_settings', 'addon/ifttt/ifttt.php', 'ifttt_settings');
+ unregister_hook('connector_settings_post', 'addon/ifttt/ifttt.php', 'ifttt_settings_post');
+}
+
+function ifttt_module() {
+}
+
+function ifttt_content(&$a) {
+}
+
+function ifttt_settings(&$a,&$s) {
+
+ if(! local_user())
+ return;
+
+ $key = get_pconfig(local_user(),'ifttt','key');
+
+ if (!$key) {
+ $key = substr(random_string(),0,20);
+ set_pconfig(local_user(),'ifttt','key', $key);
+ }
+
+ $s .= '';
+ $s .= '
'. t('IFTTT Mirror').'
';
+ $s .= '';
+ $s .= '
';
+ $s .= '';
+ $s .= '
'. t('IFTTT Mirror').'
';
+ $s .= '';
+
+ $s .= '
';
+ $s .= '
'.t("Create an account at IFTTT. Create three Facebook recipes that are connected with 'Maker' with the following parameters:").'