| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Incorporated janne sinkkonen's fix, with a bit of a spin of my own. | klm | 1998-04-23 | 1 | -14/+9 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | From janne@avocado.pc.helsinki.fi Thu Apr 23 19:17:15 1998 Date: 16 Apr 1998 02:38:37 +0300 From: Janne Sinkkonen <janne@avocado.pc.helsinki.fi> To: mailman-developers@python.org Cc: ilpo@pcuf.fi Subject: [Mailman-developers] Double Reply-To:, answer_majordomo_mail, archives I have several minor things: First, when the "reply to the list" option of a list is set, it seems that a potential existing Reply-To: is not (always) stripped off. Instead there will be two Reply-To: headers, one for the list, one from the original sender. I guess this is a bug? Second, here's a working answer_majordomo_mail script. The script in 1.0b12 didn't work for me (the patch would be larger than the script itself, hence I include this here): #!/usr/local/bin/python # This is another script that's really just for my use, but # feel free to use it if you know how... import sys f = open('/dev/null', 'w') sys.stderr = f sys.path.append('/home/mailman/mailman/modules') import mm_message, mm_utils msg = mm_message.IncomingMessage() text = open('/home/mailman/mailman/misc/majordomo.answer.txt', 'r').read() mm_utils.SendTextToUser('Your mail to Majordomo...', text, msg.GetSender(), 'mailman-owner') I would also like to ask about the archives. The README says 'integrated with [...] external pipermail'. :) Besides the links and authorization service provided, what does this mean in practice? Should I run piper-hypermail from a crontab or is there something better around somewhere? -- Janne ------------------------------------------------------ Mailman-developers maillist - Mailman-developers@python.org http://www.python.org/mailman/listinfo/mailman-developers | ||||
| * | Whoops - mailowner was still trying to open a file in /tmp for logging | klm | 1998-04-10 | 2 | -10/+16 |
| | | | | | (and crashandburning when that file existed and was unwritable). | ||||
| * | Set stderr to the logger, to get errors logged if they occur. | mailman | 1998-04-10 | 1 | -3/+8 |
| | | |||||
| * | Preparing to package a distribution - add __version__ info. | mailman | 1998-04-09 | 1 | -0/+3 |
| | | |||||
| * | Preparing to package a distribution - add a module docstring and | mailman | 1998-04-09 | 4 | -8/+26 |
| | | | | | __version__ info. | ||||
| * | In addition to moderated messages, recognize error messages associated | mailman | 1998-04-08 | 1 | -2/+6 |
| | | | | | with spam and do not notify the sender that their message is being held. | ||||
| * | Add modest module docstring (while i happened to be there). | mailman | 1998-04-03 | 1 | -4/+8 |
| | | |||||
| * | Using StampedLogger (to logs/error) for stderr, for debugging. | klm | 1998-03-30 | 2 | -12/+16 |
| | | | | | Refined module doc string a bit. | ||||
| * | Substitute logging (via mm_utils.StampedLogger()) instead of | mailman | 1998-03-27 | 2 | -16/+48 |
| | | | | | | | | | | | substituting a file (which, if it's unwritable, crashes mailman) for stderr. Send a notice to mailman owner when a list has an email alias, but does not exist - i.e. email makes it to the wrapper script, etc. Turn the comment at the top to a module docstring. | ||||
| * | Do not send out "holding for approval" messages when the reason for | mailman | 1998-03-18 | 1 | -2/+5 |
| | | | | | the hold is list moderation. | ||||
| * | Removed spurious and dangerous /tmp debugging output file - unwritable | klm | 1998-03-08 | 1 | -3/+2 |
| | | | | | existence of the would silently prevent the post. | ||||
| * | Initial revision | mailman | 1998-02-27 | 4 | -0/+146 |
| | | |||||
| * | Initial revision | mailman | 1998-02-26 | 2 | -0/+48 |
