summaryrefslogtreecommitdiff
path: root/scripts/driver (unfollow)
Commit message (Collapse)AuthorFilesLines
1999-12-16HandleBouncingAddress(): Because this message object is now abwarsaw1-1/+3
mimetools.Message (see scripts/mailowner), the body attribute doesn't get set. Fish the body out by using msg.rewindbody(); msg.fp.read(). We /really/ need one Message object that is an amalgam of rfc822.Message, mimetools.Message, and multifile.MultiFile!
1999-12-16HasExplicitDest(): The argument order of the re.match()s is backwards;bwarsaw1-4/+4
it should match the found recipient against the acceptable alternative.
1999-12-16Added "tee_to_stdout=0" argument to the LogStdErr() call, to avoidhmeland1-1/+1
cron mailing me the output sent to stdout on every run.
1999-12-16process(): Use only the From: field to get the name to stick in thebwarsaw1-1/+8
TOC. Try to use the From:'s name comment, otherwise fallback to just the address. Do /not/ use the Sender: field because by now it's been munged into the list-admin's address.
1999-12-16GetSenderName(): Removed.bwarsaw1-7/+1
1999-12-15When sending a list's digest, the list must be locked, and must bebwarsaw1-10/+20
saved after sending, otherwise the digest numbers and post numbers are not tracked correctly.
1999-12-14Must read stdin into a StringIO object so that its seekable, sincebwarsaw1-1/+3
Message.Message requires this.
1999-12-14convert to the new message delivery mechanismbwarsaw1-7/+11
1999-12-14Use one module global log file so we don't leak file descriptors.bwarsaw1-10/+8
1999-12-13Close the NNTP connection in a better way.bwarsaw1-7/+5
1999-12-13Be sure to close the NNTP connection so we don't leak file descriptorsbwarsaw1-13/+6
1999-12-13Typobwarsaw1-1/+1
1999-12-13Don't include process ids in messages since these are now implicitlybwarsaw1-11/+9
added by StampedLogger.
1999-12-13Slight change in formatbwarsaw1-3/+3
1999-12-13Always include the non-cached PID of the process doing the printing.bwarsaw1-1/+2
1999-12-13__get_f(): Open the log file in line buffered mode so flushesbwarsaw1-1/+1
shouldn't be necessary.
1999-12-12Get the gid_t type from configure.bwarsaw3-3/+6
1999-12-12check_caller(): Get the gid_t type from configure. Also use %ld tobwarsaw1-4/+4
print the gid values.
1999-12-11process(): Content-Description header could be missing. Don't try tobwarsaw1-1/+1
string.lower() it if so!
1999-12-11ExternalArchive(): Fixes proposed by Bernhard Reiter, specifically:bwarsaw1-2/+6
use the lower cased list name (i.e. the internal name) as the %(listname)s expansion; log a message when the external archivers exits with a non-zero status.
1999-12-11Pre-load the cgi module from our special one, similar to what happensbwarsaw1-0/+12
in scripts/driver. Maybe this will fix the problem with the weird Archiver import errors??
1999-12-11hold_for_approval(): When admin_immed_notify is false, the subjectbwarsaw1-0/+1
variable wouldn't get defined for responses to the sender. (Ricardo Kustner).
1999-12-11Added a warning to details windows, so users know that changing thebwarsaw1-0/+2
value here doesn't do anything.
1999-12-11Balazs Nagy <julian7@kva.hu> writes:bwarsaw1-4/+4
I did a little digging about entering text with accents. It's a bit curious that one can type accents in textarea but to textbox cannot. In the latter case you can see an escaped print of your input. In the end I came to htmlformat.py's InputObj. At this point I have a humble question: who put `-s around value? After a s/`value`/value/ in line #368, almost everything works fine, because this brings up a problem about quoting. Of course, the patch is here.
1999-12-11Increase the logging, because something weird is going on!bwarsaw1-5/+18
Also, catch socket.error's that can occur during the nntplib.NNTP() call.
1999-12-10do_child(): contains all the code that the child processes perform.bwarsaw1-76/+85
Added a note about the children needing to be reaped, but that's a little difficult right now.
1999-12-10It is not an error to get an ENOENT when stat'ing the digest file, itbwarsaw1-4/+2
just means that there /is/ no digest waiting to go out for this list. So don't log an error message.
1999-12-10test harness can take a list of file namesbwarsaw1-8/+10
1999-12-10If messages originate from Usenet, do not hold them for implicitbwarsaw1-2/+6
destination.