http://hg.code.sf.net:8000/p/roundup/code/atom-log/tip/roundup/scripts/roundup_mailgw.py Mercurial Repository: p/roundup/code: roundup/scripts/roundup_mailgw.py history 2026-04-08T21:39:40-04:00 chore: remove __future print_funcion from code. http://hg.code.sf.net:8000/p/roundup/code/#changeset-9c3ec0a5c7fc88acb8a65632ecc13b2d52380314 John Rouillard rouilj@ieee.org 2026-04-08T21:39:40-04:00 2026-04-08T21:39:40-04:00
changeset 9c3ec0a5c7fc
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description chore: remove __future print_funcion from code.

Not needed as of Python 3.
files
doc: move OAUTH settings together, add set-value and OAUTH docs http://hg.code.sf.net:8000/p/roundup/code/#changeset-dbe30d5032b8b5929ae6f943d6eb5541caca7a7e John Rouillard rouilj@ieee.org 2026-04-02T12:26:13-04:00 2026-04-02T12:26:13-04:00
changeset dbe30d5032b8
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description doc: move OAUTH settings together, add set-value and OAUTH docs
files
refactor/bug: handle case where netrc returns None. http://hg.code.sf.net:8000/p/roundup/code/#changeset-82fc69e6d9d77e4708d75f8eeb80589f6f43ef38 John Rouillard rouilj@ieee.org 2026-02-19T22:15:12-05:00 2026-02-19T22:15:12-05:00
changeset 82fc69e6d9d7
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description refactor/bug: handle case where netrc returns None.

pyrefly flagged this. Python 3.14 (and 2.7) says authenticators()
returns None if there is no matching host. Also the original
exceptions IOError and TypeError appear to not be valid in this
context.

Rewrite to scope FileNotFoundError if .netrc is missing to just the
one method call. Handle rest of flow with if/else not exception
jump.
files
chore: ruff spacing fixups, flow control and import reordering/removal http://hg.code.sf.net:8000/p/roundup/code/#changeset-24e867f846dd84f57dfc58c0b6ea1ae5820e48e2 John Rouillard rouilj@ieee.org 2026-02-19T21:48:55-05:00 2026-02-19T21:48:55-05:00
changeset 24e867f846dd
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description chore: ruff spacing fixups, flow control and import reordering/removal
files
Update manpage of mailgw http://hg.code.sf.net:8000/p/roundup/code/#changeset-f0d39308819f82a29e8cbf5fdfa8ff532baf16d0 Ralf Schlatterbeck rsc@runtux.com 2022-11-27T11:00:00+01:00 2022-11-27T11:00:00+01:00
changeset f0d39308819f
branch
bookmark
tag
user Ralf Schlatterbeck <rsc@runtux.com>
description Update manpage of mailgw

Fix minor issues (ssl -> tls/ssl), --default-class option with '-'
instead of underscore.
files
Put oauth client secret into a file http://hg.code.sf.net:8000/p/roundup/code/#changeset-f918351a0fe6c5d830bc3c736b385791f2535832 Ralf Schlatterbeck rsc@runtux.com 2022-11-26T11:32:12+01:00 2022-11-26T11:32:12+01:00
changeset f918351a0fe6
branch
bookmark
tag
user Ralf Schlatterbeck <rsc@runtux.com>
description Put oauth client secret into a file

.. and get rid of the -I option of the mailgw script.
files
Changes from review http://hg.code.sf.net:8000/p/roundup/code/#changeset-27c2d7295ba2ff582af9acd9cf06ff05fca21d1e Ralf Schlatterbeck rsc@runtux.com 2022-11-23T21:16:01+01:00 2022-11-23T21:16:01+01:00
changeset 27c2d7295ba2
branch
bookmark
tag
user Ralf Schlatterbeck <rsc@runtux.com>
description Changes from review

