Code

* Created "old" branch and moved stuff
[gosa.git] / branches / old / gosa-plugins / mail / personal / mail / class_mail-methods-sendmail-cyrus.inc
diff --git a/branches/old/gosa-plugins/mail/personal/mail/class_mail-methods-sendmail-cyrus.inc b/branches/old/gosa-plugins/mail/personal/mail/class_mail-methods-sendmail-cyrus.inc
new file mode 100644 (file)
index 0000000..b80758e
--- /dev/null
@@ -0,0 +1,64 @@
+<?php
+/*
+   This code is part of GOsa (https://gosa.gonicus.de)
+   Copyright (C) 2004  Cajus Pollmeier
+
+   This program is free software; you can redistribute it and/or modify
+   it under the terms of the GNU General Public License as published by
+   the Free Software Foundation; either version 2 of the License, or
+   (at your option) any later version.
+
+   This program is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program; if not, write to the Free Software
+   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
+class mailMethodSendmailCyrus extends mailMethodCyrus
+{
+
+  function mailMethodSendmailCyrus(&$config)
+  {
+    /* Check if the mail account identification attribute
+       is overridden in the configuration file
+     */
+    if($config->get_cfg_value("mail_attrib") != ""){
+      $new_uattrib= strtolower($config->get_cfg_value("mail_attrib"));
+      if(in_array($new_uattrib,array("mail","uid"))){
+        $this->uattrib = $new_uattrib;
+      }else{
+        trigger_error(sprintf("Unsupported MAIL_ATTRIB in gosa configuration specified, use 'mail' or 'uid', instead of '%s'.",            $new_uattrib));
+      }
+    }
+
+    $this->config= $config->data['SERVERS']['IMAP'];
+  }
+
+  function fixAttributesOnLoad(&$mailObject)
+  {
+    /* Remove possible local alias from forwarders */
+    $newForwarder= array();
+    foreach ($mailObject->gosaMailForwardingAddress as $addr){
+      if (!preg_match('/^\\\\/', $addr)){
+        $newForwarder[]= $addr;
+      }
+    }
+    $mailObject->gosaMailForwardingAddress= $newForwarder;
+  }
+
+  function fixAttributesOnStore(&$mailObject)
+  {
+    /* Add local user if checked */
+    if (preg_match("/L/", $mailObject->gosaMailDeliveryMode)) {
+      $mailObject->gosaMailForwardingAddress[]= "\\".$mailObject->uid;
+    }
+  }
+
+}
+
+// vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler:
+?>