debian/0000755000000000000000000000000011770646145007201 5ustar debian/compat0000644000000000000000000000000211770646145010377 0ustar 9 debian/mlmmj-make-ml.Debian0000644000000000000000000001056011770646145012744 0ustar #!/bin/sh # # mlmmj-make-ml.sh - henne@hennevogel.de # # modified for Debian GNU/Linux by boll@debian.org VERSION="0.1-debian (Modified for Debian GNU/Linux)" DEFAULTDIR="/var/spool/mlmmj" ETCDEFAULTDIR="/etc/mlmmj/lists" TEXTPATH="/usr/share/mlmmj/text.skel" SENDMAILPKG=`grep-dctrl -FProvides mail-transport-agent -a -FStatus installed -sPackage -n /var/lib/dpkg/status` NEWALIASES=`which newaliases` USAGE=" mlmmj-make-ml $VERSION $0 [OPTIONS] -h display this help text -L the name of the mailinglist -s your spool directory if not $DEFAULTDIR -z nuffn for now " echo echo "+------------------------------------------------------------+" echo "| Information: |" echo "| Please report bugs against mlmmj-make-ml to the Debian BTS |" echo "| at http://bugs.debian.org/ |" echo "+------------------------------------------------------------+" echo while getopts ":hL:s:az:" Option do case "$Option" in h ) echo "$USAGE" exit 0 ;; z ) echo -n "nothing" exit 0 ;; L ) LISTNAME="$OPTARG" ;; s ) SPOOLDIR="$OPTARG" ;; * ) printf "$0: invalid option\nTry $0 -h for more information.\n" exit 1 ;; esac done SHIFTVAL=$(( $OPTIND - 1 )) shift $SHIFTVAL if [ -z "$SPOOLDIR" ]; then SPOOLDIR="$DEFAULTDIR" fi echo "Creating Directorys below $SPOOLDIR. Use '-s spooldir' to change" if [ -z "$LISTNAME" ]; then echo -n "What should the name of the Mailinglist be? [mlmmj-test] : " read LISTNAME if [ -z "$LISTNAME" ]; then LISTNAME="mlmmj-test" fi fi LISTDIR="$SPOOLDIR/$LISTNAME" ETCLISTDIR="$ETCDEFAULTDIR/$LISTNAME" mkdir -p $LISTDIR mkdir -p $ETCLISTDIR for DIR in incoming queue queue/discarded archive subconf unsubconf \ bounce moderation subscribers.d digesters.d requeue \ nomailsubs.d do mkdir "$LISTDIR"/"$DIR" done for DIR in text control do mkdir "$ETCLISTDIR"/"$DIR" ln -s "$ETCLISTDIR"/"$DIR" "$LISTDIR"/"$DIR" done test -f "$LISTDIR"/index || touch "$LISTDIR"/index echo -n "The Domain for the List? [] : " read FQDN if [ -z "$FQDN" ]; then FQDN="localhost.localdomain" fi echo -n "The emailaddress of the list owner? [postmaster] : " read OWNER if [ -z "$OWNER" ]; then OWNER="postmaster" fi echo "$OWNER" > "$ETCLISTDIR"/"control/owner" if [ -z "$TEXTPATH" -o ! -d "$TEXTPATH" ]; then echo "**NOTE** Could not copy the texts for the list" echo "Please manually copy the files from $TEXTPATH" else cp "$TEXTPATH"/* "$ETCLISTDIR"/"text" fi LISTADDRESS="$LISTNAME@$FQDN" echo "$LISTADDRESS" > "$ETCLISTDIR"/control/"listaddress" MLMMJRECIEVE=`which mlmmj-recieve 2>/dev/null` if [ -z "$MLMMJRECIEVE" ]; then MLMMJRECIEVE="/usr/bin/mlmmj-recieve" fi MLMMJMAINTD=`which mlmmj-maintd 2>/dev/null` if [ -z "$MLMMJMAINTD" ]; then MLMMJMAINTD="/usr/bin/mlmmj-maintd" fi ALIAS="$LISTNAME: \"|$MLMMJRECIEVE -L $SPOOLDIR/$LISTNAME/\"" echo "I am adding the following to your /etc/aliases file:" echo "$ALIAS" echo -n "is this ok (if not, you need to do so yourself)? [y/N] : " read OKIDOKI case $OKIDOKI in y|Y) echo "$ALIAS" >> /etc/aliases ;; n|N) exit 0 ;; *) echo "Options were: y, Y, n or N" esac echo "Detecting the installed MTA and changing ownership as needed..." if [ "$SENDMAILPKG" = "postfix" ]; then USER="nobody" GROUP="nogroup" echo "Postfix appears to be handling your mail, using ownership $USER:$GROUP..." elif [ "$SENDMAILPKG" = "exim4-daemon-light" ]; then USER="Debian-exim" GROUP="Debian-exim" echo "Exim appears to be handling your mail, using ownership $USER:$GROUP..." else USER="nobody" GROUP="nogroup" echo "Unable to detect MTA, using default ownership: $USER:$GROUP..." fi chown -R $USER:$GROUP $LISTDIR $LISTDIR/* chmod -R 755 $LISTDIR chmod -R 755 $ETCLISTDIR # Check if all lists are owned by the right user, if not, ask if we should fix # it. ANOMALIES=0 for ENTRY in `ls $SPOOLDIR` do SOWNER=`stat -c %U $SPOOLDIR/$ENTRY` SGROUP=`stat -c %G $SPOOLDIR/$ENTRY` if [ $SOWNER != $USER -o $SGROUP != $GROUP ] then ANOMALIES=1 fi done if [ $ANOMALIES -eq 1 ] then echo -n "It appears that not all lists have proper ownership, do you want me to fix this? [y/N] : " read FIXOWNERSHIP case $FIXOWNERSHIP in y|Y) chown -R $USER:$GROUP $SPOOLDIR/* ;; n|N) echo "Not fixing ownership" ;; *) echo "Options were: y, Y, n or N" esac fi echo "Running $NEWALIASES" $NEWALIASES echo "Done." debian/mlmmj.postinst0000644000000000000000000000026511770646145012125 0ustar #!/bin/sh set -e if [ -f /usr/share/debconf/confmodule ] then . /usr/share/debconf/confmodule else echo "No debconf installed" fi mkdir -p /var/spool/mlmmj #DEBHELPER# debian/README.Debian0000644000000000000000000001073611770646145011251 0ustar mlmmj for Debian ---------------- 0. Contents 1. Installation 1.1. Postfix 1.1.1. Recipient delimiter 1.1.2. Using the system aliases 1.1.3. Using virtual maps 1.2. Exim 1.3. Sendmail 1.4. Qmail 2. Creating a mailing list 2.1. Using /usr/bin/mlmmj-make-ml 2.2. Old version of /usr/bin/mlmmj-make-ml 3. MLMMJ PHP Web Admin 3.1. Setting-up Apache2 1. Installation 1.1. Postfix 1.1.1. Recipient delimiter Make sure that `recipient_delimiter' is set to `+'; run: dpkg-reconfigure -plow postfix if in doubt, or edit /etc/postfix/main.cf and restart postfix. 1.1.2. Using the system aliases Create mailing lists using the -a option to mlmmj-make-ml, then (as instructed) run "/usr/bin/newaliases". Don't worry about the cron job, there's already one in place for all the lists in /etc/cron.d/mlmmj. Note that you may need (or not) to: chown -R nobody:nogroup /var/spool/mlmmj/list depending on your postfix setup. 1.1.2. Using virtual maps If you don't want to use system aliases (for example if you need to do mass hosting of mailing lists), you can use a more complex setup: virtual_alias_maps and alias_maps in postfix, and custom path for each of your lists. It's a little bit more complex, but not so much. The following directives in postfix main.cf instead: virtual_alias_maps = hash:/etc/postfix/postfix_virtual_mlmmj alias_maps = hash:/etc/aliases, hash:/etc/postfix_aliases_mlmmj This will extend the system aliases. Now let's pretend we want to add a new mylist@example.com list. We create it with mlmmj-make-ml (without the -a option): (echo example.com; echo listmaster@example.com; echo N;) | /usr/bin/mlmmj-make-ml -L example.com_mylist -s /path/to/example.com/lists In the file /etc/postfix/postfix_virtual put: mylist@example.com example.com_mylist In the file postfix_aliases_mlmmj, put: example.com_mylist: "|/usr/bin/mlmmj-recieve -L /path/to/example.com/lists/example.com_mylist/" Don't forget to: postmap /etc/postfix/postfix_virtual_mlmmj postmap /etc/postfix_aliases_mlmmj /etc/init.d/postfix reload each time you add a new list. 1.2. Exim For Exim intergration it is recommended to follow the docs in: /usr/share/doc/mlmmj/README.exim4 Rather than using a mlmmj user and group you can: chown -R Debian-exim:Debian-exim /var/spool/mlmmj/mlmmj-test It is also possible to use the /etc/aliases file as in "1.1 Postfix" part of this file and add the following to the "userforward:" and "localuser:" exim configuration: local_part_suffix = +* local_part_suffix_optional Running "/usr/bin/newaliases" is not required and the there's already a cron job in /etc/cron.d/mlmmj in place to handle all lists. 1.3. Sendmail For use with sendmail please refer to: /usr/share/doc/mlmmj/README.sendmail 1.4. Qmail For use with qmail please refer to: /usr/share/doc/mlmmj/README.qmail 2. Creating a mailing list 2.1. Using /usr/bin/mlmmj-make-ml The installed version of mlmmj-make-ml is an untouched version from the upstream release. Run "man mlmmj-make-ml" for details of usage. If the exim4 package is installed then it is not necessary to add anything to /etc/aliases if you have correctly intergrated mlmmj into the exim4 configuration. The only option recommended is "-L" to name the mailing list. Read /usr/share/doc/mlmmj/TUNABLES.gz to configure your mailing list by adding/editing files in /var/spool/mlmmj/[list name]/control/. Use /usr/bin/mlmmj-sub to subscribe people to your mailing list. 2.2. Old version of /usr/bin/mlmmj-make-ml You can find the old version of /usr/bin/mlmmj-make-ml in /usr/share/doc/mlmmj/ directory. This depends on the dctrl-tools package. 3. MLMMJ PHP Web Admin 3.1. Setting-up Apache2 To use mlmmj-php-web-admin add something like this in one of your virtual host files (for example in /etc/apache2/sites-available/default): AllowOverride All Alias /mlmmj-php-web-admin /usr/share/mlmmj-php-web-admin/htdocs The AllowOverride All is necessary for the default .htaccess to work. 3.2. Configuring MLMMJ Web Admin Set the path of your list in /etc/mlmmj-web-admin/config.php. Set a login and password as follow: htpasswd -c /etc/mlmmj-php-web-admin/htpasswd YOUR-USERNAME debian/control0000644000000000000000000000345011770646145010606 0ustar Source: mlmmj Section: mail Priority: optional Maintainer: MLMMJ packaging team Uploaders: Thomas Goirand Build-Depends: debhelper (>= 9), dpkg-dev (>= 1.16.1.1~) Standards-Version: 3.9.3 Vcs-Browser: http://git.debian.org/?p=pkg-mlmmj/mlmmj.git Vcs-Git: http://git.debian.org/git/pkg-mlmmj/mlmmj.git Homepage: http://mlmmj.org/ Package: mlmmj Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, postfix | exim4 | mail-transport-agent Suggests: mlmmj-php-web, mlmmj-php-web-admin Description: mail server independent mailing list manager A mailing list manager with roughly the same functionality as ezmlm. . mlmmj features: * Archive * Custom headers / footer * Fully automated bounce handling (similar to ezmlm) * Complete requeueing functionality * Moderation functionality * Subject prefix * Subscribers only posting * Regular expression access control * Functionality to retrieve old posts * Web-interface * Digests * No mail delivery subscription * VERP support * Delivery Status Notification (RFC1891) support . Package: mlmmj-php-web Architecture: all Depends: ${misc:Depends}, mlmmj, php5 Description: web interface for mlmmj, written in php A web based tool for mlmmj written in php, so that your users can subscribe or unsubscribe through some HTML forms, which sometimes, might be more convenient than just using the list commands. Package: mlmmj-php-web-admin Architecture: all Depends: ${misc:Depends}, mlmmj, php5 Description: administrative web interface for mlmmj, written in php This web based administrative tool for mlmmj written in php will help you to configure each mailing list individualy, through the web. You will be able with mlmmj-php-web-admin to set each individual tunable of the list. debian/mlmmj-php-web.NEWS0000644000000000000000000000052511770646145012355 0ustar mlmmj (1.2.17-1) unstable; urgency=low Due to Debian bug #553548 all the files from /var/www/mlmmj-php-web have been moved to /usr/share/mlmmj-php-web. You will need to adjust your Apache config if you have upgraded from a previous package version. -- Daniel Walrond Wed, 27 Jan 2010 16:54:18 +0000 debian/mlmmj.postrm0000644000000000000000000000144611770646145011570 0ustar #!/bin/sh set -e case "$1" in purge) if [ -e /usr/share/debconf/confmodule ] then . /usr/share/debconf/confmodule db_get mlmmj/remove-on-purge || true if [ "$RET" = "true" ] then echo "Removing /var/spool/mlmmj and /etc/mlmmj/lists." rm -rf /var/spool/mlmmj /etc/mlmmj/lists > /dev/null fi db_purge || true fi if grep -qs '/usr/bin/mlmmj' /etc/aliases then echo "Warning /etc/aliases appears to contain references to mlmmj." >&2 fi ;; remove|upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) ;; *) echo "postrm called with unknown argument \`$1'" >&2 exit 1 ;; esac #DEBHELPER# exit 0 debian/docs0000644000000000000000000000021611770646145010053 0ustar AUTHORS FAQ README README.access README.exim4 README.qmail README.security README.sendmail TODO TUNABLES UPGRADE VERSION debian/README.source debian/source/0000755000000000000000000000000011770646145010501 5ustar debian/source/format0000644000000000000000000000001411770646145011707 0ustar 3.0 (quilt) debian/mlmmj-php-web-admin.README.Debian0000644000000000000000000000105411770646145015003 0ustar mlmmj-php-web-admin for Debian ------------------------------ In order for mlmmj-php-web-admin to work correctly, you need to add the AllowOverride All directive to your apache configuration for /usr/share/mlmmj-php-web-admin/ Also, you need to change permissions on the lists you wish to administer via the web based interface. For each list you wish to administer, do chown -R www-data /var/spool/mlmmj//control/ You will need to setup a htpasswd file as described in the README file except create the file /etc/mlmmj-php-web-admin/htpasswd. debian/gbp.conf0000644000000000000000000000016411770646145010621 0ustar [DEFAULT] upstream-branch = upstream-sid debian-branch = debian-sid [git-buildpackage] export-dir = ../build-area/ debian/po/0000755000000000000000000000000011770646145007617 5ustar debian/po/pt.po0000644000000000000000000000371411770646145010607 0ustar # translation of mlmmj to Portuguese # Copyright (C) 2007 Américo Monteiro # This file is distributed under the same license as the mlmmj package. # # Américo Monteiro , 2007. msgid "" msgstr "" "Project-Id-Version: mlmmj 1.2.14-1\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2007-06-24 04:32+0200\n" "PO-Revision-Date: 2007-07-21 01:44+0100\n" "Last-Translator: Américo Monteiro \n" "Language-Team: Portuguese \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" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "Remove mlmmj lists on purge?" msgstr "Remover as listas do mlmmj ao purgar?" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "" "Removing mlmmj on purge includes the removal of all subscriber lists, " "archives and configuration options for all lists currently stored." msgstr "" "A remoção de mlmmj em modo purgar inclui a remoção de todas as listas de " "subscrição, arquivos e opções de configuração para todas as listas " "actualmente armazenadas." #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "" "Accepting here basically means that everything under /var/spool/mlmmj and /" "etc/mlmmj/lists will be removed when this package is purged. Also please " "note that any changes you might have made to /etc/aliases will not be unmade " "automatically when this package is removed. (A notice will be displayed " "however, to remind you to clean up your aliases.)" msgstr "" "Aceitando aqui básicamente significa que tudo em /var/spool/mlmmj e em " "/etc/mlmmj/lists será removido quando este pacote for purgado. E também, " "por favor note que qualquer alteração que tenha feito em /etc/aliases não " "será desfeita automaticamente quando este pacote for removido. (No entanto " "um aviso será mostrado, para lembrá-lo de limpar os seus 'aliases'.)" debian/po/fr.po0000644000000000000000000000401211770646145010563 0ustar # mail server independent mailing list manager. # Copyright (C) 2004 # This file is distributed under the same license as the mlmmj package. # Sren Boll Overgaard , 2006. # msgid "" msgstr "" "Project-Id-Version: mlmmj 1.2.11-4\n" "Report-Msgid-Bugs-To: boll@debian.org\n" "POT-Creation-Date: 2006-04-04 18:30+0000\n" "PO-Revision-Date: 2006-04-08 13:59+0100\n" "Last-Translator: Steve Petruzzello \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=iso-8859-15\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: French\n" "X-Poedit-SourceCharset: iso-8859-15\n" #. Type: boolean #. Description #: ../mlmmj.templates:4 msgid "Remove mlmmj lists on purge?" msgstr "Faut-il effacer les listes mlmmj la purge du paquet?" #. Type: boolean #. Description #: ../mlmmj.templates:4 msgid "" "Removing mlmmj on purge includes the removal of all subscriber lists, " "archives and configuration options for all lists currently stored." msgstr "" "Veuillez noter que cela effacera galement les listes d'inscription, les " "archives ainsi que les options de configuration de toutes les listes " "actuellement configures." #. Type: boolean #. Description #: ../mlmmj.templates:4 msgid "" "Accepting here basically means that everything under /var/spool/mlmmj and /" "etc/mlmmj/lists will be removed when this package is purged. Also please " "note that any changes you might have made to /etc/aliases will not be unmade " "automatically when this package is removed. (A notice will be displayed " "however, to remind you to clean up your aliases.)" msgstr "" "Si vous choisissez cette option, tous les fichiers qui sont sous /var/spool/" "mlmmj et /etc/mlmmj/lists seront effacs la purge de ce paquet. Veuillez " "cependant noter que tous les ventuels changements dans le fichier /etc/" "aliases ne seront pas retirs la purge de ce paquet. Un message " "d'avertissement sera nanmoins affich afin de vous rappeler de nettoyer vos " "alias." debian/po/pl.po0000644000000000000000000000416511770646145010600 0ustar # Translation of mlmmj debconf templates to Polish. # Copyright (C) 2012 # This file is distributed under the same license as the mlmmj package. # Michał Kułach , 2012. msgid "" msgstr "" "Project-Id-Version: mlmmj\n" "Report-Msgid-Bugs-To: mlmmj@packages.debian.org\n" "POT-Creation-Date: 2012-02-09 19:44+0100\n" "PO-Revision-Date: 2012-02-10 16:32+0100\n" "Last-Translator: Michał Kułach \n" "Language-Team: Polish \n" "Language: pl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" "X-Generator: Lokalize 1.2\n" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "Remove mlmmj lists on purge?" msgstr "Usunąć listy mlmmj w przypadku czyszczenia pakietu?" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "" "Removing mlmmj on purge includes the removal of all subscriber lists, " "archives and configuration options for all lists currently stored." msgstr "" "Czyszczenie pakietu mlmmj obejmuje usunięcie wszystkich list subskrybentów, " "archiwów i opcji konfiguracyjnych dla wszystkich obecnie przechowywanych " "list." #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "" "Accepting here basically means that everything under /var/spool/mlmmj and /" "etc/mlmmj/lists will be removed when this package is purged. Also please " "note that any changes you might have made to /etc/aliases will not be unmade " "automatically when this package is removed. (A notice will be displayed " "however, to remind you to clean up your aliases.)" msgstr "" "Wybranie \"tak\" spowoduje, że w przypadku czyszczenia pakietu, wszystkie " "pliki z katalogów /var/spool/mlmmj i /etc/mlmmj/lists zostaną usunięte. " "Proszę zauważyć, że zmiany dokonane przez użytkownika w /etc/aliases nie " "zostaną automatycznie cofnięte przy usuwaniu tego pakietu (zostanie jednak " "wyświetlona informacja, przypominająca o konieczności usunięcia swoich " "aliasów)." debian/po/ru.po0000644000000000000000000000447311770646145010615 0ustar # translation of mlmmj_1.2.15-1.1_ru.po to Russian # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Yuri Kozlov , 2009. msgid "" msgstr "" "Project-Id-Version: mlmmj 1.2.15-1.2\n" "Report-Msgid-Bugs-To: mlmmj@packages.debian.org\n" "POT-Creation-Date: 2009-09-23 21:12+0200\n" "PO-Revision-Date: 2009-09-13 09:36+0400\n" "Last-Translator: Yuri Kozlov \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.11.4\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" "10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "Remove mlmmj lists on purge?" msgstr "Удалять списки mlmmj при вычистке?" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "" "Removing mlmmj on purge includes the removal of all subscriber lists, " "archives and configuration options for all lists currently stored." msgstr "" "При вычистке mlmmj удаляются все списки подписчиков, архивы и параметры " "настройки хранимых списков." #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "" "Accepting here basically means that everything under /var/spool/mlmmj and /" "etc/mlmmj/lists will be removed when this package is purged. Also please " "note that any changes you might have made to /etc/aliases will not be unmade " "automatically when this package is removed. (A notice will be displayed " "however, to remind you to clean up your aliases.)" msgstr "" "При утвердительном ответе при вычистке пакета удаляется всё из каталогов /" "var/spool/mlmmj и /etc/mlmmj/lists. Также заметим, что при удалении пакета " "любые изменения, которые вы могли сделать в /etc/aliases, не будут отменены " "автоматически. (Однако будет выведено напоминание, чтобы вы не забыли " "почистить файл aliases.)" debian/po/nl.po0000644000000000000000000000361611770646145010576 0ustar # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE 'S COPYRIGHT HOLDER # This file is distributed under the same license as the package. # FIRST AUTHOR , YEAR. # msgid "" msgstr "" "Project-Id-Version: mlmmj\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2007-10-02 04:31+0200\n" "PO-Revision-Date: 2007-10-25 19:38+0100\n" "Last-Translator: Bart Cornelis \n" "Language-Team: debian-l10n-dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Poedit-Language: Dutch\n" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "Remove mlmmj lists on purge?" msgstr "Wilt u de mlmmj-lijsten verwijderen wanneer dit pakket gewist wordt?" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "Removing mlmmj on purge includes the removal of all subscriber lists, archives and configuration options for all lists currently stored." msgstr "Als u het pakket 'mlmmj' wist worden alle abonneelijsten, archieven, en configuratie-opties van de momenteel opgeslagen lijsten verwijderd." #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "Accepting here basically means that everything under /var/spool/mlmmj and /etc/mlmmj/lists will be removed when this package is purged. Also please note that any changes you might have made to /etc/aliases will not be unmade automatically when this package is removed. (A notice will be displayed however, to remind you to clean up your aliases.)" msgstr "Als u dit aanvaard betekend dit dat alles onder /var/spool/mlmmj en /etc/mlmmj/lists verwijderd wordt wanneer dit pakket gewist wordt. Merk op dat veranderingen die u eventueel in /etc/aliases maakt niet automatisch verwijderd worden wanneer dit pakket verwijderd wordt (Er wordt wel een bericht weergegeven om u eraan te herinneren dat uw aliases opgeruimd moeten worden)." debian/po/it.po0000644000000000000000000000375311770646145010603 0ustar # Italian translation of the mlmmj debconf template # This file is distributed under the same license as the mlmmj package # Luca Monducci , 2009. # msgid "" msgstr "" "Project-Id-Version: mlmmj 1.2.15 italian debconf\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2008-03-17 04:42+0100\n" "PO-Revision-Date: 2009-09-19 15:22+0200\n" "Last-Translator: Luca Monducci \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "Remove mlmmj lists on purge?" msgstr "Eliminare gli elenchi mlmmj alla rimozione del pacchetto?" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "" "Removing mlmmj on purge includes the removal of all subscriber lists, " "archives and configuration options for all lists currently stored." msgstr "" "La rimozione completa di mlmmj comprende la cancellazione di tutti gli " "elenchi degli abbonati, degli archivi e della configurazione delle opzioni " "di tutte le liste attualmente memorizzate." #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "" "Accepting here basically means that everything under /var/spool/mlmmj and /" "etc/mlmmj/lists will be removed when this package is purged. Also please " "note that any changes you might have made to /etc/aliases will not be unmade " "automatically when this package is removed. (A notice will be displayed " "however, to remind you to clean up your aliases.)" msgstr "" "Accettando, praticamente tutto ciò che è memorizzato in /var/spool/mlmmj e " "in /etc/mlmmj/lists verrà eliminato quando questo pacchetto verrà rimosso " "completamente. Notare che qualsiasi modifica fatta a /etc/aliases non verrà " "annullata automaticamente alla rimozione di questo pacchetto (verrà mostrato " "un avviso per ricordare di rimuovere i propri alias)." debian/po/cs.po0000644000000000000000000000360011770646145010563 0ustar # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # Martin Sin , 2006. # msgid "" msgstr "" "Project-Id-Version: mlmmj 1.2.11-5\n" "Report-Msgid-Bugs-To: boll@debian.org\n" "POT-Creation-Date: 2006-04-04 18:30+0000\n" "PO-Revision-Date: 2006-08-13 16:04+0200\n" "Last-Translator: Martin Sin \n" "Language-Team: Czech \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../mlmmj.templates:4 msgid "Remove mlmmj lists on purge?" msgstr "Smazat při odstranění balíčku také seznamy mlmmj?" #. Type: boolean #. Description #: ../mlmmj.templates:4 msgid "" "Removing mlmmj on purge includes the removal of all subscriber lists, " "archives and configuration options for all lists currently stored." msgstr "" "Tento způsob odstranění mlmmj zahrnuje smazání všech účastnických " "seznamů, archivů a konfiguračních voleb všech uložených seznamů." #. Type: boolean #. Description #: ../mlmmj.templates:4 msgid "" "Accepting here basically means that everything under /var/spool/mlmmj and /" "etc/mlmmj/lists will be removed when this package is purged. Also please " "note that any changes you might have made to /etc/aliases will not be unmade " "automatically when this package is removed. (A notice will be displayed " "however, to remind you to clean up your aliases.)" msgstr "" "Budete-li souhlasit, bude při odstranění balíčku smazáno vše v adresářích " "/var/spool/mlmmj a /etc/mlmmj/lists. Nutno poznamenat, že při odstranění " "balíčku nebudou automaticky zrušeny změny provedené v /etc/aliases. (Toto " "upozornění se samozřejmě ještě zobrazí a připomene vám odstranění vlastních " "aliasů.)" debian/po/eu.po0000644000000000000000000000354711770646145010601 0ustar # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Piarres Beobide , 2009. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: mlmmj@packages.debian.org\n" "POT-Creation-Date: 2009-09-23 21:12+0200\n" "PO-Revision-Date: 2009-09-23 22:43+0200\n" "Last-Translator: Piarres Beobide \n" "Language-Team: Basque \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "Remove mlmmj lists on purge?" msgstr "Ezabatu mlmmj zerrendak garbitzean?" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "" "Removing mlmmj on purge includes the removal of all subscriber lists, " "archives and configuration options for all lists currently stored." msgstr "" "Garbitzerakoan mlmmj kentzean harpidedun zerrenda guztiak, " "artxiboak eta erabiltzen diren zerrenden konfigurazioak ezabatuko dira." #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "" "Accepting here basically means that everything under /var/spool/mlmmj and /" "etc/mlmmj/lists will be removed when this package is purged. Also please " "note that any changes you might have made to /etc/aliases will not be unmade " "automatically when this package is removed. (A notice will be displayed " "however, to remind you to clean up your aliases.)" msgstr "" "Hemen onartzean orokorki /var/spool/mlmmj eta /etc/mlmmj/lists azpiko " "dena ezabatuko da pakete hau garbitzerakoan. Kontutan izan ere /etc/aliases " "egindako edozein aldaketa ez dela automatikoki kenduko pakete hau " "kentzean . (Ohar bat agertuko da zure aliases fitxategia garbitzea " "gogorarazteko.)" debian/po/vi.po0000644000000000000000000000404211770646145010575 0ustar # Vietnamese translation for mimmj. # Copyright © 2009 Free Software Foundation, Inc. # Clytie Siddall , 2009. # msgid "" msgstr "" "Project-Id-Version: mlmmj 1.2.15-1.2\n" "Report-Msgid-Bugs-To: mlmmj@packages.debian.org\n" "POT-Creation-Date: 2009-09-23 21:12+0200\n" "PO-Revision-Date: 2009-09-24 14:26+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.8\n" #: ../mlmmj.templates:1001 #. Type: boolean #. Description msgid "Remove mlmmj lists on purge?" msgstr "Gỡ bỏ danh sách mlmmj khi tẩy ?" #: ../mlmmj.templates:1001 #. Type: boolean #. Description msgid "" "Removing mlmmj on purge includes the removal of all subscriber lists, " "archives and configuration options for all lists currently stored." msgstr "Khi tẩy gói, cũng có khả năng gỡ bỏ tất cả các danh sách người đăng ký, kho thư và tuỳ chọn cấu hình cho mọi danh sách được cất giữ hiện thời." #: ../mlmmj.templates:1001 #. Type: boolean #. Description msgid "" "Accepting here basically means that everything under /var/spool/mlmmj and /" "etc/mlmmj/lists will be removed when this package is purged. Also please " "note that any changes you might have made to /etc/aliases will not be unmade " "automatically when this package is removed. (A notice will be displayed " "however, to remind you to clean up your aliases.)" msgstr "Bật tùy chọn này thì có nghĩa cơ bản là mọi điều nằm dưới « /var/spool/mlmmj » hay « /" "etc/mlmmj/lists » sẽ bị gỡ bỏ khi gói này bị tẩy. Ghi chú rằng thay đổi nào được bạn làm trong « /etc/aliases » không nằm dưới một của hai thư mục nói trên thì không bị tự động gỡ bỏ. (Tuy nhiên, bạn sẽ được thông báo để nhắc nhở làm sạch các bí danh.)" debian/po/sv.po0000644000000000000000000000364411770646145010616 0ustar # translation of mlmmj.po to swedish # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # This file is distributed under the same license as the PACKAGE package. # # Martin Bagge , 2008. msgid "" msgstr "" "Project-Id-Version: mlmmj\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2008-03-17 04:42+0100\n" "PO-Revision-Date: 2008-10-26 23:44+0100\n" "Last-Translator: Martin Bagge \n" "Language-Team: swedish \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" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "Remove mlmmj lists on purge?" msgstr "Ta bort mlmmj-listor när paketet tas bort?" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "" "Removing mlmmj on purge includes the removal of all subscriber lists, " "archives and configuration options for all lists currently stored." msgstr "" "Att ta bort mlmmj helt och hållet innebär att alla deltagarlistor, listarkiv " "och inställningar för samtliga listor raderas." #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "" "Accepting here basically means that everything under /var/spool/mlmmj and /" "etc/mlmmj/lists will be removed when this package is purged. Also please " "note that any changes you might have made to /etc/aliases will not be unmade " "automatically when this package is removed. (A notice will be displayed " "however, to remind you to clean up your aliases.)" msgstr "" "Väljer du att rensa helt betyder det mer eller mindre att alla filer på " "sökvägarna /var/spool/mlmmj och /etc/mlmmj/lists kommer att tas bort när " "paketet tas bort. Eventuella ändringar i /etc/aliases kommer dock inte att " "raderas automatiskt (du kommer dock att få en påminnelse om den detaljen vid " "raderingsprocessen)." debian/po/ja.po0000644000000000000000000000433411770646145010555 0ustar # Copyright (C) 2009 Daniel Walrond # This file is distributed under the same license as the mlmmj package. # Hideki Yamane (Debian-JP) , 2009. # msgid "" msgstr "" "Project-Id-Version: mlmmj 1.2.15-1.1\n" "Report-Msgid-Bugs-To: Daniel Walrond \n" "POT-Creation-Date: 2008-03-17 04:42+0100\n" "PO-Revision-Date: 2009-01-06 06:26+0900\n" "Last-Translator: Hideki Yamane (Debian-JP) \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "Remove mlmmj lists on purge?" msgstr "完全に削除する (purge する) 際に mlmmj のリストを削除しますか?" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "" "Removing mlmmj on purge includes the removal of all subscriber lists, " "archives and configuration options for all lists currently stored." msgstr "" "mlmmj を削除する際に完全に削除する (purge する) と、全ての購読者リストと" "アーカイブと現在保存している全てのリストの設定オプションも削除されます。" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "" "Accepting here basically means that everything under /var/spool/mlmmj and /" "etc/mlmmj/lists will be removed when this package is purged. Also please " "note that any changes you might have made to /etc/aliases will not be unmade " "automatically when this package is removed. (A notice will be displayed " "however, to remind you to clean up your aliases.)" msgstr "" "ここで「はい」と答えると、おおよそこのパッケージが完全に削除 (purge) される際に " "/var/spool/mlmmj および /etc/mlmmj/lists 以下の全てが削除されることになります。" "一点注意してほしいのは、/etc/aliases に行ったあらゆる変更はこのパッケージが削除" "される際に自動的には元には戻されないということです (注意は表示されますが、エイリ" "アスを整理するのを忘れないでください)。" debian/po/es.po0000644000000000000000000000574211770646145010576 0ustar # translation of mlmmj's po-debconf to Spanish # # This file is distributed under the same license as the mlmmj package. # # Changes: # - Initial translation # José Ignacio Méndez González , 2006 # - Revision # David Martínez Moreno # - Review and update # Javier Fernández-Sanguino , 2006 # # Traductores, si no conoce el formato PO, merece la pena leer la # documentación de gettext, especialmente las secciones dedicadas a este # formato, por ejemplo ejecutando: # info -n '(gettext)PO Files' # info -n '(gettext)Header Entry' # # Equipo de traducción al español, por favor lean antes de traducir # los siguientes documentos: # # - El proyecto de traducción de Debian al español # http://www.debian.org/intl/spanish/ # especialmente las notas y normas de traducción en # http://www.debian.org/intl/spanish/notas # # - La guía de traducción de po's de debconf: # /usr/share/doc/po-debconf/README-trans # o http://www.debian.org/intl/l10n/po-debconf/README-trans # # Si tiene dudas o consultas sobre esta traducción consulte con el último # traductor (campo Last-Translator) y ponga en copia a la lista de # traducción de Debian al español () # msgid "" msgstr "" "Project-Id-Version: mlmmj 1.2.11-7\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2006-10-19 01:07+0200\n" "PO-Revision-Date: 2006-12-28 13:50+0100\n" "Last-Translator: Javier Fernández-Sanguino \n" "Language-Team: Debian Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "Remove mlmmj lists on purge?" msgstr "¿Desea eliminar las listas mlmmj al purgar?" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "" "Removing mlmmj on purge includes the removal of all subscriber lists, " "archives and configuration options for all lists currently stored." msgstr "Si elimina mlmmj al purgar esto incluirá la eliminación de todas las listas de suscripción, archivos y opciones de configuración para todas las listas actualmente guardadas." #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "" "Accepting here basically means that everything under /var/spool/mlmmj and /" "etc/mlmmj/lists will be removed when this package is purged. Also please " "note that any changes you might have made to /etc/aliases will not be unmade " "automatically when this package is removed. (A notice will be displayed " "however, to remind you to clean up your aliases.)" msgstr "Si responde afirmativamente todo lo que esté bajo «/var/spool/mlmmj» y «/etc/mlmmj/lists» se eliminará cuando se purgue el paquete. Sepa también que cualquier cambio que pudiera haber hecho en /etc/aliases no se deshará de forma automática cuando se elimine este paquete. No obstante, se le mostrará un mensaje para recordarle que limpie su fichero «aliases»." debian/po/da.po0000644000000000000000000000365111770646145010550 0ustar # Danish translation mlmmj. # Copyright (C) mlmmj & nedenstående oversættere. # This file is distributed under the same license as the mlmmj package. # Joe Hansen (joedalton2@yahoo.dk), 2011. # msgid "" msgstr "" "Project-Id-Version: mlmmj\n" "Report-Msgid-Bugs-To: mlmmj@packages.debian.org\n" "POT-Creation-Date: 2012-02-09 19:44+0100\n" "PO-Revision-Date: 2011-05-14 18:30+01:00\n" "Last-Translator: Joe Hansen \n" "Language-Team: Danish \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "Remove mlmmj lists on purge?" msgstr "Fjern mlmmj-lister ved afinstallation?" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "" "Removing mlmmj on purge includes the removal of all subscriber lists, " "archives and configuration options for all lists currently stored." msgstr "" "Fjernelse af mlmmj ved afinstallation inkluderer fjernelse af alle " "abonnementlister, arkiver og konfigurationsindstillinger for alle aktuelt " "gemte lister." #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "" "Accepting here basically means that everything under /var/spool/mlmmj and /" "etc/mlmmj/lists will be removed when this package is purged. Also please " "note that any changes you might have made to /etc/aliases will not be unmade " "automatically when this package is removed. (A notice will be displayed " "however, to remind you to clean up your aliases.)" msgstr "" "Accept her betyder grundlæggende, at alt under /var/spool/mlmmj og /etc/" "mlmmj/lists vil blive fjernet, når denne pakke afinstalleres. Bemærk " "venligst også at alle ændringer, du har foretaget til /etc/aliases, ikke " "automatisk vil blive omgjort, når denne pakke fjernes. (En note vil dog " "blive vist for at huske dig på at rydde op i dine aliasser.)" debian/po/templates.pot0000644000000000000000000000247511770646145012351 0ustar # 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: boll@debian.org\n" "POT-Creation-Date: 2006-04-04 18:30+0000\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 #: ../mlmmj.templates:4 msgid "Remove mlmmj lists on purge?" msgstr "" #. Type: boolean #. Description #: ../mlmmj.templates:4 msgid "" "Removing mlmmj on purge includes the removal of all subscriber lists, " "archives and configuration options for all lists currently stored." msgstr "" #. Type: boolean #. Description #: ../mlmmj.templates:4 msgid "" "Accepting here basically means that everything under /var/spool/mlmmj and /" "etc/mlmmj/lists will be removed when this package is purged. Also please " "note that any changes you might have made to /etc/aliases will not be unmade " "automatically when this package is removed. (A notice will be displayed " "however, to remind you to clean up your aliases.)" msgstr "" debian/po/fi.po0000644000000000000000000000363711770646145010566 0ustar # Copyright (C) 2009 # This file is distributed under the same license as the mlmmj package. # # Esko Arajärvi , 2009. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: mlmmj@packages.debian.org\n" "POT-Creation-Date: 2009-09-23 21:12+0200\n" "PO-Revision-Date: 2009-10-05 22:06+0300\n" "Last-Translator: Esko Arajärvi \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "Remove mlmmj lists on purge?" msgstr "Poistetaanko mlmmj-listat siivottaessa paketti?" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "" "Removing mlmmj on purge includes the removal of all subscriber lists, " "archives and configuration options for all lists currently stored." msgstr "" "Paketin mlmmj siivoaminen sisältää kaikkien vastaanottajalistojen ja " "arkistojen poistamisen sekä kaikkien nykyisten listojen asetusten " "poistamisen." #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "" "Accepting here basically means that everything under /var/spool/mlmmj and /" "etc/mlmmj/lists will be removed when this package is purged. Also please " "note that any changes you might have made to /etc/aliases will not be unmade " "automatically when this package is removed. (A notice will be displayed " "however, to remind you to clean up your aliases.)" msgstr "" "Tämän vaihtoehdon valitseminen käytännössä merkitsee, että kaikki " "hakemistojen /var/spool/mlmmj ja /etc/mlmmj/lists alla oleva poistetaan, kun " "tämä paketti siivotaan. Huomaa myös, että tiedostoon /etc/aliases käsin " "tehtyjä muutoksia ei palauteta, kun tämä paketti poistetaan. " "(Palauttamisesta kyllä muistutetaan poiston yhteydessä.)" debian/po/gl.po0000644000000000000000000000356411770646145010571 0ustar # Copyright (C) 2009 Debian # This file is distributed under the same license as the mmlmj package. # # Marce Villarino , 2009. msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: mlmmj@packages.debian.org\n" "POT-Creation-Date: 2009-09-23 21:12+0200\n" "PO-Revision-Date: 2009-11-15 11:12+0100\n" "Last-Translator: Marce Villarino \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Lokalize 1.0\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "Remove mlmmj lists on purge?" msgstr "Desexa eliminar as listas de mlmmj ao purgar?" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "" "Removing mlmmj on purge includes the removal of all subscriber lists, " "archives and configuration options for all lists currently stored." msgstr "" "A purga de mlmmj inclúe a eliminación de todas as listaxes de subscritores, " "arquivos e opcións de configuración de todas as roldas gardadas." #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "" "Accepting here basically means that everything under /var/spool/mlmmj and /" "etc/mlmmj/lists will be removed when this package is purged. Also please " "note that any changes you might have made to /etc/aliases will not be unmade " "automatically when this package is removed. (A notice will be displayed " "however, to remind you to clean up your aliases.)" msgstr "" "Aceptar isto significa se eliminará todo o contido de /var/spool/mlmmj e " "/etc/mlmmj " "cando se purgue este paquete. Lembre tamén que as modificacións que fixese " "en " "/etc/aliases non se anularán automaticamente cando se elimine o paquete " "(Porén mostrarase un aviso para lembrarlle que limpe os alcumes)." debian/po/de.po0000644000000000000000000000400611770646145010547 0ustar # Translation of mlmmj debconf templates to German # Copyright (C) Helge Kreutzmann , 2007. # This file is distributed under the same license as the mlmmj package. # msgid "" msgstr "" "Project-Id-Version: mlmmj 1.2.11-7.1\n" "Report-Msgid-Bugs-To: mlmmj@packages.debian.org\n" "POT-Creation-Date: 2007-01-29 04:32+0100\n" "PO-Revision-Date: 2007-02-19 16:10+0100\n" "Last-Translator: Helge Kreutzmann \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "Remove mlmmj lists on purge?" msgstr "Mlmmj-Listen beim vollstndigen Lschen entfernen?" #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "" "Removing mlmmj on purge includes the removal of all subscriber lists, " "archives and configuration options for all lists currently stored." msgstr "" "Das Entfernen von Mlmmj beim vollstndigen Lschen (purge) beinhaltet die " "Entfernung aller Abonnenten-Listen, Archive und Konfigurationsoptionen fr " "alle derzeit gespeicherten Listen." #. Type: boolean #. Description #: ../mlmmj.templates:1001 msgid "" "Accepting here basically means that everything under /var/spool/mlmmj and /" "etc/mlmmj/lists will be removed when this package is purged. Also please " "note that any changes you might have made to /etc/aliases will not be unmade " "automatically when this package is removed. (A notice will be displayed " "however, to remind you to clean up your aliases.)" msgstr "" "Wird hier akzeptiert, bedeutet dies, das alles unter /var/spool/mlmmj und /" "etc/mlmmj/lists entfernt werden wird, wenn dieses Paket vollstndig gelscht " "wird. Beachten Sie auch, dass alle nderungen, die Sie an /etc/aliases " "vorgenommen haben nicht automatisch zurckgesetzt werden, wenn dieses Paket " "entfernt wird (allerdings wird ein Hinweis angezeigt, der Sie daran " "erinnert, Ihre Aliase aufzurumen)." debian/po/POTFILES.in0000644000000000000000000000005211770646145011371 0ustar [type: gettext/rfc822deb] mlmmj.templates debian/cron.d0000644000000000000000000000015011770646145010303 0ustar 0 */2 * * * root /usr/bin/test -x /usr/bin/mlmmj-maintd && /usr/bin/mlmmj-maintd -F -d /var/spool/mlmmj debian/mlmmj.config0000644000000000000000000000065211770646145011507 0ustar #!/bin/sh set -e case "$1" in configure|reconfigure) if [ -e /usr/share/debconf/confmodule ] then . /usr/share/debconf/confmodule db_input low mlmmj/remove-on-purge || true db_go || true fi ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac exit 0 debian/patches/0000755000000000000000000000000011770646145010630 5ustar debian/patches/series0000644000000000000000000000014711770646145012047 0ustar 05_fix_displayed_full_paths.diff 02_fix_mlmmj_php.diff fixes-path-to-templates-folder-in-php-web-admin debian/patches/05_fix_displayed_full_paths.diff0000644000000000000000000000105111770646145017030 0ustar From: Subject: Changes path of a printf in mlmmj.h to be /usr/bin and not /usr/local/bin when printing usages. Forwarded: not-needed --- a/include/mlmmj.h 2012-01-22 15:36:11.000000000 +0800 +++ b/include/mlmmj.h 2012-01-22 15:36:16.000000000 +0800 @@ -88,7 +88,7 @@ #define CHECKFULLPATH(name) if(strchr(name, '/') == NULL) { \ fprintf(stderr, "All mlmmj binaries have to " \ "be invoked with full path,\n" \ - "e.g. /usr/local/bin/%s\n", name); \ + "e.g. /usr/bin/%s\n", name); \ exit(EXIT_FAILURE); \ }; debian/patches/02_fix_mlmmj_php.diff0000644000000000000000000000124711770646145014620 0ustar From: Subject: Makes it so that mlmmj-php-web-admin uses the FHS of Debian with correct dirs. Forwarded: not-needed diff -u -r -N a/contrib/web/php-admin/htdocs/dot.htaccess b/contrib/web/php-admin/htdocs/dot.htaccess --- a/contrib/web/php-admin/htdocs/dot.htaccess 2012-01-22 15:40:16.000000000 +0800 +++ b/contrib/web/php-admin/htdocs/dot.htaccess 2012-01-22 15:40:37.000000000 +0800 @@ -1,4 +1,5 @@ Require valid-user AuthType Basic -AuthName "mlmmj web-interface" -AuthUserFile /home/mlmmj/htpasswd +AuthName "mlmmj web-interface on Debian GNU/Linux" +AuthUserFile /etc/mlmmj-php-web-admin/htpasswd +php_value include_path "/usr/share/mlmmj-php-web-admin" debian/patches/fixes-path-to-templates-folder-in-php-web-admin0000644000000000000000000000070211770646145021541 0ustar Description: Fixes path to templates folder in the php web admin config.php Author: Thomas Goirand Forwarded: not-needed --- mlmmj-1.2.18.0.orig/contrib/web/php-admin/conf/config.php +++ mlmmj-1.2.18.0/contrib/web/php-admin/conf/config.php @@ -2,6 +2,6 @@ $topdir = "/var/spool/mlmmj"; $confdir = dirname(__FILE__); -$templatedir = dirname(dirname(__FILE__))."/templates"; +$templatedir = dirname(__FILE__)."/templates"; ?> debian/mlmmj.templates0000644000000000000000000000112611770646145012235 0ustar Template: mlmmj/remove-on-purge Type: boolean Default: false _Description: Remove mlmmj lists on purge? Removing mlmmj on purge includes the removal of all subscriber lists, archives and configuration options for all lists currently stored. . Accepting here basically means that everything under /var/spool/mlmmj and /etc/mlmmj/lists will be removed when this package is purged. Also please note that any changes you might have made to /etc/aliases will not be unmade automatically when this package is removed. (A notice will be displayed however, to remind you to clean up your aliases.) debian/watch0000644000000000000000000000010411770646145010225 0ustar version=3 http://mlmmj.org/downloads /releases/mlmmj-(.*)\.tar\.gz debian/changelog0000644000000000000000000004414711770646145011065 0ustar mlmmj (1.2.18.0-2) unstable; urgency=low * Fixes path to web files, now conf files are in /etc (Closes: #677817), thanks to Chris Knadle for reporting. * Fixed README.Debian as suggested by Reuben Thomas (Closes: #617241). * Tells about nobody / nogroup rights in README.Debian (Closes: #617248), thanks to Reuben Thomas for reporting. * Reference correctly install path in the README.Debian of the mlmmj-php-web-admin package thanks to Chris Knadle for reporting (Closes: #677819). -- Thomas Goirand Thu, 21 Jun 2012 05:50:52 +0000 mlmmj (1.2.18.0-1) unstable; urgency=low * New upstream release. * Compat level is now 9, debhelper build-depends as well. * Updated the debian/watch file. * Removed some of debian/patches/02_fix_mlmmj_php.diff which aren't needed anymore. * Removed 06_fix_bashisms_mlmmj-make-ml.diff (applied upstream). * Removed 07_fix_CVE-2009-4896_php-admin_directory_traversal.diff, debian/patches/08_locating_support_files_in_php-admin.diff, debian/patches/09_german_listtexts_typo.diff. debian/patches/10_fix_manpages_syntax.diff (also applied upstream). * Now just removing the /usr/bin/mlmmj-make-ml.sh symlink to /usr/bin/mlmmj-make-ml instead of renaming mlmmj-make-ml.sh as upstream is doing the transition. No need to rename the man page either. * Remove php4 in the possible dependencies (php5 is enough...). * Standards-Version: is now 3.9.3. -- Thomas Goirand Wed, 30 May 2012 09:15:49 +0000 mlmmj (1.2.17-5.1) unstable; urgency=low * Non-maintainer upload. * Fix pending l10n issues. Debconf translations: - Danish (Joe Hansen). Closes: #626734 - Polish (Michał Kułach). Closes: #659374 -- Christian Perrier Sat, 18 Feb 2012 19:01:50 +0100 mlmmj (1.2.17-5) unstable; urgency=low * Now Depends: dpkg-dev (>= 1.16.1.1~), >= 1.16.1.2~ was a mistake, as 1.16.1.1~bpo60+2 is in backports. -- Thomas Goirand Mon, 23 Jan 2012 15:44:38 +0800 mlmmj (1.2.17-4) unstable; urgency=low * Sets mlmmj/remove-on-purge debconf as low priority, as the default really, is fine, and it's annoying when installing MLMMJ. * Add support for build-arch and build-indep targets thanks to Niels Thykier . * Bumped Standard version, added debian/source/format, switching to 3.0 quilt * Switching to Quilt instead of now deprecated dpatch (converted all dpatch patches to quilt patches, rewrote quilt patche headers to match DEP3, rebased patches so they apply cleanly). * Removed unused patches from debian/patches folder. * Now first choice for the mail server in Depends: is postfix, not exim4. * Bumped Standard version (no change needed). * Enabled hardened build flags through dpkg-buildflags, thanks to Moritz Muehlenhoff (Closes: #655893). * Fixed debian/copyright to match new version of DEP5. * Fixes man page syntax (some UTF-8 work, and some hyphen-used-as-minus-sign have been fixed as a patch). * Switching to source format 3.0 (quilt), and bumped compat and debhelper build-depends to v8. -- Thomas Goirand Tue, 10 Jan 2012 15:45:07 +0800 mlmmj (1.2.17-3) unstable; urgency=low * Added Danish Debconf translation thanks to Joe Dalton * Added the packaging of upstream ChangeLog that was missing. * Fixed debian/copyright in DEP5 format, and documented find_email_adr.c to the correct license (Closes: #633579). * Bumped Standard-Version to 3.9.2 * Added debian/source/format file. -- Thomas Goirand Tue, 17 May 2011 21:24:26 +0800 mlmmj (1.2.17-2) unstable; urgency=low * Fixes German listtexts moderation translation. * Fixes (Closes: #599183). * Creates the /var/spool/mlmmj directory in MLMMJ postinst (Closes: #599014). * Now uses pkg-mlmmj-devel@lists.alioth.debian.org as maintainer. * Added Vcs-Browser and Vcs-Git fields. -- Thomas Goirand Fri, 05 Nov 2010 19:16:15 +0800 mlmmj (1.2.17-1.1) unstable; urgency=low * Non-maintainer QA upload. * Fixes CVE-2009-4896 mlmmj-php-admin directory traversal (Closes: #588038). -- Thomas Goirand Sat, 17 Jul 2010 02:21:19 +0800 mlmmj (1.2.17-1) unstable; urgency=low * New upstream release (Closes: #516948, #564557). * Reworked debian package. * Switched to debhelper 7. * Include Swedish debconf translation (Closes: #503607). * Include Japanese debconf translation (Closes: #512988). * Include Italian debconf translation (Closes: #547410). * Include Basque debconf translation (Closes: #548111). * Include Vietnamese debconf translation (Closes: #548139). * Include Russian debconf translation (Closes: #548220). * Include Finnish debconf translation (Closes: #549791). * Include Galician debconf translation (Closes: #556283). * Switch back to upstream version of mlmmj-make-ml.sh (Closes: #446001). Old script /usr/share/doc/mlmmj/mlmmj-make-ml.Debian. * Fix lintian warning, binary-without-manpage, for script mlmmj-make-ml and manpage mlmmj-make-ml.sh. * Moved files from /var/www/ to /usr/share/ for mlmmj-php-web and mlmmj-php-web-admin (Closes: #553550, #553548). * Added dependency to mlmmj for the mlmmj-php-web package. * Added ${misc:Depends} dependency for both mlmmj-php-web and mlmmj-php-web-admin packages. * Bumped Standard-Version: to 3.8.3. * Added descriptions in all dpatch patches. * Added a README.source. * Wrote a more comprehensive long description. * Removed useless /usr/sbin dir in the mlmmj package. * Removed homepage from long description, added a homepage field, and used the correct new URL (mlmmj.org). * Accepted changes from NMU (Closes: #470125). * Fixed spelling of re-encode in previous changelog entry. * Fixed build problem (Closes: #560554). -- Daniel Walrond Wed, 27 Jan 2010 16:38:26 +0000 mlmmj (1.2.15-1.1) unstable; urgency=low * Non-maintainer upload. * Fix bashisms. (Closes: #465008) * Include dutch translation. (Closes: #449404) * debian/copyright: Re-encode as UTF8. * debian/rules: Fix ignoring make distclean failures. -- Marc 'HE' Brockschmidt Sat, 08 Mar 2008 23:38:39 +0100 mlmmj (1.2.15-1) unstable; urgency=low * New upstream release. * debian/po/pt.po: Add translation by Miguel Figueiredo. Closes: #434063. * Add check for mlmmj-maintd in crontab. Closes: #435999. * Fix mmap of zero bytes. Closes: #435420. * Depends on php5. Closes: #424802, #424835. * Fix mail to multiple lists only sent to one list. Closes: #425572. -- Daniel Walrond Sun, 12 Aug 2007 18:38:37 +0000 mlmmj (1.2.14-1) unstable; urgency=low * New upstream release. * New maintainer. Closes: #417827. * Altered mail-transport-agent dependency. * Change dependency from grep-dctrl to dctrl-tools. * Removed extra '/' from usage output. -- Daniel Walrond Wed, 13 Jun 2007 17:49:17 +0000 mlmmj (1.2.11-8) unstable; urgency=medium * QA upload. * Package is orphaned (#417827); set maintainer to Debian QA Group. * Switch to debhelper 5. * config.guess, config.sub: Not actually used; remove. * debian/mlmmj.postrm: - Don't assume debconf is available. Closes: #388600. - Source /usr/share/debconf/confmodule only once. - Avoid outputting to stdout lest we confuse debconf. * debian/mlmmj.postinst: Source /usr/share/debconf/confmodule in case we weren't preconfigured. * debian/mlmmj-upgrade-lists.pl, debian/mlmmj-upgrade-lists.1: Remove code for pre-woody compatibility, and update debconf templates accordingly. Thanks to Helge Kreutzmann. Closes: #411513. * debian/po/de.po: Add translation by Helge Kreutzmann. Closes: #411512. * debian/rules: - Let dh_strip handle DEB_BUILD_OPTIONS=nostrip. - Let dh_installdocs handle README.Debian files for subpackages. - Don't specify `--host' to configure if it equals `--build'. - Use mode 644 for listtexts. -- Matej Vela Wed, 2 May 2007 14:06:19 +0200 mlmmj (1.2.11-7.2) unstable; urgency=low * Orphaned. -- Søren Boll Overgaard Fri, 06 Apr 2007 20:18:55 +0000 mlmmj (1.2.11-7.1) unstable; urgency=low * Non-maintainer upload to fix longstanding l10n issues * Debconf templates translations: - Use the correct code for Czech. Closes: #382923 - Added Spanish. Closes: #404824 -- Christian Perrier Fri, 26 Jan 2007 20:42:52 +0100 mlmmj (1.2.11-7) unstable; urgency=low * Include czech debconf translation (Closes: Bug#382923) -- Søren Boll Overgaard Mon, 14 Aug 2006 18:28:34 +0000 mlmmj (1.2.11-6) unstable; urgency=low * Updated french debconf translation (Closes: Bug#363912) * Bumped standards version to 3.7.2. -- Søren Boll Overgaard Sun, 13 Aug 2006 18:57:15 +0000 mlmmj (1.2.11-5) unstable; urgency=low * Don't depend on debhelper. It was intended to be a build-dep. Thanks Martin Samesch. -- Søren Boll Overgaard Mon, 22 May 2006 12:18:06 +0000 mlmmj (1.2.11-4) unstable; urgency=low * Fix debconf templates to comply with policy. (Closes: Bug#354336, Bug#354435) * Include french debconf translation. (Closes: Bug#355836) -- Søren Boll Overgaard Tue, 4 Apr 2006 18:23:10 +0000 mlmmj (1.2.11-3) unstable; urgency=low * Switch to using po-debconf (Closes: Bug#351386) -- Søren Boll Overgaard Fri, 24 Feb 2006 19:27:39 +0000 mlmmj (1.2.11-2) unstable; urgency=low * Install translated list texts under /usr/share/mlmmj/text.skel// (Closes: Bug#350124) -- Søren Boll Overgaard Sat, 28 Jan 2006 20:56:28 +0000 mlmmj (1.2.11-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Mon, 23 Jan 2006 19:05:33 +0000 mlmmj (1.2.10-1) unstable; urgency=low * New upstream release * Update README.Debian to include information about the "delimiter" TUNABLE. -- Søren Boll Overgaard Wed, 18 Jan 2006 12:19:46 +0000 mlmmj (1.2.9-1) unstable; urgency=low * New upstream release * Disable 05_fix_call_to_free.dpatch since it is now in upstream. -- Søren Boll Overgaard Wed, 14 Dec 2005 21:38:06 +0000 mlmmj (1.2.8-7) unstable; urgency=low * Change call to free() to a call to myfree() (Closes: Bug#327768) -- Søren Boll Overgaard Mon, 12 Sep 2005 20:10:22 +0200 mlmmj (1.2.8-6) unstable; urgency=low * Sigh, actually fix build-depends. * Only run through configure once (Closes: Bug#325081) -- Søren Boll Overgaard Sun, 11 Sep 2005 20:16:38 +0200 mlmmj (1.2.8-5) unstable; urgency=low * Fix build-depends to fix FTBFS error. -- Søren Boll Overgaard Sun, 11 Sep 2005 17:42:27 +0200 mlmmj (1.2.8-4) unstable; urgency=low * Actually upload to unstable as was inteded with 1.2.8-3 -- Søren Boll Overgaard Sun, 11 Sep 2005 15:10:20 +0200 mlmmj (1.2.8-3) experimental; urgency=low * Fix a potential bug in mlmmj-make-ml which could cause $LISTDIR/index to have wrong permissions, leading to broken archiving. -- Søren Boll Overgaard Sat, 10 Sep 2005 21:36:46 +0200 mlmmj (1.2.8-2) experimental; urgency=low * Upload to unstable -- Søren Boll Overgaard Sat, 27 Aug 2005 23:34:38 +0200 mlmmj (1.2.8-1) experimental; urgency=low * New upstream release -- Søren Boll Overgaard Sun, 26 Jun 2005 15:03:41 +0200 mlmmj (1.2.7-2) experimental; urgency=low * Detect the installed MTA when creating a new list. Only works with postfix and Exim for now. * Automatically run newaliases, instead of asking user to do it. * Update README.Debian to reflect the current state of affairs. -- Søren Boll Overgaard Tue, 14 Jun 2005 21:50:36 +0200 mlmmj (1.2.7-1) experimental; urgency=low * New upstream release -- Søren Boll Overgaard Thu, 12 May 2005 18:34:23 +0200 mlmmj (1.2.5-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Thu, 28 Apr 2005 14:40:29 +0200 mlmmj (1.2.4-3) unstable; urgency=low * Update README.Debian to explain permission issues related to various MTAs (Closes: Bug#295535) -- Søren Boll Overgaard Sun, 24 Apr 2005 16:17:43 +0200 mlmmj (1.2.4-2) unstable; urgency=low * Make sure that permissions are set correctly when creating new lists. That is, ensure that the binaries can read the configuration and write to the spool. (Closes: #295535) -- Søren Boll Overgaard Thu, 7 Apr 2005 14:02:34 +0200 mlmmj (1.2.4-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Mon, 21 Feb 2005 20:13:47 +0000 mlmmj (1.2.3-1) unstable; urgency=low * New upstream release * Minor changes to mlmmj-php-web to make errors more correct in a Debian context. -- Søren Boll Overgaard Tue, 8 Feb 2005 21:20:25 +0000 mlmmj (1.2.2-3) unstable; urgency=low * Fix broken depends on specific php API in mlmmj-*-web packages (Closes: Bug#294021, Closes: Bug#294020) -- Søren Boll Overgaard Mon, 7 Feb 2005 16:00:51 +0000 mlmmj (1.2.2-2) unstable; urgency=low * Don't install man page for mlmmj-upgrade-lists in mlmmj-php-web -- Søren Boll Overgaard Thu, 3 Feb 2005 15:33:20 +0000 mlmmj (1.2.2-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Tue, 1 Feb 2005 16:42:25 +0000 mlmmj (1.2.1-2) unstable; urgency=low * Rewrite rules to avoid having binary-indep packages built by the autobuilders (Closes: Bug#292499) -- Søren Boll Overgaard Sun, 30 Jan 2005 16:41:14 +0000 mlmmj (1.2.1-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Wed, 26 Jan 2005 19:35:09 +0000 mlmmj (1.2.0-2) unstable; urgency=low * Add VERP support to the list of features at upstreams request -- Søren Boll Overgaard Wed, 26 Jan 2005 16:44:57 +0000 mlmmj (1.2.0-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Sun, 23 Jan 2005 12:13:45 +0000 mlmmj (1.1.0-4) unstable; urgency=low * Fix multiple issues in patched mlmmj-make-ml (Thanks to Rune) -- Søren Boll Overgaard Sat, 22 Jan 2005 09:50:07 +0000 mlmmj (1.1.0-3) unstable; urgency=low * Don't fork mlmmj maintenance daemon to the background (Closes: Bug#286812) -- Søren Boll Overgaard Wed, 22 Dec 2004 22:15:36 +0000 mlmmj (1.1.0-2) unstable; urgency=low * Include /usr/bin/mlmmj-upgrade-lists which was accidently left out in 1.1.0-1. -- Søren Boll Overgaard Mon, 6 Dec 2004 14:06:09 +0000 mlmmj (1.1.0-1) unstable; urgency=low * New upstream release * Upstream now automatically installs listtexts under /usr/share/mlmmj/ * Update mlmml-upgrade-texts and rename it to mlmmj-upgrade-lists -- Søren Boll Overgaard Wed, 1 Dec 2004 19:31:40 +0000 mlmmj (1.0.0-RELEASE+1.1.0-RC2-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Mon, 22 Nov 2004 19:09:33 +0000 mlmmj (1.0.0-RELEASE+1.1.0-RC1-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Fri, 12 Nov 2004 17:36:12 +0000 mlmmj (1.0.0-RELEASE-4) unstable; urgency=low * Install binary-indep files from the appropriate target in debian/rules (Closes: Bug#276375) -- Søren Boll Overgaard Sun, 17 Oct 2004 08:56:12 +0000 mlmmj (1.0.0-RELEASE-3) unstable; urgency=low * Fix references to /usr/local in error messages from the mlmmj-* binaries. (Thanks to Jesper Lund for pointing this out) * Improve language in debian/control * Remove verbose call to dh_installdebconf now that it works -- Søren Boll Overgaard Sun, 3 Oct 2004 08:30:15 +0000 mlmmj (1.0.0-RELEASE-2) unstable; urgency=low * Manpages written for Debian are now included upstream. Move our own to the attic (but keep mlmmj-main-wrapper.1 around, since it is Debian specific). * Introduce debconf, and ask the user if he wants us to remove all mlmmj lists and archives when the mlmmj package is removed. Update debian/postrm and debian/control accordingly. * Remind the user to clean up /etc/aliases if it contains references to mlmmj binaries. We don't want to attempt to clean it automatically. -- Søren Boll Overgaard Fri, 17 Sep 2004 18:46:01 +0000 mlmmj (1.0.0-RELEASE-1) unstable; urgency=low * New upstream release -- Søren Boll Overgaard Thu, 9 Sep 2004 10:41:05 +0000 mlmmj (1.0.0-RC4-4) unstable; urgency=low * Update mlmmj-make-ml patch to store configurations under /etc/mlmmj and just making the configuration stuff under /var symlinks. -- Søren Boll Overgaard Wed, 8 Sep 2004 19:56:43 +0000 mlmmj (1.0.0-RC4-3) unstable; urgency=low * add debian/watch * fix mlmmj-maint-wrapper to only execute mlmmj-maintd for directories -- Søren Boll Overgaard Sun, 5 Sep 2004 18:37:06 +0000 mlmmj (1.0.0-RC4-2) unstable; urgency=low * Fix wrong suggests, which contains remnants of tests. -- Søren Boll Overgaard Sun, 5 Sep 2004 05:29:57 +0000 mlmmj (1.0.0-RC4-1) unstable; urgency=low * Install list texts as configuration files * Initial Release. (closes: Bug#269249) * Introduce mlmmj-maint-wrapper for running applicable instances of mlmmj-maintd * Split web stuff into separate packages, to avoid making mlmmj depend on more stuff then necessary. * Write man pages for a bunch of binaries. These should prove useful upstream as well. * Rename mlmmj-make-ml.sh to mlmmj-make-ml, since there is no point in advertising that it is a shell script. * Extensive changes to contrib/web/* to fit the Debian file system layout -- Søren Boll Overgaard Tue, 31 Aug 2004 17:47:15 +0000 debian/README.source0000644000000000000000000000011511770646145011355 0ustar This package is using dpatch, so that it can be easily backported to Stable. debian/mlmmj-php-web-admin.NEWS0000644000000000000000000000054111770646145013441 0ustar mlmmj (1.2.17-1) unstable; urgency=low Due to Debian bug #553550 all the files from /var/www/mlmmj-php-web-admin have been moved to /usr/share/mlmmj-php-web-admin. You will need to adjust your Apache config if you have upgraded from a previous package version. -- Daniel Walrond Wed, 27 Jan 2010 16:54:18 +0000 debian/copyright0000644000000000000000000000713611770646145011143 0ustar Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?op=file&rev=240 Upstream-Name: mlmmj Upstream-Contact: MLMMJ Source: http://www.mlmmj.org Files: debian/* Copyright: (c) 2004-2007, Søren Boll Overgaard (c) 2007, Christian Perrier (c) 2007, Matej Vela (c) 2007-2010, Daniel Walrond (c) 2008, Marc 'HE' Brockschmidt (c) 2010-2012, Thomas Goirand License: MIT Files: src/find_email_adr.c Copyright: (c) 1980, 1993, The Regents of the University of California License: BSD Files: * Copyright: (c) 2002, 2003, 2004 Mads Martin Joergensen (c) 2004-2009, Morten K. Poulsen (c) 2009-2011, Ben Schmidt (c) 2004, Christoph Thiel (c) 2004, Christian Laursen (c) 2010-2012, Thomas Goirand License: MIT License: MIT Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: . The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. . THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. License: BSD Redistribution and use in source and binary forms, with or without modification, are 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. All advertising materials mentioning features or use of this software must display the following acknowledgement: This product includes software developed by the University of California, Berkeley and its contributors. . 4. Neither the name of the University nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. . THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS 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 REGENTS OR 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. debian/man/0000755000000000000000000000000011770646145007754 5ustar debian/man/mlmmj.10000644000000000000000000000145411770646145011156 0ustar .TH MLMMJ 1 "September 25, 2009" .SH NAME mlmmj \- maling list management made joyful .SH DESCRIPTION This manual page briefly outlines the mlmmj manpages, which are: .sp 1 .B mlmmj-bounce .sp 1 .B mlmmj-list .sp 1 .B mlmmj-maintd .sp 1 .B mlmmj-make-ml.sh .sp 1 .B mlmmj-process .sp 1 .B mlmmj-recieve .sp 1 .B mlmmj-send .sp 1 .B mlmmj-sub .sp 1 .B mlmmj-unsub .SH SEE ALSO .BR mlmmj-bounce (1), .BR mlmmj-list (1), .BR mlmmj-maintd (1), .BR mlmmj-make-ml.sh (1), .BR mlmmj-process (1), .BR mlmmj-recieve (1), .BR mlmmj-send (1), .BR mlmmj-sub (1), .BR mlmmj-unsub (1), .br .SH AUTHOR mlmmj was written by Mads Martin Joergensen and Morten K. Poulsen .PP This manual page was written by Daniel Walrond , for the Debian project (and may be used by others). debian/rules0000755000000000000000000000671611770646145010273 0ustar #!/usr/bin/make -f # -*- makefile -*- #export DH_VERBOSE=1 # These are used for cross-compiling and for saving the configure script # from having to guess our platform (since we know it already) DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) WEB_ADMIN_DEST = $(CURDIR)/debian/mlmmj-php-web-admin/usr/share/mlmmj-php-web-admin WEB_ADMIN_SRC = $(CURDIR)/contrib/web/php-admin USER_ADMIN_SRC = $(CURDIR)/contrib/web/php-user CONFFLAGS := --prefix=/usr --mandir=/usr/share/man ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE)) CONFFLAGS += --build=$(DEB_BUILD_GNU_TYPE) else CONFFLAGS += --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE) endif configure: configure-stamp configure-stamp: dh_testdir ./configure $(CONFFLAGS) $(shell dpkg-buildflags --export=configure) touch configure-stamp build: build-arch build-indep build-arch: build-stamp build-indep: build-stamp build-stamp: configure-stamp dh_testdir $(MAKE) touch $@ clean: dh_testdir dh_testroot [ ! -f Makefile ] || $(MAKE) distclean rm -f build-stamp configure-stamp config.log dh_clean install: build dh_testdir dh_testroot dh_prep dh_installdirs # Add here commands to install the package into debian/mlmmj. $(MAKE) DESTDIR=$(CURDIR)/debian/mlmmj install rm $(CURDIR)/debian/mlmmj/usr/bin/mlmmj-make-ml.sh install -m 755 -D $(CURDIR)/debian/mlmmj-make-ml.Debian \ $(CURDIR)/debian/mlmmj/usr/share/doc/mlmmj/mlmmj-make-ml.Debian dh_install -s # mlmmj-php-web install -m 644 -D $(USER_ADMIN_SRC)/mlmmj.php $(CURDIR)/debian/mlmmj-php-web/usr/share/mlmmj-php-web/mlmmj.php install -m 644 -D $(USER_ADMIN_SRC)/example.html $(CURDIR)/debian/mlmmj-php-web/usr/share/mlmmj-php-web/index.html install -m 644 -D $(USER_ADMIN_SRC)/README $(CURDIR)/debian/mlmmj-php-web/usr/share/doc/mlmmj-php-web/README install -m 644 -D $(USER_ADMIN_SRC)/example.html $(CURDIR)/debian/mlmmj-php-web/usr/share/doc/mlmmj-php-web/examples/examples.html ### mlmmj-php-web-admin ### # Create dirs install -d $(WEB_ADMIN_DEST)/htdocs install -d $(CURDIR)/debian/mlmmj-php-web-admin/etc/mlmmj-php-web-admin install -d $(CURDIR)/debian/mlmmj-php-web-admin/etc/mlmmj-php-web-admin/templates # Copy the content install -m 644 $(WEB_ADMIN_SRC)/htdocs/*.php $(WEB_ADMIN_DEST)/htdocs install -m 644 $(WEB_ADMIN_SRC)/htdocs/dot.htaccess $(WEB_ADMIN_DEST)/htdocs/.htaccess install -m 644 -D $(WEB_ADMIN_SRC)/README $(CURDIR)/debian/mlmmj-php-web-admin/usr/share/doc/mlmmj-php-web-admin/README install -m 644 $(WEB_ADMIN_SRC)/conf/* $(CURDIR)/debian/mlmmj-php-web-admin/etc/mlmmj-php-web-admin install -m 644 $(WEB_ADMIN_SRC)/templates/* $(CURDIR)/debian/mlmmj-php-web-admin/etc/mlmmj-php-web-admin/templates # Make sure we're using /etc for conf files ln -s /etc/mlmmj-php-web-admin $(CURDIR)/debian/mlmmj-php-web-admin/usr/share/mlmmj-php-web-admin/conf ln -s /etc/mlmmj-php-web-admin/templates $(CURDIR)/debian/mlmmj-php-web-admin/usr/share/mlmmj-php-web-admin/templates binary-common: build install dh_testdir dh_testroot dh_installchangelogs ChangeLog dh_installdocs dh_installexamples dh_installdebconf dh_installcron dh_installman dh_link dh_strip dh_compress dh_fixperms dh_installdeb dh_shlibdeps dh_gencontrol dh_md5sums dh_builddeb binary-indep: binary-common binary-arch: binary-common binary: binary-indep binary-arch .PHONY: build build-arch build-indep clean binary-indep binary-arch binary install configure