mailgw script was still using usage()
files
Add OAuth authentication to the mailgw script http://hg.code.sf.net:8000/p/roundup/code/#changeset-3359dc1dabb09c4594c730feec4eafceb323186f Ralf Schlatterbeck rsc@runtux.com 2022-11-23T10:13:48+01:00 2022-11-23T10:13:48+01:00
changeset 3359dc1dabb0
branch
bookmark
tag
user Ralf Schlatterbeck <rsc@runtux.com>
description Add OAuth authentication to the mailgw script

Now IMAPS can be used with OAuth as required by several large cloud
providers. Move command line processing of the mailgw script to
``argparse``. Note that the command line options of the mailgw have
changed, see upgrading.txt for details.
files
Flake8 whitespace fixes, remove obsolete version check. http://hg.code.sf.net:8000/p/roundup/code/#changeset-c7a9f9c1801dffe31e77075a7894889368f25013 John Rouillard rouilj@ieee.org 2020-01-07T21:32:34-05:00 2020-01-07T21:32:34-05:00
changeset c7a9f9c1801d
branch
bookmark
tag
user John Rouillard <rouilj@ieee.org>
description Flake8 whitespace fixes, remove obsolete version check.

Removed obsolete 2.4 version check. 2.7 or newer is required.
files
Python 3 preparation: StringIO. http://hg.code.sf.net:8000/p/roundup/code/#changeset-55f09ca366c484e1c06dd34a4efead3f1634d7d7 Joseph Myers jsm@polyomino.org.uk 2018-07-25T09:08:29+00:00 2018-07-25T09:08:29+00:00
changeset 55f09ca366c4
branch
bookmark
tag
user Joseph Myers <jsm@polyomino.org.uk>
description Python 3 preparation: StringIO.

This generally arranges for StringIO and cStringIO references to use
io.StringIO for Python 3 but io.BytesIO for Python 2, consistent with
the string representations generally used in Roundup. A special
FasterStringIO in the TAL code, which referenced internals of the old
Python 2 StringIO module, is cut down so it doesn't actually do
anything beyond the StringIO class it inherits from (it would also be
reasonable to remove FasterStringIO completely). One place in
roundup_server.py clearly needing binary I/O is made to use io.BytesIO
unconditionally.
files
Python 3 preparation: convert print to a function. http://hg.code.sf.net:8000/p/roundup/code/#changeset-64b05e24dbd889f52bf8f773d3456bd0135baa27 Joseph Myers jsm@polyomino.org.uk 2018-07-24T09:54:52+00:00 2018-07-24T09:54:52+00:00
changeset 64b05e24dbd8
branch
bookmark
tag
user Joseph Myers <jsm@polyomino.org.uk>
description Python 3 preparation: convert print to a function.

Tool-assisted patch. It is possible that some "from __future__ import
print_function" are not in fact needed, if a file only uses print()
with a single string as an argument and so would work fine in Python 2
without that import.
files
closed issue2550884 roundup-mailgw --help text improved to explain the allowed parameters better. Suggested by by Karl-Philipp Richter. http://hg.code.sf.net:8000/p/roundup/code/#changeset-63574f1f357076cf7162a9a96288945afc87a763 Bernhard Reiter bernhard@intevation.de 2015-05-23T23:30:36+02:00 2015-05-23T23:30:36+02:00
changeset 63574f1f3570
branch
bookmark
tag
user Bernhard Reiter <bernhard@intevation.de>
description closed issue2550884 roundup-mailgw --help text improved to explain the allowed parameters better. Suggested by by Karl-Philipp Richter.
files
Run scripts (roundup_admin.py, ...) directly from checkout. http://hg.code.sf.net:8000/p/roundup/code/#changeset-86ef4ab17dc5126e90162938593f25f94e2d55ca anatoly techtonik techtonik@gmail.com 2013-02-21T20:49:45+03:00 2013-02-21T20:49:45+03:00
changeset 86ef4ab17dc5
branch
bookmark
tag
user anatoly techtonik <techtonik@gmail.com>
description Run scripts (roundup_admin.py, ...) directly from checkout.

