--- php-imap-5.2.3.orig/php_imap.c +++ php-imap-5.2.3/php_imap.c @@ -70,6 +70,7 @@ static void _php_imap_add_body(zval *arg, BODY *body TSRMLS_DC); static void _php_imap_parse_address(ADDRESS *addresslist, char **fulladdress, zval *paddress TSRMLS_DC); static int _php_imap_address_size(ADDRESS *addresslist); +static void _php_rfc822_write_address_len (char *dest, ADDRESS *adr, int len); /* the gets we use */ static char *php_mail_gets(readfn_t f, void *stream, unsigned long size, GETS_DATA *md); @@ -2137,7 +2138,7 @@ } string[0]='\0'; - rfc822_write_address(string, addr); + _php_rfc822_write_address_len(string, addr, sizeof(string)); RETVAL_STRING(string, 1); } /* }}} */ @@ -2906,13 +2907,13 @@ if (env->from && _php_imap_address_size(env->from) < MAILTMPLEN) { env->from->next=NULL; address[0] = '\0'; - rfc822_write_address(address, env->from); + _php_rfc822_write_address_len(address, env->from, sizeof(address)); add_property_string(myoverview, "from", address, 1); } if (env->to && _php_imap_address_size(env->to) < MAILTMPLEN) { env->to->next = NULL; address[0] = '\0'; - rfc822_write_address(address, env->to); + _php_rfc822_write_address_len(address, env->to, sizeof(address)); add_property_string(myoverview, "to", address, 1); } if (env->date) { @@ -3881,6 +3882,34 @@ } /* }}} */ + + +/* {{{ _php_rfc822_soutr + */ +static long _php_rfc822_soutr (void *stream,char *string) +{ + return NIL; +} + +/* }}} */ + + +/* {{{ _php_rfc822_write_address_len + */ +static void _php_rfc822_write_address_len ( char *dest, ADDRESS *adr, int len) +{ + RFC822BUFFER buf; + + buf.beg = dest; + buf.cur = buf.beg; + buf.end = buf.beg + len - 1; + buf.s = NIL; + buf.f = _php_rfc822_soutr; + rfc822_output_address_list (&buf, adr, 0, NIL); + *buf.cur = '\0'; +} + +/* }}} */ /* {{{ _php_imap_parse_address @@ -3897,7 +3926,7 @@ if ((len = _php_imap_address_size(addresstmp))) { tmpstr = (char *) pemalloc(len + 1, 1); tmpstr[0] = '\0'; - rfc822_write_address(tmpstr, addresstmp); + _php_rfc822_write_address_len(tmpstr, addresstmp, len); *fulladdress = tmpstr; } else { *fulladdress = NULL; --- php-imap-5.2.3.orig/debian/compat +++ php-imap-5.2.3/debian/compat @@ -0,0 +1 @@ +4 --- php-imap-5.2.3.orig/debian/php5-imap.prerm +++ php-imap-5.2.3/debian/php5-imap.prerm @@ -0,0 +1,44 @@ +#!/bin/sh + +set -e + +#DEBHELPER# + +if [ "$1" != "remove" ] && [ "$1" != "purge" ]; then + exit 0 +fi + +EXTENSIONRE="^[[:space:]]*extension[[:space:]]*=[[:space:]]*imap\.so" + +. /usr/share/debconf/confmodule + +for SAPI in apache cgi apache2 cli +do + # Use the same question for all extensions, because it's only + # used once per package: right here. + if [ -f "/etc/php5/$SAPI/php.ini" ] \ + && grep -q "$EXTENSIONRE" /etc/php5/$SAPI/php.ini + then + db_set php5/remove_extension true + db_title "PHP" + db_subst php5/remove_extension extname IMAP + db_subst php5/remove_extension sapiconfig $SAPI + db_input low php5/remove_extension || true + db_go + + db_get php5/remove_extension + if [ "$RET" = "true" ]; then + grep -v "$EXTENSIONRE" < /etc/php5/$SAPI/php.ini \ + > /etc/php5/$SAPI/php.ini.imapremove + chown --reference=/etc/php5/$SAPI/php.ini \ + /etc/php5/$SAPI/php.ini.imapremove + chmod --reference=/etc/php5/$SAPI/php.ini \ + /etc/php5/$SAPI/php.ini.imapremove + mv /etc/php5/$SAPI/php.ini.imapremove \ + /etc/php5/$SAPI/php.ini + fi + db_fset php5/remove_extension seen false + fi +done + +exit 0 --- php-imap-5.2.3.orig/debian/control +++ php-imap-5.2.3/debian/control @@ -0,0 +1,20 @@ +Source: php-imap +Section: web +Priority: optional +Maintainer: Ubuntu MOTU Developers +XSBC-Original-Maintainer: Debian PHP Maintainers +Uploaders: Adam Conrad +Build-Depends: debhelper (>= 4.2), libc-client2007-dev, php5-dev (>= 5.1.1-1) +Standards-Version: 3.7.2 + +Package: php5-imap +Architecture: any +Depends: ${shlibs:Depends}, ${php:Depends}, ${misc:Depends} +Description: IMAP module for php5 + This package provides a module for IMAP functions in PHP scripts. + . + PHP5 is an HTML-embedded scripting language. Much of its syntax is borrowed + from C, Java and Perl with a couple of unique PHP-specific features thrown + in. The goal of the language is to allow web developers to write + dynamically generated pages quickly. + --- php-imap-5.2.3.orig/debian/php5-imap.config +++ php-imap-5.2.3/debian/php5-imap.config @@ -0,0 +1,32 @@ +#!/bin/sh -e + +# Source debconf library. +. /usr/share/debconf/confmodule + +db_title "PHP" + +for SAPI in apache cgi apache2 cli +do + # Skip this loop if the config file isn't there (yet). + if [ -f "/etc/php5/$SAPI/php.ini" ]; then + db_register php5/add_extension php5/extension_imap_$SAPI + + # FIXME: this is the wrong answer if the SAPI package was + # installed after the module was. + if [ -n "$2" ] && dpkg --compare-versions "$2" ge 4:4.3.2+rc3-2 + then + if grep -q "^[[:space:]]*extension[[:space:]]*=[[:space:]]*imap\.so" "/etc/php5/$SAPI/php.ini" + then + db_set php5/extension_imap_$SAPI true + else + db_set php5/extension_imap_$SAPI false + fi + fi + + db_subst php5/extension_imap_$SAPI extname IMAP + db_subst php5/extension_imap_$SAPI sapiconfig $SAPI + db_input low php5/extension_imap_$SAPI || true + fi +done + +db_go --- php-imap-5.2.3.orig/debian/po/nl.po +++ php-imap-5.2.3/debian/po/nl.po @@ -0,0 +1,98 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: php5 4:4.3.3-3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-08-04 21:13+1000\n" +"PO-Revision-Date: 2003-11-14 15:42+0100\n" +"Last-Translator: Tim Dijkstra \n" +"Language-Team: Debian l10n Dutch \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "Should ${extname} be added to /etc/php4/${sapiconfig}/php.ini?" +msgstr "" +"Dient ${extname} te worden toegevoegd aan /etc/php4/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "" +"You are installing ${extname} support for php4, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"U bent ${extname}-ondersteuning voor php4 aan het installeren, maar het is " +"nog niet geactiveerd in de configuratie van de ${sapiconfig}-SAPI. Wilt u " +"deze uitbreiding nu activeren?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php4/${sapiconfig}/php.ini?" +msgstr "Moet ${extname} worden verwijderd uit /etc/php4/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "" +"You are removing ${extname} support for php4, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"U bent ${extname}-ondersteuning voor php4 aan het verwijderen, maar het is " +"nog wel geactiveerd in de configuratie van de ${sapiconfig}-SAPI. Dit kan " +"problemen veroorzaken tijdens het gebruik van PHP." + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "Should ${extname} be added to /etc/php5/${sapiconfig}/php.ini?" +msgstr "" +"Dient ${extname} te worden toegevoegd aan /etc/php5/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "" +"You are installing ${extname} support for php5, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"U bent ${extname}-ondersteuning voor php5 aan het installeren, maar het is " +"nog niet geactiveerd in de configuratie van de ${sapiconfig}-SAPI. Wilt u " +"deze uitbreiding nu activeren?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php5/${sapiconfig}/php.ini?" +msgstr "Moet ${extname} worden verwijderd uit /etc/php5/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "" +"You are removing ${extname} support for php5, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"U bent ${extname}-ondersteuning voor php5 aan het verwijderen, maar het is " +"nog wel geactiveerd in de configuratie van de ${sapiconfig}-SAPI. Dit kan " +"problemen veroorzaken tijdens het gebruik van PHP." --- php-imap-5.2.3.orig/debian/po/da.po +++ php-imap-5.2.3/debian/po/da.po @@ -0,0 +1,98 @@ +# translation of php5_4:4.3.3-5_templates.po to Danish +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# Claus Hindsgaul , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: php5_4:4.3.3-5_templates\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-08-04 21:13+1000\n" +"PO-Revision-Date: 2004-02-20 17:04+0100\n" +"Last-Translator: Claus Hindsgaul \n" +"Language-Team: Danish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.3\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "Should ${extname} be added to /etc/php4/${sapiconfig}/php.ini?" +msgstr "Skal ${extname} tilfjes i /etc/php4/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "" +"You are installing ${extname} support for php4, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"Du er ved at installere understttelse for ${extname} i php4, og den er " +"endnu ikke aktiveret i opstningen for ${sapiconfig}-SAPI'en. nsker du at " +"aktivere denne udvidelse nu?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php4/${sapiconfig}/php.ini?" +msgstr "Skal ${extname} fjernes fra /etc/php4/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "" +"You are removing ${extname} support for php4, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"Du er ved at fjerne understttelse for ${extname} i php4, og den er stadig " +"aktiveret i opstningen for ${sapiconfig}-SAPI'en. Hvis du lader det vre, " +"vi du sikkert f problemer med at bruge PHP." + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "Should ${extname} be added to /etc/php5/${sapiconfig}/php.ini?" +msgstr "Skal ${extname} tilfjes i /etc/php5/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "" +"You are installing ${extname} support for php5, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"Du er ved at installere understttelse for ${extname} i php5, og den er " +"endnu ikke aktiveret i opstningen for ${sapiconfig}-SAPI'en. nsker du at " +"aktivere denne udvidelse nu?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php5/${sapiconfig}/php.ini?" +msgstr "Skal ${extname} fjernes fra /etc/php5/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "" +"You are removing ${extname} support for php5, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"Du er ved at fjerne understttelse for ${extname} i php5, og den er stadig " +"aktiveret i opstningen for ${sapiconfig}-SAPI'en. Hvis du lader det vre, " +"vi du sikkert f problemer med at bruge PHP." --- php-imap-5.2.3.orig/debian/po/fr.po +++ php-imap-5.2.3/debian/po/fr.po @@ -0,0 +1,96 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: php5_4:4.3.2+rc3-3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-08-04 21:13+1000\n" +"PO-Revision-Date: 2003-08-24 09:07+0200\n" +"Last-Translator: Michel Grentzinger \n" +"Language-Team: French \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "Should ${extname} be added to /etc/php4/${sapiconfig}/php.ini?" +msgstr "Faut-il ajouter ${extname} /etc/php4/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "" +"You are installing ${extname} support for php4, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"Vous installez la gestion de ${extname} par php4 et celle-ci n'est pas " +"encore active dans la configuration ${sapiconfig} SAPI. Souhaitez-vous que " +"cette extension soit active maintenant?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php4/${sapiconfig}/php.ini?" +msgstr "Faut-il supprimer ${extname} dans /etc/php4/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "" +"You are removing ${extname} support for php4, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"Vous supprimez la gestion de ${extname} par php4 mais elle est toujours " +"active dans la configuration ${sapiconfig} SAPI. Si vous laissez cela en " +"l'tat, vous aurez sans doute des problmes lorsque vous essayerez " +"d'utiliser PHP." + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "Should ${extname} be added to /etc/php5/${sapiconfig}/php.ini?" +msgstr "Faut-il ajouter ${extname} /etc/php5/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "" +"You are installing ${extname} support for php5, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"Vous installez la gestion de ${extname} par php5 et celle-ci n'est pas " +"encore active dans la configuration ${sapiconfig} SAPI. Souhaitez-vous que " +"cette extension soit active maintenant?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php5/${sapiconfig}/php.ini?" +msgstr "Faut-il supprimer ${extname} dans /etc/php5/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "" +"You are removing ${extname} support for php5, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"Vous supprimez la gestion de ${extname} par php5 mais elle est toujours " +"active dans la configuration ${sapiconfig} SAPI. Si vous laissez cela en " +"l'tat, vous aurez sans doute des problmes lorsque vous essayerez " +"d'utiliser PHP." --- php-imap-5.2.3.orig/debian/po/de.po +++ php-imap-5.2.3/debian/po/de.po @@ -0,0 +1,97 @@ +# translation of php5 debconf messages to German +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# Alwin Meschede , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: de\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-08-04 21:13+1000\n" +"PO-Revision-Date: 2004-02-11 17:42+0100\n" +"Last-Translator: Alwin Meschede \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: KBabel 1.0.2\n" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "Should ${extname} be added to /etc/php4/${sapiconfig}/php.ini?" +msgstr "Soll ${extname} zu /etc/php4/${sapiconfig}/php.ini hinzugefügt werden?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "" +"You are installing ${extname} support for php4, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"Sie installieren ${extname}-Unterstützung für php4, und sie ist noch nicht " +"in der Konfiguration für die ${sapiconfig} SAPI aktiviert. Soll diese " +"Erweiterung jetzt aktiviert werden?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php4/${sapiconfig}/php.ini?" +msgstr "Soll ${extname} aus /etc/php4/${sapiconfig}/php.ini entfernt werden?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "" +"You are removing ${extname} support for php4, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"Sie entfernen ${extname}-Unterstützung für php4, aber sie ist immer noch in " +"der Konfiguration für die ${sapiconfig} SAPI aktiviert. Dies so zu belassen " +"kann möglicherweise Probleme bei der Verwendung von PHP verursachen." + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "Should ${extname} be added to /etc/php5/${sapiconfig}/php.ini?" +msgstr "Soll ${extname} zu /etc/php5/${sapiconfig}/php.ini hinzugefügt werden?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "" +"You are installing ${extname} support for php5, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"Sie installieren ${extname}-Unterstützung für php5, und sie ist noch nicht " +"in der Konfiguration für die ${sapiconfig} SAPI aktiviert. Soll diese " +"Erweiterung jetzt aktiviert werden?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php5/${sapiconfig}/php.ini?" +msgstr "Soll ${extname} aus /etc/php5/${sapiconfig}/php.ini entfernt werden?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "" +"You are removing ${extname} support for php5, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"Sie entfernen ${extname}-Unterstützung für php5, aber sie ist immer noch in " +"der Konfiguration für die ${sapiconfig} SAPI aktiviert. Dies so zu belassen " +"kann möglicherweise Probleme bei der Verwendung von PHP verursachen." --- php-imap-5.2.3.orig/debian/po/sv.po +++ php-imap-5.2.3/debian/po/sv.po @@ -0,0 +1,88 @@ +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# Developers do not need to manually edit POT or PO files. +# , fuzzy +# +# +msgid "" +msgstr "" +"Project-Id-Version: php-imap 5.0.5-1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-08-04 21:13+1000\n" +"PO-Revision-Date: 2005-09-29 19:05-0700\n" +"Last-Translator: Daniel Nylander \n" +"Language-Team: Swedish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=iso-8859-1\n" +"Content-Transfer-Encoding: 8bit" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "Should ${extname} be added to /etc/php4/${sapiconfig}/php.ini?" +msgstr "Ska ${extname} lggas till i /etc/php4/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "" +"You are installing ${extname} support for php4, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"Du installerar ${extname} std fr php4 och den r nnu inte aktiverad i konfigurationen fr ${sapiconfig} SAPI. Vill du aktivera den nu?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php4/${sapiconfig}/php.ini?" +msgstr "Ska ${extname} raderas frn /etc/php4/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "" +"You are removing ${extname} support for php4, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"Du tar bort ${extname} stdet fr php4 och den r fortfarande aktiverad i konfigurationen fr ${sapiconfig} SAPI. Lmna den aktiverad kan skapa problem nr du anvnder PHP." + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "Should ${extname} be added to /etc/php5/${sapiconfig}/php.ini?" +msgstr "Ska ${extname} lggas till i /etc/php5/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "" +"You are installing ${extname} support for php5, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"Du installerar ${extname} std fr php5 och den r nnu inte aktiverad i konfigurationen fr ${sapiconfig} SAPI. Vill du aktivera den nu?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php5/${sapiconfig}/php.ini?" +msgstr "Ska ${extname} raderas frn /etc/php5/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "" +"You are removing ${extname} support for php5, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"Du tar bort ${extname} stdet fr php5 och den r fortfarande aktiverad i konfigurationen fr ${sapiconfig} SAPI. Lmna den aktiverad kan skapa problem nr du anvnder PHP." + --- php-imap-5.2.3.orig/debian/po/vi.po +++ php-imap-5.2.3/debian/po/vi.po @@ -0,0 +1,91 @@ +# Vietnamese translation for php5. +# Copyright © 2005 Free Software Foundation, Inc. +# Clytie Siddall , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: php5 4/4.3.10-15\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-08-04 21:13+1000\n" +"PO-Revision-Date: 2005-07-04 14:05+0930\n" +"Last-Translator: Clytie Siddall \n" +"Language-Team: Vietnamese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0\n" +"X-Generator: LocFactoryEditor 1.2.2\n" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "Should ${extname} be added to /etc/php4/${sapiconfig}/php.ini?" +msgstr "Có nên thêm «${extname}» vào «/etc/php4/${sapiconfig}/php.ini» không?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "" +"You are installing ${extname} support for php4, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"Lúc này bạn đang cài đặt cách hỗ trợ «${extname}» cho PHP4, nhưng mà nó chưa " +"bật trong cấu hình cho SAPI «${sapiconfig}». Bạn có muốn hiệu lực phần mở " +"rộng này ngay bây giờ không?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php4/${sapiconfig}/php.ini?" +msgstr "" +"Có nên loại bỏ «${extname}» ra «/etc/php4/${sapiconfig}/php.ini» không?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "" +"You are removing ${extname} support for php4, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"Lúc này bạn đang loại bỏ cách hỗ trợ «${extname}» ra PHP4, nhưng mà nó vẫn " +"còn bật trong cấu hình cho SAPI «${sapiconfig}». Nếu bạn không vô hiệu hóa " +"nó, rất có thể gây ra lỗi trong khi cố sử dụng PHP." + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "Should ${extname} be added to /etc/php5/${sapiconfig}/php.ini?" +msgstr "Có nên thêm «${extname}» vào «/etc/php5/${sapiconfig}/php.ini» không?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "" +"You are installing ${extname} support for php5, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"Lúc này bạn đang cài đặt cách hỗ trợ «${extname}» cho PHP5, nhưng mà nó chưa " +"bật trong cấu hình cho SAPI «${sapiconfig}». Bạn có muốn hiệu lực phần mở " +"rộng này ngay bây giờ không?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php5/${sapiconfig}/php.ini?" +msgstr "" +"Có nên loại bỏ «${extname}» ra «/etc/php5/${sapiconfig}/php.ini» không?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "" +"You are removing ${extname} support for php5, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"Lúc này bạn đang loại bỏ cách hỗ trợ «${extname}» ra PHP5, nhưng mà nó vẫn " +"còn bật trong cấu hình cho SAPI «${sapiconfig}». Nếu bạn không vô hiệu hóa " +"nó, rất có thể gây ra lỗi trong khi cố sử dụng PHP." --- php-imap-5.2.3.orig/debian/po/ru.po +++ php-imap-5.2.3/debian/po/ru.po @@ -0,0 +1,95 @@ +# translation of php5_4:4.3.10-15_ru.po to Russian +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans# +# Developers do not need to manually edit POT or PO files. +# Yuriy Talakan' , 2005. +# +msgid "" +msgstr "" +"Project-Id-Version: php5_4:4.3.10-15_ru\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-08-04 21:13+1000\n" +"PO-Revision-Date: 2005-05-22 22:35+1000\n" +"Last-Translator: Yuriy Talakan' \n" +"Language-Team: Russian \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" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "Should ${extname} be added to /etc/php4/${sapiconfig}/php.ini?" +msgstr "Добавить ${extname} в /etc/php4/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "" +"You are installing ${extname} support for php4, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"Вы устанавливаете поддержку ${extname} для php4, а она еще не разрешена в " +"настройках для ${sapiconfig} SAPI. Хотите разрешить это расширение сейчас?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php4/${sapiconfig}/php.ini?" +msgstr "Удалить ${extname} из /etc/php4/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "" +"You are removing ${extname} support for php4, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"Вы удаляете поддержку ${extname} для php4, а она всё ещё разрешена в " +"настройках для ${sapiconfig} SAPI. Если оставить всё, как есть, то возможны " +"проблемы с PHP." + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "Should ${extname} be added to /etc/php5/${sapiconfig}/php.ini?" +msgstr "Добавить ${extname} в /etc/php5/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "" +"You are installing ${extname} support for php5, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"Вы устанавливаете поддержку ${extname} для php5, а она еще не разрешена в " +"настройках для ${sapiconfig} SAPI. Хотите разрешить это расширение сейчас?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php5/${sapiconfig}/php.ini?" +msgstr "Удалить ${extname} из /etc/php5/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "" +"You are removing ${extname} support for php5, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"Вы удаляете поддержку ${extname} для php5, а она всё ещё разрешена в " +"настройках для ${sapiconfig} SAPI. Если оставить всё, как есть, то возможны " +"проблемы с PHP." --- php-imap-5.2.3.orig/debian/po/templates.pot +++ php-imap-5.2.3/debian/po/templates.pot @@ -0,0 +1,85 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-08-04 21:13+1000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "Should ${extname} be added to /etc/php4/${sapiconfig}/php.ini?" +msgstr "" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "" +"You are installing ${extname} support for php4, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php4/${sapiconfig}/php.ini?" +msgstr "" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "" +"You are removing ${extname} support for php4, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "Should ${extname} be added to /etc/php5/${sapiconfig}/php.ini?" +msgstr "" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "" +"You are installing ${extname} support for php5, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php5/${sapiconfig}/php.ini?" +msgstr "" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "" +"You are removing ${extname} support for php5, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" --- php-imap-5.2.3.orig/debian/po/es.po +++ php-imap-5.2.3/debian/po/es.po @@ -0,0 +1,104 @@ +# php5 debconf translation to spanish +# Copyright (C) 2004 Software in the Public Interest +# This file is distributed under the same license as the php5 package. +# +# Changes: +# - Initial translation +# Carlos Valdivia Yage , 2004 +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: php5 4.3.3-5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-08-04 21:13+1000\n" +"PO-Revision-Date: 2004-02-14 12:35+0100\n" +"Last-Translator: Carlos Valdivia Yage \n" +"Language-Team: Debian L10n Spanish Team \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-15\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "Should ${extname} be added to /etc/php4/${sapiconfig}/php.ini?" +msgstr "Desea aadir ${extname} a /etc/php4/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "" +"You are installing ${extname} support for php4, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"Est aadiendo soporte de ${extname} para php4 pero an no est activado en " +"la configuracin para la ${sapiconfig} SAPI. Quiere activar la extensin " +"ahora?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php4/${sapiconfig}/php.ini?" +msgstr "Quiere borrar ${extname} de /etc/php4/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "" +"You are removing ${extname} support for php4, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"Est quitando soporte de ${extname} para php4 pero an est activado en la " +"configuracin de la ${sapiconfig} SAPI. Si lo deja as es muy posible que le " +"cause problemas al intentar usar PHP." + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "Should ${extname} be added to /etc/php5/${sapiconfig}/php.ini?" +msgstr "Desea aadir ${extname} a /etc/php5/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "" +"You are installing ${extname} support for php5, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"Est aadiendo soporte de ${extname} para php5 pero an no est activado en " +"la configuracin para la ${sapiconfig} SAPI. Quiere activar la extensin " +"ahora?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php5/${sapiconfig}/php.ini?" +msgstr "Quiere borrar ${extname} de /etc/php5/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "" +"You are removing ${extname} support for php5, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"Est quitando soporte de ${extname} para php5 pero an est activado en la " +"configuracin de la ${sapiconfig} SAPI. Si lo deja as es muy posible que le " +"cause problemas al intentar usar PHP." --- php-imap-5.2.3.orig/debian/po/pt.po +++ php-imap-5.2.3/debian/po/pt.po @@ -0,0 +1,85 @@ +# Portuguese translation for php5's debconf messages. +# 2005, Miguel Figueiredo +msgid "" +msgstr "" +"Project-Id-Version: php5 4:4.3.10-10\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-08-04 21:13+1000\n" +"PO-Revision-Date: 2005-04-17 14:05+0000\n" +"Last-Translator: Miguel Figueiredo \n" +"Language-Team: Portuguese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "Should ${extname} be added to /etc/php4/${sapiconfig}/php.ini?" +msgstr "Deve ${extname} ser adicionado a /etc/php4/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "" +"You are installing ${extname} support for php4, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"Você está a instalar suporte ${extname} para php4, e ainda não está activado " +"na configuração para SAPI ${sapiconfig}. Você deseja que esta extenção seja " +"activada agora?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php4/${sapiconfig}/php.ini?" +msgstr "Deve ${extname} ser removido de /etc/php4/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "" +"You are removing ${extname} support for php4, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"Você está a remover o suporte ${extname} para php4, mas ainda está activado " +"na configuração para SAPI ${sapiconfig}. Deixá-lo provavelmente pode causar " +"problemas quando tentar utilizar PHP." + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "Should ${extname} be added to /etc/php5/${sapiconfig}/php.ini?" +msgstr "Deve ${extname} ser adicionado a /etc/php5/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "" +"You are installing ${extname} support for php5, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"Você está a instalar suporte ${extname} para php5, e ainda não está activado " +"na configuração para SAPI ${sapiconfig}. Você deseja que esta extenção seja " +"activada agora?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php5/${sapiconfig}/php.ini?" +msgstr "Deve ${extname} ser removido de /etc/php5/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "" +"You are removing ${extname} support for php5, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"Você está a remover o suporte ${extname} para php5, mas ainda está activado " +"na configuração para SAPI ${sapiconfig}. Deixá-lo provavelmente pode causar " +"problemas quando tentar utilizar PHP." --- php-imap-5.2.3.orig/debian/po/cs.po +++ php-imap-5.2.3/debian/po/cs.po @@ -0,0 +1,94 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: php5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-08-04 21:13+1000\n" +"PO-Revision-Date: 2004-09-29 15:28+0200\n" +"Last-Translator: Miroslav Kure \n" +"Language-Team: Czech \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-2\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "Should ${extname} be added to /etc/php4/${sapiconfig}/php.ini?" +msgstr "M se ${extname} pidat do /etc/php4/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "" +"You are installing ${extname} support for php4, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"Instalujete podporu ${extname} pro php4, kter jet nen povolena v " +"konfiguraci pro ${sapiconfig} SAPI. Chcete povolit tento modul?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php4/${sapiconfig}/php.ini?" +msgstr "M se ${extname} odstranit z /etc/php4/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "" +"You are removing ${extname} support for php4, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"Odstraujete podporu ${extname} pro php4, kter je stle povolena v " +"konfiguraci pro ${sapiconfig} SAPI. To me zpsobit problmy pi pouvn " +"PHP." + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "Should ${extname} be added to /etc/php5/${sapiconfig}/php.ini?" +msgstr "M se ${extname} pidat do /etc/php5/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "" +"You are installing ${extname} support for php5, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"Instalujete podporu ${extname} pro php5, kter jet nen povolena v " +"konfiguraci pro ${sapiconfig} SAPI. Chcete povolit tento modul?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php5/${sapiconfig}/php.ini?" +msgstr "M se ${extname} odstranit z /etc/php5/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "" +"You are removing ${extname} support for php5, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"Odstraujete podporu ${extname} pro php5, kter je stle povolena v " +"konfiguraci pro ${sapiconfig} SAPI. To me zpsobit problmy pi pouvn " +"PHP." --- php-imap-5.2.3.orig/debian/po/ja.po +++ php-imap-5.2.3/debian/po/ja.po @@ -0,0 +1,96 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: PHP for Debian 4.3.2+3rc3-2\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-08-04 21:13+1000\n" +"PO-Revision-Date: 2003-11-29 08:34+0900\n" +"Last-Translator: Kenshi Muto \n" +"Language-Team: Japanese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=EUC-JP\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "Should ${extname} be added to /etc/php4/${sapiconfig}/php.ini?" +msgstr "${extname} /etc/php4/${sapiconfig}/php.ini ɲäޤ?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "" +"You are installing ${extname} support for php4, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"php4 ؤ ${extname} ǽΥݡȤ򥤥󥹥ȡ뤷Ƥޤޤ " +"${sapiconfig} SAPI ꤬ͭˤʤäƤޤ󡣤γĥǽ򤹤ͭˤ" +"ޤ?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php4/${sapiconfig}/php.ini?" +msgstr "${extname} /etc/php4/${sapiconfig}/php.ini ޤ?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "" +"You are removing ${extname} support for php4, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"php4 ؤ ${extname} ǽΥݡȤƤޤޤ ${sapiconfig} " +"SAPI ͭˤʤäޤޤǤΤޤޤξ硢PHP Ѥ褦Ȥݤ" +"餯꤬ޤ" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "Should ${extname} be added to /etc/php5/${sapiconfig}/php.ini?" +msgstr "${extname} /etc/php5/${sapiconfig}/php.ini ɲäޤ?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "" +"You are installing ${extname} support for php5, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"php5 ؤ ${extname} ǽΥݡȤ򥤥󥹥ȡ뤷Ƥޤޤ " +"${sapiconfig} SAPI ꤬ͭˤʤäƤޤ󡣤γĥǽ򤹤ͭˤ" +"ޤ?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php5/${sapiconfig}/php.ini?" +msgstr "${extname} /etc/php5/${sapiconfig}/php.ini ޤ?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "" +"You are removing ${extname} support for php5, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"php5 ؤ ${extname} ǽΥݡȤƤޤޤ ${sapiconfig} " +"SAPI ͭˤʤäޤޤǤΤޤޤξ硢PHP Ѥ褦Ȥݤ" +"餯꤬ޤ" --- php-imap-5.2.3.orig/debian/po/ca.po +++ php-imap-5.2.3/debian/po/ca.po @@ -0,0 +1,92 @@ +# php5 (debconf) translation to Catalan. +# Copyright (C) 2004 Free Software Foundation, Inc. +# Aleix Badia i Bosch , 2004 +# Josep Lladonosa i Capell , 2004 +# Steve Langasek , 2004 +# Jordi Mallach , 2004 +# +msgid "" +msgstr "" +"Project-Id-Version: php5_4:4.3.3-5_templates\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-08-04 21:13+1000\n" +"PO-Revision-Date: 2004-01-31 19:46GMT\n" +"Last-Translator: Aleix Badia i Bosch \n" +"Language-Team: Debian L10n Catalan \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "Should ${extname} be added to /etc/php4/${sapiconfig}/php.ini?" +msgstr "Voleu afegir l'extensió ${extname} a /etc/php4/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "" +"You are installing ${extname} support for php4, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"Esteu instal·lant el suport de ${extname} per a php4 i encara no està " +"habilitat a la configuració per al SAPI ${sapiconfig}. Voleu habilitar " +"aquesta extensió?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php4/${sapiconfig}/php.ini?" +msgstr "" +"Voleu suprimir l'extensió ${extname} de /etc/php4/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "" +"You are removing ${extname} support for php4, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"S'està suprimint el suport de l'extensió ${extname} per a php4 però continua " +"habilitat a la configuració per al SAPI ${sapiconfig}. Si ho deixeu activat " +"pot provocar problemes a l'intentar utilitzar el php." + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "Should ${extname} be added to /etc/php5/${sapiconfig}/php.ini?" +msgstr "Voleu afegir l'extensió ${extname} a /etc/php5/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "" +"You are installing ${extname} support for php5, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"Esteu instal·lant el suport de ${extname} per a php5 i encara no està " +"habilitat a la configuració per al SAPI ${sapiconfig}. Voleu habilitar " +"aquesta extensió?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php5/${sapiconfig}/php.ini?" +msgstr "" +"Voleu suprimir l'extensió ${extname} de /etc/php5/${sapiconfig}/php.ini?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "" +"You are removing ${extname} support for php5, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"S'està suprimint el suport de l'extensió ${extname} per a php5 però continua " +"habilitat a la configuració per al SAPI ${sapiconfig}. Si ho deixeu activat " +"pot provocar problemes a l'intentar utilitzar el php." --- php-imap-5.2.3.orig/debian/po/tr.po +++ php-imap-5.2.3/debian/po/tr.po @@ -0,0 +1,87 @@ +# Turkish translation of php5. +# This file is distributed under the same license as the php5 package. +# Osman Yüksel , 2004. +# +msgid "" +msgstr "" +"Project-Id-Version: php5\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-08-04 21:13+1000\n" +"PO-Revision-Date: 2004-06-06 05:40+0300\n" +"Last-Translator: Osman Yüksel \n" +"Language-Team: Turkish \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: KBabel 1.3.1\n" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "Should ${extname} be added to /etc/php4/${sapiconfig}/php.ini?" +msgstr "${extname}, /etc/php4/${sapiconfig}/php.ini'ye eklensin mi?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "" +"You are installing ${extname} support for php4, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"Php4 için ${extname} desteği kuruyorsunuz, ve bu henüz ${sapiconfig} SAPI " +"yapılandırmasına eklenmemiş. Bu uzantıyı şimdi etkinleştirmek ister misiniz?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php4/${sapiconfig}/php.ini?" +msgstr "${extname}, /etc/php4/${sapiconfig}/php.ini'den çıkarılsın mı?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "" +"You are removing ${extname} support for php4, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"Php4 için ${extname} desteğini kaldırıyorsunuz, ancak bu hâlâ ${sapiconfig} " +"SAPI yapılandırmasında aktif duruma. Bunu böyle bırakmak ileride, PHP " +"kullanmaya çalışırken sorunlara yol açabilir." + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "Should ${extname} be added to /etc/php5/${sapiconfig}/php.ini?" +msgstr "${extname}, /etc/php5/${sapiconfig}/php.ini'ye eklensin mi?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "" +"You are installing ${extname} support for php5, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"php5 için ${extname} desteği kuruyorsunuz, ve bu henüz ${sapiconfig} SAPI " +"yapılandırmasına eklenmemiş. Bu uzantıyı şimdi etkinleştirmek ister misiniz?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php5/${sapiconfig}/php.ini?" +msgstr "${extname}, /etc/php5/${sapiconfig}/php.ini'den çıkarılsın mı?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "" +"You are removing ${extname} support for php5, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"php5 için ${extname} desteğini kaldırıyorsunuz, ancak bu hâlâ ${sapiconfig} " +"SAPI yapılandırmasında aktif duruma. Bunu böyle bırakmak ileride, PHP " +"kullanmaya çalışırken sorunlara yol açabilir." --- php-imap-5.2.3.orig/debian/po/pt_BR.po +++ php-imap-5.2.3/debian/po/pt_BR.po @@ -0,0 +1,98 @@ +# +# Translators, if you are not familiar with the PO format, gettext +# documentation is worth reading, especially sections dedicated to +# this format, e.g. by running: +# info -n '(gettext)PO Files' +# info -n '(gettext)Header Entry' +# +# Some information specific to po-debconf are available at +# /usr/share/doc/po-debconf/README-trans +# or http://www.debian.org/intl/l10n/po-debconf/README-trans +# +# Developers do not need to manually edit POT or PO files. +# +msgid "" +msgstr "" +"Project-Id-Version: php5_4.3.2+rc3-3\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2005-08-04 21:13+1000\n" +"PO-Revision-Date: 2003-08-24 21:44-0300\n" +"Last-Translator: Andr Lus Lopes \n" +"Language-Team: Debian-BR Project \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ISO-8859-1\n" +"Content-Transfer-Encoding: 8bit\n" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "Should ${extname} be added to /etc/php4/${sapiconfig}/php.ini?" +msgstr "${extname} deve ser adicionado a /etc/php4/${sapiconfig}/php.ini ?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:4 +msgid "" +"You are installing ${extname} support for php4, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"Voc est instalando o suporte a ${extname} para o php4 e o mesmo ainda no " +"est habilitado para a configurao SAPI ${sapiconfig}. Voc deseja que essa " +"extenso seja habilitada agora ?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php4/${sapiconfig}/php.ini?" +msgstr "${extname} deve ser removido de /etc/php4/${sapiconfig}/php.ini ?" + +#. Type: boolean +#. Description +#: ../php4-imap.templates:12 +msgid "" +"You are removing ${extname} support for php4, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"Voc est removendo o suporte a ${extname} para o php4 e o mesmo ainda " +"continua habilitado para a configurao SAPI ${sapiconfig}. Mant-lo onde " +"est atualmente provavelmente ir causar problemas quando voc tentar usar o " +"PHP." + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "Should ${extname} be added to /etc/php5/${sapiconfig}/php.ini?" +msgstr "${extname} deve ser adicionado a /etc/php5/${sapiconfig}/php.ini ?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:4 +msgid "" +"You are installing ${extname} support for php5, and it is not yet enabled in " +"the configuration for the ${sapiconfig} SAPI. Do you want this extension to " +"be enabled now?" +msgstr "" +"Voc est instalando o suporte a ${extname} para o php5 e o mesmo ainda no " +"est habilitado para a configurao SAPI ${sapiconfig}. Voc deseja que essa " +"extenso seja habilitada agora ?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "Should ${extname} be removed from /etc/php5/${sapiconfig}/php.ini?" +msgstr "${extname} deve ser removido de /etc/php5/${sapiconfig}/php.ini ?" + +#. Type: boolean +#. Description +#: ../php5-imap.templates:12 +msgid "" +"You are removing ${extname} support for php5, but it is still enabled in the " +"configuration for the ${sapiconfig} SAPI. Leaving this in place will " +"probably cause problems when trying to use PHP." +msgstr "" +"Voc est removendo o suporte a ${extname} para o php5 e o mesmo ainda " +"continua habilitado para a configurao SAPI ${sapiconfig}. Mant-lo onde " +"est atualmente provavelmente ir causar problemas quando voc tentar usar o " +"PHP." --- php-imap-5.2.3.orig/debian/po/POTFILES.in +++ php-imap-5.2.3/debian/po/POTFILES.in @@ -0,0 +1,2 @@ +[type: gettext/rfc822deb] php4-imap.templates +[type: gettext/rfc822deb] php5-imap.templates --- php-imap-5.2.3.orig/debian/copyright +++ php-imap-5.2.3/debian/copyright @@ -0,0 +1,78 @@ +This package was debianized by Adam Conrad on +Fri, 29 Jul 2005 15:19:18 +1000 + +It was downloaded from http://www.php.net/downloads.php + +Upstream Authors: The PHP group at www.php.net + +This extension is distributed under the terms of the PHP License, +version 3.0, as follows below. + +-------------------------------------------------------------------- + The PHP License, Version 3.0 +Copyright (c) 1999 - 2003 The PHP Group. All rights reserved. +-------------------------------------------------------------------- + +Redistribution and use in source and binary forms, with or without +modification, is permitted provided that the following conditions +are met: + + 1. Redistributions of source code must retain the above copyright + notice, this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in + the documentation and/or other materials provided with the + distribution. + + 3. The name "PHP" must not be used to endorse or promote products + derived from this software without prior written permission. For + written permission, please contact group@php.net. + + 4. Products derived from this software may not be called "PHP", nor + may "PHP" appear in their name, without prior written permission + from group@php.net. You may indicate that your software works in + conjunction with PHP by saying "Foo for PHP" instead of calling + it "PHP Foo" or "phpfoo" + + 5. The PHP Group may publish revised and/or new versions of the + license from time to time. Each version will be given a + distinguishing version number. + Once covered code has been published under a particular version + of the license, you may always continue to use it under the terms + of that version. You may also choose to use such covered code + under the terms of any subsequent version of the license + published by the PHP Group. No one other than the PHP Group has + the right to modify the terms applicable to covered code created + under this License. + + 6. Redistributions of any form whatsoever must retain the following + acknowledgment: + "This product includes PHP, freely available from + ". + +THIS SOFTWARE IS PROVIDED BY THE PHP DEVELOPMENT TEAM ``AS IS'' AND +ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A +PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PHP +DEVELOPMENT TEAM OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, +INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES +(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, +STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) +ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED +OF THE POSSIBILITY OF SUCH DAMAGE. + +-------------------------------------------------------------------- + +This software consists of voluntary contributions made by many +individuals on behalf of the PHP Group. + +The PHP Group can be contacted via Email at group@php.net. + +For more information on the PHP Group and the PHP project, +please see . + +This product includes the Zend Engine, freely available at +. --- php-imap-5.2.3.orig/debian/php5-imap.postinst +++ php-imap-5.2.3/debian/php5-imap.postinst @@ -0,0 +1,28 @@ +#!/bin/sh + +set -e + +# Source debconf library. +. /usr/share/debconf/confmodule + +#DEBHELPER# + +if [ "$1" != "configure" ]; then + exit 0 +fi + +EXTENSIONRE="^[[:space:]]*extension[[:space:]]*=[[:space:]]*imap\.so" + +for SAPI in apache cgi apache2 cli +do + if [ -f /etc/php5/$SAPI/php.ini ]; then + db_get php5/extension_imap_$SAPI + if [ "$RET" = "true" ] \ + && ! grep -q "$EXTENSIONRE" /etc/php5/$SAPI/php.ini + then + echo "extension=imap.so" >> /etc/php5/$SAPI/php.ini + fi + fi +done + +exit 0 --- php-imap-5.2.3.orig/debian/php5-imap.preinst +++ php-imap-5.2.3/debian/php5-imap.preinst @@ -0,0 +1,13 @@ +#!/bin/sh + +set -e + +#DEBHELPER# + +if [ -L /usr/share/doc/php5-imap ]; then + # We must be upgrading from a version that was previously + # built from the php5 source package + rm -f /usr/share/doc/php5-imap +fi + +exit 0 --- php-imap-5.2.3.orig/debian/changelog +++ php-imap-5.2.3/debian/changelog @@ -0,0 +1,80 @@ +php-imap (5.2.3-0ubuntu3.1) hardy-security; urgency=low + + * SECURITY UPDATE: unsafe usage of deprecated imap functions (LP: #485973) + - php_imap.c: apply patch taken from Debian + - CVE-2008-2829 + + -- Devid Antonio Filoni Wed, 06 Jan 2010 18:58:48 +0100 + +php-imap (5.2.3-0ubuntu3) hardy; urgency=low + + * Rebuild for libc-client2006j2 -> libc-client2007 transition (LP: #192415). + * debian/control: change Build-Dep on libc-client-dev to libc-client2007-dev + + -- Andrea Colangelo Sat, 16 Feb 2008 18:17:04 +0100 + +php-imap (5.2.3-0ubuntu2) hardy; urgency=low + + * Rebuild against new libc-client + + -- Luca Falavigna Sat, 05 Jan 2008 18:54:24 +0100 + +php-imap (5.2.3-0ubuntu1) gutsy; urgency=low + + * New upstream version. + * Removed obsolete php4 files + + -- Rick Clark Tue, 26 Jun 2007 11:51:25 -0400 + +php-imap (5.1.2-1ubuntu1) feisty; urgency=low + + * Don't build a php4 module anymore. + * debian/control: Change Maintainer/XSBC-Original-Maintainer field. + + -- Michael Bienia Tue, 13 Mar 2007 19:21:52 +0100 + +php-imap (5.1.2-1build1) feisty; urgency=low + + * Rebuild to depend against phpapi-20060613 + + -- Vassilis Pandis Mon, 25 Dec 2006 16:44:31 +0200 + +php-imap (5.1.2-1) unstable; urgency=low + + * New upstream release, fixing ANOTHER crash in imap_mail_compose(), + this time when composing multipart, multiboundary, emails. + + -- Adam Conrad Wed, 18 Jan 2006 16:47:34 +1100 + +php-imap (5.1.1-2) unstable; urgency=low + + * Include Daniel Nylander's Swedish debconf translation (closes: #330757) + * Make lintian shut up about bashisms, by replacing "-a" with "] && [" + + -- Adam Conrad Sun, 8 Jan 2006 15:30:56 +1100 + +php-imap (5.1.1-1) unstable; urgency=low + + * New upstream release, fixing yet another crash in imap_mail_compose(). + * Bump php5-dev build-dep to (>= 5.1.1) to ensure we get the new phpapi. + + -- Adam Conrad Sun, 8 Jan 2006 02:46:00 +1100 + +php-imap (5.0.5-1) unstable; urgency=low + + * New upstream release, fixing a possible crash in imap_mail_compose(). + + -- Adam Conrad Mon, 12 Sep 2005 19:19:30 +1000 + +php-imap (5.0.4-1) unstable; urgency=low + + * Initial release, making up for removing imap from the php[45] sources. + * Use the config.m4 from the php4 version of the imap extension, because + the php4 "phpize" can't cope with one of the tests in the php5 version. + * Use a dirty dpkg-gencontrol hack to make sure php4-imap has an epoch. + * Make sure we get our docs in our own doc directory, instead of dumping + them in /usr/share/doc/php[45]-common, in case we're upgrading. + * Use the new php-config[45] --phpapi option, and build-depend on new + enough versions of php[45]-dev to make sure we have it available to us. + + -- Adam Conrad Fri, 29 Jul 2005 14:47:11 +1000 --- php-imap-5.2.3.orig/debian/php5-imap.templates +++ php-imap-5.2.3/debian/php5-imap.templates @@ -0,0 +1,15 @@ +Template: php5/add_extension +Type: boolean +Default: true +_Description: Should ${extname} be added to /etc/php5/${sapiconfig}/php.ini? + You are installing ${extname} support for php5, and it is not yet enabled + in the configuration for the ${sapiconfig} SAPI. Do you want this + extension to be enabled now? + +Template: php5/remove_extension +Type: boolean +Default: true +_Description: Should ${extname} be removed from /etc/php5/${sapiconfig}/php.ini? + You are removing ${extname} support for php5, but it is still enabled in + the configuration for the ${sapiconfig} SAPI. Leaving this in place will + probably cause problems when trying to use PHP. --- php-imap-5.2.3.orig/debian/watch +++ php-imap-5.2.3/debian/watch @@ -0,0 +1,2 @@ +version=2 +http://www.php.net/downloads.php /get/php-(5\.[0-9\.]*)\.tar\.gz/from/a/mirror --- php-imap-5.2.3.orig/debian/rules +++ php-imap-5.2.3/debian/rules @@ -0,0 +1,100 @@ +#!/usr/bin/make -f +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# This has to be exported to make some magic below work. +export DH_OPTIONS + +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +SOURCE_VERSION = $(shell dpkg-parsechangelog | grep ^Version | sed "s/Version: //") + +CFLAGS = -O2 -Wall -fno-strict-aliasing + +# Enable IEEE-conformant floating point math on alphas (not the default) +ifeq (alpha-linux-gnu,$(DEB_HOST_GNU_TYPE)) + CFLAGS += -mieee +endif + +ifeq ($(DEB_HOST_GNU_TYPE), $(findstring $(DEB_HOST_GNU_TYPE), ia64-linux-gnu powerpc64-linux-gnu)) + CFLAGS += -g +else + CFLAGS += -gstabs +endif + +build: build-php5-stamp +build-php5-stamp: configure-php5-stamp + dh_testdir + # Add here commands to compile the package. + cd build-php5 && $(MAKE) CFLAGS="$(CFLAGS)" + + touch build-php5-stamp + +configure: configure-php5-stamp +configure-php5-stamp: + dh_testdir + rm -rf build-php5 && mkdir build-php5 + cp config.m4 imap.dsp php_imap.c php_imap.h build-php5/ + -cd build-php5 && phpize5 + cd build-php5 && ./configure --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) \ + --prefix=/usr \ + --with-php-config=/usr/bin/php-config5 \ + --disable-rpath \ + --disable-static \ + --with-imap=shared,/usr \ + --with-kerberos=/usr \ + --with-imap-ssl PHP_OPENSSL="yes" + + touch configure-php5-stamp + +clean: + dh_testdir + dh_testroot + rm -f configure-php5-stamp + rm -f build-php5-stamp + rm -f install-stamp + + # Add here commands to clean up after the build process. + rm -rf build-php5 + + dh_clean + +install: DH_OPTIONS= +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/php5-imap. + (ext=`/usr/bin/php-config5 --extension-dir`;mkdir -p debian/php5-imap/$${ext};install -m 644 -o root -g root build-php5/modules/imap.so debian/php5-imap/$${ext}/imap.so;) + + touch install-stamp + +# Build architecture-independent files here. +binary-indep: + +# Build architecture-dependent files here. +binary-arch: DH_OPTIONS= +binary-arch: build install + # Need this version of debhelper for DH_OPTIONS to work. + dh_testdir + dh_testroot + dh_installdebconf + dh_installdocs + + dh_installchangelogs + dh_strip + dh_link + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + echo "php:Depends=phpapi-`php-config5 --phpapi`" >> debian/php5-imap.substvars + + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-arch binary-indep +.PHONY: build clean binary-indep binary-arch binary install configure --- php-imap-5.2.3.orig/config.m4 +++ php-imap-5.2.3/config.m4 @@ -20,10 +20,11 @@ done ]) -dnl PHP_IMAP_TEST_BUILD(function, action-if-ok, action-if-not-ok, extra-libs) +dnl PHP_IMAP_TEST_BUILD(function, action-if-ok, action-if-not-ok [, extra-libs]) AC_DEFUN([PHP_IMAP_TEST_BUILD], [ - PHP_TEST_BUILD([$1], [$2], [$3], [$4], - [ + old_LIBS=$LIBS + LIBS="$4 $LIBS" + AC_TRY_RUN([ void mm_log(void){} void mm_dlog(void){} void mm_flags(void){} @@ -39,6 +40,17 @@ void mm_exists(void){} void mm_searched(void){} void mm_expunged(void){} + char $1(); + int main() { + $1(); + return 0; + } + ], [ + LIBS=$old_LIBS + $2 + ],[ + LIBS=$old_LIBS + $3 ]) ]) @@ -194,13 +206,13 @@ if test -r "$IMAP_DIR/c-client/c-client.a"; then ln -s "$IMAP_DIR/c-client/c-client.a" "$IMAP_DIR/c-client/libc-client.a" >/dev/null 2>&1 - elif test -r "$IMAP_DIR/$PHP_LIBDIR/c-client.a"; then - ln -s "$IMAP_DIR/$PHP_LIBDIR/c-client.a" "$IMAP_DIR/$PHP_LIBDIR/libc-client.a" >/dev/null 2>&1 + elif test -r "$IMAP_DIR/lib/c-client.a"; then + ln -s "$IMAP_DIR/lib/c-client.a" "$IMAP_DIR/lib/libc-client.a" >/dev/null 2>&1 fi for lib in c-client4 c-client imap; do IMAP_LIB=$lib - IMAP_LIB_CHK($PHP_LIBDIR) + IMAP_LIB_CHK(lib) IMAP_LIB_CHK(c-client) done @@ -222,7 +234,7 @@ AC_DEFINE(HAVE_IMAP_AUTH_GSS, 1, [ ]) ], [], $TST_LIBS) - AC_MSG_CHECKING(whether build with IMAP works) + AC_MSG_CHECKING(whether IMAP works) PHP_IMAP_TEST_BUILD(mail_newbody, [ AC_MSG_RESULT(yes) ], [