debug code, new autoreply try
[old-projects.git] / philter / philter / include / plugin_autoreply.inc.php
index c1924aa..3151f34 100644 (file)
@@ -13,22 +13,39 @@ class AutoReplyPlugin extends ActionPlugin {
     function name() { return _i18n('2_auto_reply'); }
 
     function to_js() {
-        $res  = "function(Node, data) {\n"
-            .   "    var i,j;\n"
-            .   "    var ta = document.createElement('textarea');\n"
-            .   "    ta.setAttribute('name', Node.name+'[1]');\n"
-            .   "    ta.setAttribute('cols', '74');\n"
-            .   "    ta.setAttribute('rows', '10');\n"
-            .   "    if(data[1]) ta.value = data[1];\n"
-            .   "\n"
-            .   "    Node.appendChild(document.createElement('br'));\n"
-            .   "    Node.appendChild(document.createTextNode('"._i18n('2_your_mail')."'));\n"
-            .   "    Node.appendChild(document.createElement('br'));\n"
-            .   "    Node.appendChild(ta);\n"
-            .   "}";
-
+        return <<<EOF
+function(Node, data) {
+    var i,j;
+    var ta = document.createElement('textarea');
+    ta.setAttribute('name', Node.name+'[1]');
+    ta.setAttribute('style', 'width:100%;');
+    ta.setAttribute('rows', '10');
+    if(data[1]) ta.value = data[1];
+            
+    Node.appendChild(document.createElement('br'));
+    Node.appendChild(ta);
+}
+EOF;
         return $res;
     }
+    
+    function to_string($_data) {
+        $uid = get_user_id();
+
+        $text = addslashes($_data[1]);
+        $text = str_replace('$', '\$', $text);
+        $lines = split("\n", $text);
+
+        $res = "    if(! /^X-Philter-Autoreply: $uid$/)\n" # TODO : et ne vient pas da démon
+            .  "    {\n"
+            .  "        cc \"| reformail -rt -A'X-Philter-Autoreply: $uid' -A'X-Precedence: junk' \\\n"
+            .  "            | ( cat - ; echo '';";
+        foreach($lines as $line)
+            $res .= " echo '".chop($line)."';";
+        $res.= " \\\n"
+            .  "            ) | $"."SENDMAIL -oi -t\"\n";
+        return $res."    }\n";
+    }
 }
 
 /********************************************************************************