Convenient when you don't want to install Roundup, but want
to run latest version.
files
Remove keyword expansions from CVS. All regression tests passed afterwards. http://hg.code.sf.net:8000/p/roundup/code/#changeset-6e3e4f24c75376f61ae0bf0e9ee334567585c38e Eric S. Raymond esr@thyrsus.com 2011-11-16T09:51:38-05:00 2011-11-16T09:51:38-05:00
changeset 6e3e4f24c753
branch
bookmark
tag
user Eric S. Raymond <esr@thyrsus.com>
description Remove keyword expansions from CVS. All regression tests passed afterwards.
files
support CRAM-MD5 for IMAPS http://hg.code.sf.net:8000/p/roundup/code/#changeset-38265325492a5680b85c3fd552f6b86ca3b3b647 Richard Jones richard@users.sourceforge.net 2010-02-02T05:15:10+00:00 2010-02-02T05:15:10+00:00
changeset 38265325492a
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description support CRAM-MD5 for IMAPS
files
Process each message through the mail gateway as a separate transaction. http://hg.code.sf.net:8000/p/roundup/code/#changeset-61cf00ca920a36b0554820b15693c053f0847c95 Ralf Schlatterbeck schlatterbeck@users.sourceforge.net 2009-07-14T09:10:43+00:00 2009-07-14T09:10:43+00:00
changeset 61cf00ca920a
branch
bookmark
tag
user Ralf Schlatterbeck <schlatterbeck@users.sourceforge.net>
description Process each message through the mail gateway as a separate transaction.

The mail-gateway used to process messages fetched, e.g., via imap in a
single big transaction. Now we process each message coming in via the
mail-gateway in its own transaction. Regression-tests passed.
See also discussion:
http://thread.gmane.org/gmane.comp.bug-tracking.roundup.user/9500
files
better comments, small refactoring http://hg.code.sf.net:8000/p/roundup/code/#changeset-82bdcff42c17d3132cd068d96767aefa916a9dd7 Richard Jones richard@users.sourceforge.net 2008-08-19T01:06:01+00:00 2008-08-19T01:06:01+00:00
changeset 82bdcff42c17
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description better comments, small refactoring
files
Add use of username/password stored in ~/.netrc in mailgw http://hg.code.sf.net:8000/p/roundup/code/#changeset-39af38d6f77dbd9e0ca1bf9d7ccf91f7f83f0a08 Richard Jones richard@users.sourceforge.net 2008-08-19T01:01:32+00:00 2008-08-19T01:01:32+00:00
changeset 39af38d6f77d
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description Add use of username/password stored in ~/.netrc in mailgw
files
Sorry, another mega-patch: http://hg.code.sf.net:8000/p/roundup/code/#changeset-ee73abcc95d2b389427ca5e27a61d384e26d9651 Richard Jones richard@users.sourceforge.net 2006-12-13T23:32:39+00:00 2006-12-13T23:32:39+00:00
changeset ee73abcc95d2
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description Sorry, another mega-patch:

