Translations by Joel Pickett

Joel Pickett has submitted the following strings to this translation. Contributions are visually coded: currently used translations, unreviewed suggestions, rejected suggestions.

13011332 of 1332 results
1439.
ERROR: The locks for some lists could not be acquired. This means that either Mailman was still active when you upgraded, or there were stale locks in the %(lockdir)s directory. You must put Mailman into a quiescent state and remove all stale locks, then re-run "make update" manually. See the INSTALL and UPGRADE files for details.
2011-11-28
ERROR: The locks for some lists could not be acquired. This means that either Mailman was still active when you upgraded, or there were stale locks in the %(lockdir)s directory. You must put Mailman into a quiescent state and remove all stale locks, then re-run "make update" manually. See the INSTALL and UPGRADE files for details.
1440.
Print the Mailman version.
2011-11-28
Print the Mailman version.
1441.
Using Mailman version:
2011-11-28
Using Mailman version:
1442.
General framework for interacting with a mailing list object. There are two ways to use this script: interactively or programmatically. Using it interactively allows you to play with, examine and modify a MailList object from Python's interactive interpreter. When running interactively, a MailList object called `m' will be available in the global namespace. It also loads the class MailList into the global namespace. Programmatically, you can write a function to operate on a MailList object, and this script will take care of the housekeeping (see below for examples). In that case, the general usage syntax is: %% bin/withlist [options] listname [args ...] Options: -l / --lock Lock the list when opening. Normally the list is opened unlocked (e.g. for read-only operations). You can always lock the file after the fact by typing `m.Lock()' Note that if you use this option, you should explicitly call m.Save() before exiting, since the interpreter's clean up procedure will not automatically save changes to the MailList object (but it will unlock the list). -i / --interactive Leaves you at an interactive prompt after all other processing is complete. This is the default unless the -r option is given. --run [module.]callable -r [module.]callable This can be used to run a script with the opened MailList object. This works by attempting to import `module' (which must be in the directory containing withlist, or already be accessible on your sys.path), and then calling `callable' from the module. callable can be a class or function; it is called with the MailList object as the first argument. If additional args are given on the command line, they are passed as subsequent positional args to the callable. Note that `module.' is optional; if it is omitted then a module with the name `callable' will be imported. The global variable `r' will be set to the results of this call. --all / -a This option only works with the -r option. Use this if you want to execute the script on all mailing lists. When you use -a you should not include a listname argument on the command line. The variable `r' will be a list of all the results. --quiet / -q Suppress all status messages. --help / -h Print this message and exit Here's an example of how to use the -r option. Say you have a file in the Mailman installation directory called `listaddr.py', with the following two functions: def listaddr(mlist): print mlist.GetListEmail() def requestaddr(mlist): print mlist.GetRequestEmail() Now, from the command line you can print the list's posting address by running the following from the command line: %% bin/withlist -r listaddr mylist Loading list: mylist (unlocked) Importing listaddr ... Running listaddr.listaddr() ... mylist@myhost.com And you can print the list's request address by running: %% bin/withlist -r listaddr.requestaddr mylist Loading list: mylist (unlocked) Importing listaddr ... Running listaddr.requestaddr() ... mylist-request@myhost.com As another example, say you wanted to change the password for a particular user on a particular list. You could put the following function in a file called `changepw.py': from Mailman.Errors import NotAMemberError def changepw(mlist, addr, newpasswd): try: mlist.setMemberPassword(addr, newpasswd) mlist.Save() except NotAMemberError: print 'No address matched:', addr and run this from the command line: %% bin/withlist -l -r changepw mylist somebody@somewhere.org foobar
2011-11-28
General framework for interacting with a mailing list object. There are two ways to use this script: interactively or programmatically. Using it interactively allows you to play with, examine and modify a MailList object from Python's interactive interpreter. When running interactively, a MailList object called `m' will be available in the global namespace. It also loads the class MailList into the global namespace. Programmatically, you can write a function to operate on a MailList object, and this script will take care of the housekeeping (see below for examples). In that case, the general usage syntax is: %% bin/withlist [options] listname [args ...] Options: -l / --lock Lock the list when opening. Normally the list is opened unlocked (e.g. for read-only operations). You can always lock the file after the fact by typing `m.Lock()' Note that if you use this option, you should explicitly call m.Save() before exiting, since the interpreter's clean up procedure will not automatically save changes to the MailList object (but it will unlock the list). -i / --interactive Leaves you at an interactive prompt after all other processing is complete. This is the default unless the -r option is given. --run [module.]callable -r [module.]callable This can be used to run a script with the opened MailList object. This works by attempting to import `module' (which must be in the directory containing withlist, or already be accessible on your sys.path), and then calling `callable' from the module. callable can be a class or function; it is called with the MailList object as the first argument. If additional args are given on the command line, they are passed as subsequent positional args to the callable. Note that `module.' is optional; if it is omitted then a module with the name `callable' will be imported. The global variable `r' will be set to the results of this call. --all / -a This option only works with the -r option. Use this if you want to execute the script on all mailing lists. When you use -a you should not include a listname argument on the command line. The variable `r' will be a list of all the results. --quiet / -q Suppress all status messages. --help / -h Print this message and exit Here's an example of how to use the -r option. Say you have a file in the Mailman installation directory called `listaddr.py', with the following two functions: def listaddr(mlist): print mlist.GetListEmail() def requestaddr(mlist): print mlist.GetRequestEmail() Now, from the command line you can print the list's posting address by running the following from the command line: %% bin/withlist -r listaddr mylist Loading list: mylist (unlocked) Importing listaddr ... Running listaddr.listaddr() ... mylist@myhost.com And you can print the list's request address by running: %% bin/withlist -r listaddr.requestaddr mylist Loading list: mylist (unlocked) Importing listaddr ... Running listaddr.requestaddr() ... mylist-request@myhost.com As another example, say you wanted to change the password for a particular user on a particular list. You could put the following function in a file called `changepw.py': from Mailman.Errors import NotAMemberError def changepw(mlist, addr, newpasswd): try: mlist.setMemberPassword(addr, newpasswd) mlist.Save() except NotAMemberError: print 'No address matched:', addr and run this from the command line: %% bin/withlist -l -r changepw mylist somebody@somewhere.org foobar
1443.
Unlock a locked list, but do not implicitly Save() it. This does not get run if the interpreter exits because of a signal, or if os._exit() is called. It will get called if an exception occurs though.
2011-11-28
Unlock a locked list, but do not implicitly Save() it. This does not get run if the interpreter exits because of a signal, or if os._exit() is called. It will get called if an exception occurs though.
1444.
Unlocking (but not saving) list: %(listname)s
2011-11-28
Unlocking (but not saving) list: %(listname)s
1445.
Finalizing
2011-11-28
Finalising
1446.
Loading list %(listname)s
2011-11-28
Loading list %(listname)s
1447.
(locked)
2011-11-28
(locked)
1448.
(unlocked)
2011-11-28
(unlocked)
1449.
Unknown list: %(listname)s
2011-11-28
Unknown list: %(listname)s
1450.
No list name supplied.
2011-11-28
No list name supplied.
1451.
--all requires --run
2011-11-28
--all requires --run
1452.
Importing %(module)s...
2011-11-28
Importing %(module)s...
1453.
Running %(module)s.%(callable)s()...
2011-11-28
Running %(module)s.%(callable)s()...
1454.
The variable `m' is the %(listname)s MailList instance
2011-11-28
The variable `m' is the %(listname)s MailList instance
1455.
Increment the digest volume number and reset the digest number to one. Usage: %(PROGRAM)s [options] [listname ...] Options: --help/-h Print this message and exit. The lists named on the command line are bumped. If no list names are given, all lists are bumped.
2011-11-28
Increment the digest volume number and reset the digest number to one. Usage: %(PROGRAM)s [options] [listname ...] Options: --help/-h Print this message and exit. The lists named on the command line are bumped. If no list names are given, all lists are bumped.
1456.
Check for pending admin requests and mail the list owners if necessary. Usage: %(PROGRAM)s [options] Options: -h/--help Print this message and exit.
2011-11-28
Check for pending admin requests and mail the list owners if necessary. Usage: %(PROGRAM)s [options] Options: -h/--help Print this message and exit.
1457.
Notice: %(discarded)d old request(s) automatically expired.
2011-11-28
Notice: %(discarded)d old request(s) automatically expired.
1458.
%(count)d %(realname)s moderator request(s) waiting
2011-11-28
%(count)d %(realname)s moderator request(s) waiting
1459.
%(realname)s moderator request check result
2011-11-28
%(realname)s moderator request check result
1460.
Pending subscriptions:
2011-11-28
Pending subscriptions:
1462.
Pending posts:
2011-11-28
Pending posts:
1463.
From: %(sender)s on %(date)s Subject: %(subject)s Cause: %(reason)s
2011-11-28
From: %(sender)s on %(date)s Subject: %(subject)s Cause: %(reason)s
1464.
Cull bad and shunt queues, recommended once per day. This script goes through the 'bad' and 'shunt' queue directories and, if mm_cfg.BAD_SHUNT_STALE_AFTER is > 0, it removes all files more than that many seconds old. If mm_cfg.BAD_SHUNT_ARCHIVE_DIRECTORY is a writable directory, the old files are moved there. Otherwise they are deleted. Only regular files immediately subordinate to the 'bad' and 'shunt' directories are processed. Anything else is skipped. Usage: %(PROGRAM)s [options] Options: -h / --help Print this message and exit.
2011-11-28
Cull bad and shunt queues, recommended once per day. This script goes through the 'bad' and 'shunt' queue directories and, if mm_cfg.BAD_SHUNT_STALE_AFTER is > 0, it removes all files more than that many seconds old. If mm_cfg.BAD_SHUNT_ARCHIVE_DIRECTORY is a writeable directory, the old files are moved there. Otherwise they are deleted. Only regular files immediately subordinate to the 'bad' and 'shunt' directories are processed. Anything else is skipped. Usage: %(PROGRAM)s [options] Options: -h / --help Print this message and exit.
1465.
Process disabled members, recommended once per day. This script cruises through every mailing list looking for members whose delivery is disabled. If they have been disabled due to bounces, they will receive another notification, or they may be removed if they've received the maximum number of notifications. Use the --byadmin, --byuser, and --unknown flags to also send notifications to members whose accounts have been disabled for those reasons. Use --all to send the notification to all disabled members. Usage: %(PROGRAM)s [options] Options: -h / --help Print this message and exit. -o / --byadmin Also send notifications to any member disabled by the list owner/administrator. -m / --byuser Also send notifications to any member disabled by themselves. -u / --unknown Also send notifications to any member disabled for unknown reasons (usually a legacy disabled address). -b / --notbybounce Don't send notifications to members disabled because of bounces (the default is to notify bounce disabled members). -a / --all Send notifications to all disabled members. -f / --force Send notifications to disabled members even if they're not due a new notification yet. -l listname --listname=listname Process only the given list, otherwise do all lists.
2011-11-28
Process disabled members, recommended once per day. This script cruises through every mailing list looking for members whose delivery is disabled. If they have been disabled due to bounces, they will receive another notification, or they may be removed if they've received the maximum number of notifications. Use the --byadmin, --byuser, and --unknown flags to also send notifications to members whose accounts have been disabled for those reasons. Use --all to send the notification to all disabled members. Usage: %(PROGRAM)s [options] Options: -h / --help Print this message and exit. -o / --byadmin Also send notifications to any member disabled by the list owner/administrator. -m / --byuser Also send notifications to any member disabled by themselves. -u / --unknown Also send notifications to any member disabled for unknown reasons (usually a legacy disabled address). -b / --notbybounce Don't send notifications to members disabled because of bounces (the default is to notify bounce disabled members). -a / --all Send notifications to all disabled members. -f / --force Send notifications to disabled members even if they're not due a new notification yet. -l listname --listname=listname Process only the given list, otherwise do all lists.
1466.
[disabled by periodic sweep and cull, no message available]
2011-11-28
[disabled by periodic sweep and cull, no message available]
1467.
Poll the NNTP servers for messages to be gatewayed to mailing lists. Usage: gate_news [options] Where options are --help -h Print this text and exit.
2011-11-28
Poll the NNTP servers for messages to be gatewayed to mailing lists. Usage: gate_news [options] Where options are --help -h Print this text and exit.
1468.
Send password reminders for all lists to all users. This program scans all mailing lists and collects users and their passwords, grouped by the list's host_name if mm_cfg.VIRTUAL_HOST_OVERVIEW is true. Then one email message is sent to each unique user (per-virtual host) containing the list passwords and options url for the user. The password reminder comes from the mm_cfg.MAILMAN_SITE_LIST, which must exist. Usage: %(PROGRAM)s [options] Options: -l listname --listname=listname Send password reminders for the named list only. If omitted, reminders are sent for all lists. Multiple -l/--listname options are allowed. -h/--help Print this message and exit.
2011-11-28
Send password reminders for all lists to all users. This program scans all mailing lists and collects users and their passwords, grouped by the list's host_name if mm_cfg.VIRTUAL_HOST_OVERVIEW is true. Then one email message is sent to each unique user (per-virtual host) containing the list passwords and options url for the user. The password reminder comes from the mm_cfg.MAILMAN_SITE_LIST, which must exist. Usage: %(PROGRAM)s [options] Options: -l listname --listname=listname Send password reminders for the named list only. If omitted, reminders are sent for all lists. Multiple -l/--listname options are allowed. -h/--help Print this message and exit.
1469.
Password // URL
2011-11-28
Password // URL
1470.
%(host)s mailing list memberships reminder
2011-11-28
%(host)s mailing list memberships reminder
1471.
Re-generate the Pipermail gzip'd archive flat files. This script should be run nightly from cron. When run from the command line, the following usage is understood: Usage: %(program)s [-v] [-h] [listnames] Where: --verbose -v print each file as it's being gzip'd --help -h print this message and exit listnames Optionally, only compress the .txt files for the named lists. Without this, all archivable lists are processed.
2011-11-28
Re-generate the Pipermail gzip'd archive flat files. This script should be run nightly from cron. When run from the command line, the following usage is understood: Usage: %(program)s [-v] [-h] [listnames] Where: --verbose -v print each file as it's being gzip'd --help -h print this message and exit listnames Optionally, only compress the .txt files for the named lists. Without this, all archiveable lists are processed.