gosa-plugin-uw-imap-2.7.4/0000755000175000017500000000000011752422557014334 5ustar cajuscajusgosa-plugin-uw-imap-2.7.4/contrib/0000755000175000017500000000000011752422557015774 5ustar cajuscajusgosa-plugin-uw-imap-2.7.4/contrib/procmail-footer.txt0000644000175000017500000000021711135050601021615 0ustar cajuscajus# Care for cleanups # Remove stale vacation cache :0 * ! \$GOSA_VACATION ?? yes * ! ? test -f \$VACATION_CACHE { rm -f \$VACATION_CACHE } gosa-plugin-uw-imap-2.7.4/contrib/procmail-header.txt0000644000175000017500000000031411135050601021545 0ustar cajuscajus#*** Procmail script for $user *** DROPPRIVS=true # Include variable definitions from procmail library INCLUDERC=\$PMSRC/pm-javar.rc # Check for empty body and discard :0 B: *\$ ! \$NSPC /dev/null gosa-plugin-uw-imap-2.7.4/contrib/procmail-vacation.txt0000644000175000017500000000141411135050601022123 0ustar cajuscajus# Vacation message GOSA_VACATION=yes VACATION_CACHE=\$HOME/.vacation.cache :0 * ^TO_$mail * ! ^FROM_DAEMON * ! ^X-Loop: ($addrlist) * ! ^Precedence:.*(bulk|list|junk) { :0 c: \$HOME/.vacation.\$LOCKEXT * ! ? formail -rD 8192 \$VACATION_CACHE { # Compose reply and add some basic headers :0 fhw | formail -rt \ -A "Precedence: junk" \ -A "X-Loop: $mail" :0 a # Formail succeeded { # Change subject :0 fhw * ^Subject: *\/[^ ].* | formail -I "Subject: vacation (was: \$MATCH)" :0 fb # put message to body | echo -n "$vacmsg" :0 # Send it | \$SENDMAIL } } } gosa-plugin-uw-imap-2.7.4/contrib/procmail-spam.txt0000644000175000017500000000135311135050601021261 0ustar cajuscajus# procmail spam handling GOSA_SPAM="yes" :0 * ! ^From:.*($addrlist) * ! FROM_DAEMON { # Do not add extra headers. This saves external shell call # (formail). Also do not try to kill the message content, # again saving one external call (awk). With these, the # recipe is faster and more CPU friendly. PM_JA_UBE_HDR = "" JA_UBE_ATTACHMENT_ILLEGAL_KILL = "no" JA_UBE_FLAG_FROM_NSLOOKUP = "no" INCLUDERC = \$PMSRC/pm-jaube.rc # Variable "ERROR" is set if message was UBE, record error # to log file with "()\/" :0 : * ERROR ?? ()\/[a-z].* { # Don't save those *.exe, *.zip UBE attachements :0 * ERROR ?? Attachment-FileIllegal /dev/null :0 : $spambox } } gosa-plugin-uw-imap-2.7.4/contrib/procmail-discard.txt0000644000175000017500000000005511135050601021730 0ustar cajuscajus# Discard any local messages :0 : /dev/null gosa-plugin-uw-imap-2.7.4/plugin.dsc0000644000175000017500000000046111336200072016306 0ustar cajuscajus[gosa-plugin] name = uw-imap description = "UW imap mail method" version = 2.6.8 author = "Gero Kuhlmann , Fabian Hickert " maintainer = "GOsa packages maintainers group " homepage = https://oss.gonicus.de/labs/gosa/ depends = mail gosa-plugin-uw-imap-2.7.4/personal/0000755000175000017500000000000011752422557016157 5ustar cajuscajusgosa-plugin-uw-imap-2.7.4/personal/mail/0000755000175000017500000000000011752422557017101 5ustar cajuscajusgosa-plugin-uw-imap-2.7.4/personal/mail/uw-imap/0000755000175000017500000000000011752422557020460 5ustar cajuscajusgosa-plugin-uw-imap-2.7.4/personal/mail/uw-imap/class_mail-methods-uwimap.inc0000644000175000017500000001343311372205115026212 0ustar cajuscajusconfig->data['SERVERS']['IMAP'])){ $this->ServerList = $this->config->data['SERVERS']['IMAP']; } /* Check for required PROCMAIL_PATH configuration */ if($this->config->get_cfg_value("mailMethodUwimap","procMailPath") == ""){ msg_dialog::display(_("Configuration error"),msgPool::invalidConfigurationAttribute("procMailPath"), ERROR_DIALOG); $this->procmaildir = ""; }else{ $this->procmaildir = $this->config->data['MAIN']['PROCMAIL_PATH']; } } public function saveSieveSettings() { if(empty($this->procmaildir)){ @DEBUG (DEBUG_MAIL, __LINE__, __FUNCTION__, __FILE__, "", "MAIL: Skippend writting scripts, 'procMailPath' is not configured"); return; } mailMethod::saveSieveSettings(); /* Map attribute from parent class */ $mail = $this->parent->mail; $gosaMailDeliveryMode = $this->parent->gosaMailDeliveryMode; $gosaMailAlternateAddress = $this->parent->gosaMailAlternateAddress; $gosaMailMaxSize = $this->parent->gosaMailMaxSize; $gosaSpamMailbox = $this->parent->gosaSpamMailbox; $gosaSpamSortLevel = $this->parent->gosaSpamSortLevel; $gosaVacationMessage = $this->parent->gosaVacationMessage; $recipe = ""; $addrlist = $mail; foreach ($gosaMailAlternateAddress as $val){ $addrlist .= "|$val"; } $user = $this->getUAttribValue(); /* Only create a new one, if it is not empty */ if (is_integer(strpos($gosaMailDeliveryMode, "R")) || is_integer(strpos($gosaMailDeliveryMode, "C")) || !is_integer(strpos($gosaMailDeliveryMode, "L")) || is_integer(strpos($gosaMailDeliveryMode, "V")) || is_integer(strpos($gosaMailDeliveryMode, "S"))) { $text= implode ("", file(CONFIG_DIR."/procmail-header.txt")); $text = preg_replace('/"/', '\\"', $text); eval ("\$recipe.=\"$text\";"); } /* Add anti-spam variables */ if (is_integer(strpos($gosaMailDeliveryMode, "S"))) { $spambox = $gosaSpamMailbox; $spamlevel = $gosaSpamSortLevel; $text= implode ("", file(CONFIG_DIR."/procmail-spam.txt")); $text = preg_replace('/"/', '\\"', $text); eval ("\$recipe.=\"$text\";"); } /* Add vacation recipe */ if (is_integer(strpos($gosaMailDeliveryMode, "V"))) { $vacmsg = $gosaVacationMessage; $text= implode ("", file(CONFIG_DIR."/procmail-vacation.txt")); $text = preg_replace('/"/', '\\"', $text); eval ("\$recipe.=\"$text\";"); } /* Check if no local delivery is wanted */ if (!is_integer(strpos($gosaMailDeliveryMode, "L"))) { $text= implode ("", file(CONFIG_DIR."/procmail-discard.txt")); $text = preg_replace('/"/', '\\"', $text); eval ("\$recipe.=\"$text\";"); } /* Write procmail script */ if (!empty($recipe)) { $text= implode ("", file(CONFIG_DIR."/procmail-footer.txt")); $text = preg_replace('/"/', '\\"', $text); eval ("\$recipe.=\"$text\";"); $file = $this->procmaildir . "/" . $this->getUAttribValue(); if (!file_put_contents($file, $recipe)) { msg_dialog::display(_("Error"),(sprintf(_("Unable to write procmail script to '%s'."), $file)),ERROR_DIALOG); } } } static function plInfo() { return ( array( "plProperties" => array( array( "name" => "procMailPath", "type" => "path", "default" => "", "description" => "", "check" => "gosaProperty::isWriteablePath", "migrate" => "", "group" => "mail", "mandatory" => FALSE ) ) ) ); } } // vim:tabstop=2:expandtab:shiftwidth=2:filetype=php:syntax:ruler: ?> gosa-plugin-uw-imap-2.7.4/locale/0000755000175000017500000000000011752422557015573 5ustar cajuscajusgosa-plugin-uw-imap-2.7.4/locale/ru/0000755000175000017500000000000011752422557016221 5ustar cajuscajusgosa-plugin-uw-imap-2.7.4/locale/ru/LC_MESSAGES/0000755000175000017500000000000011752422557020006 5ustar cajuscajusgosa-plugin-uw-imap-2.7.4/locale/ru/LC_MESSAGES/messages.po0000644000175000017500000000160011475426262022151 0ustar cajuscajus# Translation of messages.po to Russian # Valia V. Vaneeva , 2004. # $Id: messages.po,v 1.61 2005/04/18 10:37:13 migor-guest Exp $ msgid "" msgstr "" "Project-Id-Version: messages\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-11-04 15:25+0100\n" "PO-Revision-Date: 2005-04-18 14:35+0300\n" "Last-Translator: Igor Muratov \n" "Language-Team: ALT Linux Team\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: poEdit 1.3.1\n" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:61 #, fuzzy msgid "Configuration error" msgstr "Настроить" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:138 msgid "Error" msgstr "" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:138 #, php-format msgid "Unable to write procmail script to '%s'." msgstr "" gosa-plugin-uw-imap-2.7.4/locale/pl/0000755000175000017500000000000011752422557016206 5ustar cajuscajusgosa-plugin-uw-imap-2.7.4/locale/pl/LC_MESSAGES/0000755000175000017500000000000011752422557017773 5ustar cajuscajusgosa-plugin-uw-imap-2.7.4/locale/pl/LC_MESSAGES/messages.po0000644000175000017500000000155411475426262022146 0ustar cajuscajusmsgid "" msgstr "" "Project-Id-Version: polski\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-11-04 15:25+0100\n" "PO-Revision-Date: 2007-07-14 21:45+0100\n" "Last-Translator: Piotr Rybicki \n" "Language-Team: Piotr Rybicki \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Polish\n" "X-Poedit-Country: POLAND\n" "X-Poedit-SourceCharset: iso-8859-2\n" "X-Poedit-Basepath: tedst\n" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:61 #, fuzzy msgid "Configuration error" msgstr "Plik konfiguracyjny" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:138 msgid "Error" msgstr "Błąd" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:138 #, php-format msgid "Unable to write procmail script to '%s'." msgstr "" gosa-plugin-uw-imap-2.7.4/locale/it/0000755000175000017500000000000011752422557016207 5ustar cajuscajusgosa-plugin-uw-imap-2.7.4/locale/it/LC_MESSAGES/0000755000175000017500000000000011752422557017774 5ustar cajuscajusgosa-plugin-uw-imap-2.7.4/locale/it/LC_MESSAGES/messages.po0000644000175000017500000000166711475426262022154 0ustar cajuscajus# translation of messages.po to Italian # Copyright (c) 2005 B-Open Solutions srl - http://www.bopen.it/ # Copyright (c) 2005 Alessandro Amici # Alessandro Amici , 2005. msgid "" msgstr "" "Project-Id-Version: messages\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-11-04 15:25+0100\n" "PO-Revision-Date: 2005-11-18 15:26+0100\n" "Last-Translator: Alessandro Amici \n" "Language-Team: Italian\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.9.1\n" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:61 #, fuzzy msgid "Configuration error" msgstr "File di configurazione" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:138 msgid "Error" msgstr "" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:138 #, php-format msgid "Unable to write procmail script to '%s'." msgstr "" gosa-plugin-uw-imap-2.7.4/locale/pt_BR/0000755000175000017500000000000011752422557016601 5ustar cajuscajusgosa-plugin-uw-imap-2.7.4/locale/pt_BR/LC_MESSAGES/0000755000175000017500000000000011752422557020366 5ustar cajuscajusgosa-plugin-uw-imap-2.7.4/locale/pt_BR/LC_MESSAGES/messages.po0000644000175000017500000000212711475426262022536 0ustar cajuscajus# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: GOsa plugins - uw-imap\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-11-04 15:25+0100\n" "PO-Revision-Date: 2010-03-25 10:08-0300\n" "Last-Translator: Marcos Amorim \n" "Language-Team: Marcos Amorim Clever de Oliveira " "\n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Portuguese\n" "X-Poedit-Country: BRAZIL\n" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:61 msgid "Configuration error" msgstr "Erro de configuração" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:138 msgid "Error" msgstr "Erro" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:138 #, php-format msgid "Unable to write procmail script to '%s'." msgstr "Impossível escrever o arquivo procmail para: '%s'." gosa-plugin-uw-imap-2.7.4/locale/es/0000755000175000017500000000000011752422557016202 5ustar cajuscajusgosa-plugin-uw-imap-2.7.4/locale/es/LC_MESSAGES/0000755000175000017500000000000011752422557017767 5ustar cajuscajusgosa-plugin-uw-imap-2.7.4/locale/es/LC_MESSAGES/messages.po0000644000175000017500000000214711475426262022141 0ustar cajuscajus# translation of messages.po to # translation of admin.po to # translation of systems.po to # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Benoit Mortier , 2010. msgid "" msgstr "" "Project-Id-Version: messages\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-11-04 15:25+0100\n" "PO-Revision-Date: 2010-01-22 21:18+0100\n" "Last-Translator: Benoit Mortier \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:61 msgid "Configuration error" msgstr "Erreur de configuration" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:138 msgid "Error" msgstr "Error" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:138 #, php-format msgid "Unable to write procmail script to '%s'." msgstr "Impossible d'écrire le script procmail dans '%s'." gosa-plugin-uw-imap-2.7.4/locale/de/0000755000175000017500000000000011752422557016163 5ustar cajuscajusgosa-plugin-uw-imap-2.7.4/locale/de/LC_MESSAGES/0000755000175000017500000000000011752422557017750 5ustar cajuscajusgosa-plugin-uw-imap-2.7.4/locale/de/LC_MESSAGES/messages.po0000644000175000017500000000234511475426262022122 0ustar cajuscajus# translation of messages.po to deutsch # translation of messages.po to # GOsa2 Translations # Copyright (C) 2003 GONICUS GmbH, Germany # This file is distributed under the same license as the GOsa2 package. # # # Alfred Schroeder , 2004. # Cajus Pollmeier , 2004, 2005, 2006, 2008, 2009. # Jan Wenzel , 2004,2005, 2008. # Stefan Koehler , 2005. msgid "" msgstr "" "Project-Id-Version: messages\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-11-04 15:25+0100\n" "PO-Revision-Date: 2010-09-17 11:09+0100\n" "Last-Translator: Fabian Hickert \n" "Language-Team: deutsch \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:61 msgid "Configuration error" msgstr "Konfigurationsfehler" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:138 msgid "Error" msgstr "Fehler" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:138 #, php-format msgid "Unable to write procmail script to '%s'." msgstr "Erlaube das Schreiben des procmail Skriptes nach '%s'." gosa-plugin-uw-imap-2.7.4/locale/fr/0000755000175000017500000000000011752422557016202 5ustar cajuscajusgosa-plugin-uw-imap-2.7.4/locale/fr/LC_MESSAGES/0000755000175000017500000000000011752422557017767 5ustar cajuscajusgosa-plugin-uw-imap-2.7.4/locale/fr/LC_MESSAGES/messages.po0000644000175000017500000000170411475426262022137 0ustar cajuscajus# translation of messages.po to # Benoit Mortier , 2005, 2006, 2007, 2008, 2009. msgid "" msgstr "" "Project-Id-Version: messages\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-11-04 15:25+0100\n" "PO-Revision-Date: 2009-03-06 23:13+0100\n" "Last-Translator: Benoit Mortier \n" "Language-Team: \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:61 msgid "Configuration error" msgstr "Erreur de configuration" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:138 msgid "Error" msgstr "Erreur" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:138 #, php-format msgid "Unable to write procmail script to '%s'." msgstr "Impossible d'écrire le script procmail dans '%s'." gosa-plugin-uw-imap-2.7.4/locale/en/0000755000175000017500000000000011752422557016175 5ustar cajuscajusgosa-plugin-uw-imap-2.7.4/locale/en/LC_MESSAGES/0000755000175000017500000000000011752422557017762 5ustar cajuscajusgosa-plugin-uw-imap-2.7.4/locale/en/LC_MESSAGES/messages.po0000644000175000017500000000047111154321022022110 0ustar cajuscajus#: personal/mail/uw-imap/class_mail-methods-uwimap.inc:61 msgid "Configuration error" msgstr "" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:138 msgid "Error" msgstr "" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:138 #, php-format msgid "Unable to write procmail script to '%s'." msgstr "" gosa-plugin-uw-imap-2.7.4/locale/messages.po0000644000175000017500000000160011475426262017736 0ustar cajuscajus# SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-11-04 15:25+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:61 msgid "Configuration error" msgstr "" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:138 msgid "Error" msgstr "" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:138 #, php-format msgid "Unable to write procmail script to '%s'." msgstr "" gosa-plugin-uw-imap-2.7.4/locale/zh/0000755000175000017500000000000011752422557016214 5ustar cajuscajusgosa-plugin-uw-imap-2.7.4/locale/zh/LC_MESSAGES/0000755000175000017500000000000011752422557020001 5ustar cajuscajusgosa-plugin-uw-imap-2.7.4/locale/zh/LC_MESSAGES/messages.po0000644000175000017500000000172311475426262022152 0ustar cajuscajus# translation of messages.po to Chinese Simplified # Copyright (C) 2003 GONICUS GmbH, Germany # This file is distributed under the same license as the GOsa2 package. # # Jiang Xin , 2007. msgid "" msgstr "" "Project-Id-Version: messages\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-11-04 15:25+0100\n" "PO-Revision-Date: 2007-06-03 12:27+0800\n" "Last-Translator: Jiang Xin \n" "Language-Team: Chinese Simplified \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: KBabel 1.11.4\n" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:61 #, fuzzy msgid "Configuration error" msgstr "配置文件" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:138 msgid "Error" msgstr "错误" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:138 #, php-format msgid "Unable to write procmail script to '%s'." msgstr "" gosa-plugin-uw-imap-2.7.4/locale/nl/0000755000175000017500000000000011752422557016204 5ustar cajuscajusgosa-plugin-uw-imap-2.7.4/locale/nl/LC_MESSAGES/0000755000175000017500000000000011752422557017771 5ustar cajuscajusgosa-plugin-uw-imap-2.7.4/locale/nl/LC_MESSAGES/messages.po0000644000175000017500000000214111475426262022135 0ustar cajuscajus# translation of messages.po to Dutch # GOsa2 Translations # Copyright (C) 2003 GONICUS GmbH, Germany # This file is distributed under the same license as the GOsa2 package. # Alfred Schroeder , 2004. # Cajus Pollmeier , 2004. # # Translator: # Niels Klomp (CareWorks ICT Services) , 2005. msgid "" msgstr "" "Project-Id-Version: messages\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-11-04 15:25+0100\n" "PO-Revision-Date: 2006-06-02 16:58+0100\n" "Last-Translator: Niels Klomp (CareWorks ICT Services) \n" "Language-Team: CareWorks ICT Services \n" "Language: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:61 #, fuzzy msgid "Configuration error" msgstr "Configuratie bestand" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:138 msgid "Error" msgstr "Fout" #: personal/mail/uw-imap/class_mail-methods-uwimap.inc:138 #, php-format msgid "Unable to write procmail script to '%s'." msgstr ""