- clarified windows service documentation (patch [SF#1597713])
- HTMLClass fixed to work with new item permissions check [SF#1602983]
- support POP over SSL (patch [SF#1597703])
files
Fix -c option (default class) for roundup-mailgw http://hg.code.sf.net:8000/p/roundup/code/#changeset-22ec8e91da2b392cc292d158c5f29b9034823e9f Ralf Schlatterbeck schlatterbeck@users.sourceforge.net 2006-07-15T10:08:01+00:00 2006-07-15T10:08:01+00:00
changeset 22ec8e91da2b
branch
bookmark
tag
user Ralf Schlatterbeck <schlatterbeck@users.sourceforge.net>
description Fix -c option (default class) for roundup-mailgw

Fixes [SF#1505649] "-c option for roundup-mailgw won't accept
parameter + patch"
files
[maint-0.8] merge from HEAD http://hg.code.sf.net:8000/p/roundup/code/#changeset-e859e7e001f808ab1d9a28773cf2b738800198d9 Richard Jones richard@users.sourceforge.net 2005-07-18T01:28:12+00:00 2005-07-18T01:28:12+00:00
changeset e859e7e001f8
branch maint-0.8
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description merge from HEAD
files
don't try to set a timeout for IMAPS (thanks Paul Jimenez) http://hg.code.sf.net:8000/p/roundup/code/#changeset-263e8f485db5da396c4479815303516c06995f06 Richard Jones richard@users.sourceforge.net 2005-07-18T01:19:57+00:00 2005-07-18T01:19:57+00:00
changeset 263e8f485db5
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description don't try to set a timeout for IMAPS (thanks Paul Jimenez)
files
mailgw can override the MAIL_DEFUALT_CLASS http://hg.code.sf.net:8000/p/roundup/code/#changeset-437775793d8ecc381715a8dbb8db76fb592933d4 Richard Jones richard@users.sourceforge.net 2004-09-14T22:09:48+00:00 2004-09-14T22:09:48+00:00
changeset 437775793d8e
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description mailgw can override the MAIL_DEFUALT_CLASS
files
[maint-0.7] mailgw can override the MAIL_DEFUALT_CLASS http://hg.code.sf.net:8000/p/roundup/code/#changeset-1154e7fa2f47059752c132b64ed5cfcdcf8b3b3b Richard Jones richard@users.sourceforge.net 2004-09-14T22:03:43+00:00 2004-09-14T22:03:43+00:00
changeset 1154e7fa2f47
branch maint-0.7
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description mailgw can override the MAIL_DEFUALT_CLASS
files
I thought I committed this last night. Ho hum. http://hg.code.sf.net:8000/p/roundup/code/#changeset-a9e1fff1e79338e22ae70e19e3a4a867f4122c9f Richard Jones richard@users.sourceforge.net 2004-07-27T00:57:19+00:00 2004-07-27T00:57:19+00:00
changeset a9e1fff1e793
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description I thought I committed this last night. Ho hum.

- This implements most of the rest of the new tracker config layout:
- dbinit.py split between schema.py and initial_data.py
- interfaces.py gone
- tracker and detectors __init__.py gone
- Added some missing functionality to backends: db_exists test and db_nuke.
- Implemented configuration file options in postgresql backend.
- Cleaned up tracker initialisation a lot.
files
[maint-0.7] couple of bugfixes http://hg.code.sf.net:8000/p/roundup/code/#changeset-b48fcae8b2adb541a214d3c0de9a5abc3804cdff Richard Jones richard@users.sourceforge.net 2004-05-28T01:03:53+00:00 2004-05-28T01:03:53+00:00
changeset b48fcae8b2ad
branch maint-0.7
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description couple of bugfixes
files
couple of bugfixes http://hg.code.sf.net:8000/p/roundup/code/#changeset-c26bb78d2f0c253f5ae755dec1453b6d712987e9 Richard Jones richard@users.sourceforge.net 2004-05-28T00:56:50+00:00 2004-05-28T00:56:50+00:00
changeset c26bb78d2f0c
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description couple of bugfixes
files
join adjacent translatable strings http://hg.code.sf.net:8000/p/roundup/code/#changeset-b54ad9ed394aa4b995573ee82bfb6036dc061b51 Alexander Smishlajev a1s@users.sourceforge.net 2004-05-18T19:26:32+00:00 2004-05-18T19:26:32+00:00
changeset b54ad9ed394a
branch
bookmark
tag
user Alexander Smishlajev <a1s@users.sourceforge.net>
description join adjacent translatable strings
files
print usage and exit if first non-option argument is not a directory http://hg.code.sf.net:8000/p/roundup/code/#changeset-3be606e3f58ee33f79517fb5ee69172259cbbcc9 Alexander Smishlajev a1s@users.sourceforge.net 2004-05-12T17:50:58+00:00 2004-05-12T17:50:58+00:00
changeset 3be606e3f58e
branch
bookmark
tag
user Alexander Smishlajev <a1s@users.sourceforge.net>
description print usage and exit if first non-option argument is not a directory

('roundup_mailgw help' produced traceback)
files
fixes for py2.1 (booleans, sigh) http://hg.code.sf.net:8000/p/roundup/code/#changeset-0b198ed096af6cde51fd9dce52a69aebdfad4e8b Richard Jones richard@users.sourceforge.net 2004-05-06T01:12:24+00:00 2004-05-06T01:12:24+00:00
changeset 0b198ed096af
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description fixes for py2.1 (booleans, sigh)
files
*** empty log message *** http://hg.code.sf.net:8000/p/roundup/code/#changeset-272b654b1227fa76d8a2501436316f64ec4c213f Richard Jones richard@users.sourceforge.net 2004-04-13T04:19:56+00:00 2004-04-13T04:19:56+00:00
changeset 272b654b1227
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description *** empty log message ***
files
added IMAP support to mail gateway (rfe [SF#934000]) http://hg.code.sf.net:8000/p/roundup/code/#changeset-b61640273061415ab480525b776c976af622fc28 Richard Jones richard@users.sourceforge.net 2004-04-13T04:11:49+00:00 2004-04-13T04:11:49+00:00
changeset b61640273061
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description added IMAP support to mail gateway (rfe [SF#934000])
files
version info in scripts http://hg.code.sf.net:8000/p/roundup/code/#changeset-3f89c8ffe4f121e61641135730e536efac405a79 Richard Jones richard@users.sourceforge.net 2004-04-05T23:43:04+00:00 2004-04-05T23:43:04+00:00
changeset 3f89c8ffe4f1
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description version info in scripts
files
documentation cleanup http://hg.code.sf.net:8000/p/roundup/code/#changeset-fc52d57c6c3e1527f340677f484744a40f645ad4 Richard Jones richard@users.sourceforge.net 2004-02-11T23:55:10+00:00 2004-02-11T23:55:10+00:00
changeset fc52d57c6c3e
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description documentation cleanup
files
[maint-0.5] added socket timeout to attempt to prevent stuck processes [SF#665487] http://hg.code.sf.net:8000/p/roundup/code/#changeset-de4fa8bed9d33e7704db1df6582e65736cb171fa Richard Jones richard@users.sourceforge.net 2003-04-24T04:28:33+00:00 2003-04-24T04:28:33+00:00
changeset de4fa8bed9d3
branch maint-0.5
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description added socket timeout to attempt to prevent stuck processes [SF#665487]
files
added socket timeout to attempt to prevent stuck processes [SF#665487] http://hg.code.sf.net:8000/p/roundup/code/#changeset-8b0bd0b897e6a5b8a6a6bd46326bebdc415f3e31 Richard Jones richard@users.sourceforge.net 2003-04-24T04:28:33+00:00 2003-04-24T04:28:33+00:00
changeset 8b0bd0b897e6
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description added socket timeout to attempt to prevent stuck processes [SF#665487]
files
*** empty log message *** http://hg.code.sf.net:8000/p/roundup/code/#changeset-c36df13925f9530cdf178064325bf7089577df20 Richard Jones richard@users.sourceforge.net 2003-03-24T02:56:30+00:00 2003-03-24T02:56:30+00:00
changeset c36df13925f9
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description *** empty log message ***
files
roundup mailgw now handles apop http://hg.code.sf.net:8000/p/roundup/code/#changeset-f478c236b1f6e50dd3e460a4c04188c1c12342c9 Richard Jones richard@users.sourceforge.net 2003-03-24T02:51:22+00:00 2003-03-24T02:51:22+00:00
changeset f478c236b1f6
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description roundup mailgw now handles apop
files
missed this part of the patch, added doc http://hg.code.sf.net:8000/p/roundup/code/#changeset-ebfd8dd1cce785ce5c7f47e0bce393022f7252ed Richard Jones richard@users.sourceforge.net 2003-01-12T00:03:11+00:00 2003-01-12T00:03:11+00:00
changeset ebfd8dd1cce7
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description missed this part of the patch, added doc
files
Cleaned up CHANGES/TODO http://hg.code.sf.net:8000/p/roundup/code/#changeset-36ec30d286ead5c665b135e82a5e4b45cfa4faaa Richard Jones richard@users.sourceforge.net 2002-09-13T00:08:44+00:00 2002-09-13T00:08:44+00:00
changeset 36ec30d286ea
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description Cleaned up CHANGES/TODO

Added try/finally to enforce db.close()
Changed default classic issue item display to only show message summary
files
reorganised mailgw code http://hg.code.sf.net:8000/p/roundup/code/#changeset-1c1ccfc9673de514af7a05a6b715321f464571a1 Richard Jones richard@users.sourceforge.net 2002-09-11T01:19:16+00:00 2002-09-11T01:19:16+00:00
changeset 1c1ccfc9673d
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description reorganised mailgw code
files
more Log removal http://hg.code.sf.net:8000/p/roundup/code/#changeset-e5826025eeb79f39c9c73309727d89b1b24372a8 Richard Jones richard@users.sourceforge.net 2002-09-10T01:07:06+00:00 2002-09-10T01:07:06+00:00
changeset e5826025eeb7
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description more Log removal
files
. [SF#517734] web header customisation is obscure http://hg.code.sf.net:8000/p/roundup/code/#changeset-cdcee6721841ad05faadeac06c11424b2b417bcc Richard Jones richard@users.sourceforge.net 2002-03-14T23:59:24+00:00 2002-03-14T23:59:24+00:00
changeset cdcee6721841
branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description . [SF#517734] web header customisation is obscure
files
[config-0-4-0-branch] missed the scripts dir in the merge from HEAD http://hg.code.sf.net:8000/p/roundup/code/#changeset-986354c4b1fbfc9cb83ae7c6741db25b45fec27b Richard Jones richard@users.sourceforge.net 2002-02-06T04:29:17+00:00 2002-02-06T04:29:17+00:00
changeset 986354c4b1fb
branch config-0-4-0-branch
bookmark
tag
user Richard Jones <richard@users.sourceforge.net>
description missed the scripts dir in the merge from HEAD
files
[config-0-4-0-branch] [[Metadata associated with this commit was garbled during conversion from CVS http://hg.code.sf.net:8000/p/roundup/code/#changeset-912029653c1cbb23e14007374af28c3a77f679d1 No Author no-author@users.sourceforge.net 2002-02-06T03:47:17+00:00 2002-02-06T03:47:17+00:00
changeset 912029653c1c
branch config-0-4-0-branch
bookmark
tag
user No Author <no-author@users.sourceforge.net>
description [[Metadata associated with this commit was garbled during conversion from CVS
to Subversion. The actual author of these changes was probably either Richard
Jones or Titus Brown.]]
files
Conversion to generated script stubs http://hg.code.sf.net:8000/p/roundup/code/#changeset-2256f81293c1eb8eb4fddbd624805901ea31cd74 Jürgen Hermann jhermann@users.sourceforge.net 2002-01-29T20:07:15+00:00 2002-01-29T20:07:15+00:00
changeset 2256f81293c1
branch
bookmark
tag
user Jürgen Hermann <jhermann@users.sourceforge.net>
description Conversion to generated script stubs
files
Moved scripts from top-level dir to roundup.scripts subpackage http://hg.code.sf.net:8000/p/roundup/code/#changeset-326388b8604a5e61277078866f88dbcfcd945c94 Jürgen Hermann jhermann@users.sourceforge.net 2002-01-29T19:53:08+00:00 2002-01-29T19:53:08+00:00
changeset 326388b8604a
branch
bookmark
tag
user Jürgen Hermann <jhermann@users.sourceforge.net>
description Moved scripts from top-level dir to roundup.scripts subpackage
files