Code

Removed duplicated code
[gosa.git] / gosa-plugins / mail / personal / mail / class_mail-methods.inc
index b22c042683cb4041fa0b6949cb5f98cbd2fe3e92..7b4abf37473245aac27d15e95a0cd29205ee8815 100644 (file)
@@ -676,6 +676,24 @@ class mailMethod{
   {
     return(TRUE);
   }
+
+
+  /*! \brief  Returns the configured mailMethod
+      @return String  the configured mail method or ""
+   */
+  static public function get_current_method($config)
+  {
+    global $class_mapping;
+    $method= $config->get_cfg_value("mailmethod");
+    $cls = get_correct_class_name("mailMethod$method");
+    foreach($class_mapping as $class => $path){
+      if($class == $cls){
+        return($class);
+      }
+    }
+    return("");
+  }
+
 }