<feed xmlns='http://www.w3.org/2005/Atom'>
<title>mailman.git/modules, branch master</title>
<subtitle>The GNU Mailing List manager.
</subtitle>
<id>https://git.neuromancer.sk/mailman.git/atom?h=master</id>
<link rel='self' href='https://git.neuromancer.sk/mailman.git/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/mailman.git/'/>
<updated>1998-06-19T19:33:41Z</updated>
<entry>
<title>All these files have been moved to the Mailman/Cgi package directory</title>
<updated>1998-06-19T19:33:41Z</updated>
<author>
<name>bwarsaw</name>
</author>
<published>1998-06-19T19:33:41Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/mailman.git/commit/?id=9a7f36b1a8820a8abf8046755dd1d0ad5a201d0e'/>
<id>urn:sha1:9a7f36b1a8820a8abf8046755dd1d0ad5a201d0e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>All these files have been moved to the Mailman directory (and some renamed)</title>
<updated>1998-06-19T19:32:48Z</updated>
<author>
<name>bwarsaw</name>
</author>
<published>1998-06-19T19:32:48Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/mailman.git/commit/?id=99f721f65906e4f2d1036da3a886426aa0ec5aea'/>
<id>urn:sha1:99f721f65906e4f2d1036da3a886426aa0ec5aea</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fixed a typo that probably kept it from loading.</title>
<updated>1998-06-16T08:32:29Z</updated>
<author>
<name>viega</name>
</author>
<published>1998-06-16T08:32:29Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/mailman.git/commit/?id=19127aaa26a292c18cb1393e8625d04decb7e078'/>
<id>urn:sha1:19127aaa26a292c18cb1393e8625d04decb7e078</id>
<content type='text'>
</content>
</entry>
<entry>
<title>From the error message, and what I've learned about base64, my best</title>
<updated>1998-06-14T18:01:14Z</updated>
<author>
<name>viega</name>
</author>
<published>1998-06-14T18:01:14Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/mailman.git/commit/?id=7db9c87dca513d5662e36465994bf460c2cef17c'/>
<id>urn:sha1:7db9c87dca513d5662e36465994bf460c2cef17c</id>
<content type='text'>
guess about the transient errors (ie, some people get them, some
people do not) is that sometimes the base64 encoding can cause \n's to
get in the string, which the mime stuff will treat as a newline.  So I
replace \n w/ @ before putting it in the cookie, and do the reverse
before checking the cookie.  Hopefully we won't hear about this
problem again.
</content>
</entry>
<entry>
<title>There's now a global USE_CRYPT variable.  It *should* be set by the</title>
<updated>1998-06-14T02:13:02Z</updated>
<author>
<name>viega</name>
</author>
<published>1998-06-14T02:13:02Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/mailman.git/commit/?id=2b3256843447fa2d17cb47fa1aa67462d9f45dd8'/>
<id>urn:sha1:2b3256843447fa2d17cb47fa1aa67462d9f45dd8</id>
<content type='text'>
autoconf stuff.  Basically, the autoconf script should fire up Python
and see if crypt can be imported.  Of course, if a previous
installation has a different value than configure determined, it
should be used instead, otherwise stuff will mess up.
</content>
</entry>
<entry>
<title>Provides a method wrap_func(func, debug, print_env).  If debug is off,</title>
<updated>1998-06-14T00:58:33Z</updated>
<author>
<name>viega</name>
</author>
<published>1998-06-14T00:58:33Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/mailman.git/commit/?id=8dfd4643c7d8216cfbf6e180ed7b868715b9e775'/>
<id>urn:sha1:8dfd4643c7d8216cfbf6e180ed7b868715b9e775</id>
<content type='text'>
the StampedLogger is initialized.  If debug is on, or the
StampedLogger errors, func is run in a try-except block.  If there's
an error, it's printed to the web page, along with the environment if
print_env is on.
Based off Michael McLay's subscribe script, but I wanted to avoid as
much code duplication as possible, which led to this strategy.
</content>
</entry>
<entry>
<title>Added debug.py on suggestion from Michael McLay.  Added his</title>
<updated>1998-06-14T00:53:58Z</updated>
<author>
<name>viega</name>
</author>
<published>1998-06-14T00:53:58Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/mailman.git/commit/?id=c29ba417e715cce7f70c195bf437755639a85ed6'/>
<id>urn:sha1:c29ba417e715cce7f70c195bf437755639a85ed6</id>
<content type='text'>
print_trace() function essentially verbatim (which is actually Ken's
code, so no need for an assignment, though it may be a good idea
anyway).
Added my own print_environ() call since Michael didn't provide one.
</content>
</entry>
<entry>
<title>Modified to install the stuff in Cgi.  It's probably not the right way</title>
<updated>1998-06-14T00:50:36Z</updated>
<author>
<name>viega</name>
</author>
<published>1998-06-14T00:50:36Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/mailman.git/commit/?id=ad49417e699d1b9235bc38b1378ec86cdfba40b5'/>
<id>urn:sha1:ad49417e699d1b9235bc38b1378ec86cdfba40b5</id>
<content type='text'>
to do it, but I did want to at least install something that works
(I.e., I fully expect Barry to say, "what a hack, I'm going to do it
right!").
</content>
</entry>
<entry>
<title>These are the files that used to be in ../cgi, except they no longer</title>
<updated>1998-06-14T00:48:39Z</updated>
<author>
<name>viega</name>
</author>
<published>1998-06-14T00:48:39Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/mailman.git/commit/?id=05cf09209ce15e0801379f8ab5566b43d3d3c9a6'/>
<id>urn:sha1:05cf09209ce15e0801379f8ab5566b43d3d3c9a6</id>
<content type='text'>
handle logging to an error file, and no longer import paths.  Also,
any checks for __main__ have been removed.
</content>
</entry>
<entry>
<title>Moved _mime_separator from InitVars to InitTempVars.</title>
<updated>1998-06-13T22:00:58Z</updated>
<author>
<name>viega</name>
</author>
<published>1998-06-13T22:00:58Z</published>
<link rel='alternate' type='text/html' href='https://git.neuromancer.sk/mailman.git/commit/?id=7f9a9be4291b1c350251535788436d1f2a301e7b'/>
<id>urn:sha1:7f9a9be4291b1c350251535788436d1f2a301e7b</id>
<content type='text'>
I thought that got redone by Ken??
</content>
</entry>
</feed>
