summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
...
* Ignore the Makefilebwarsaw1998-05-261-0/+12
|
* Several important changes.bwarsaw1998-05-265-232/+323
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. For mail-wrapper.c and cgi-wrapper.c, most common routines have been moved to common.c. While there were some differences in the way these two wrappers worked (most notably in the error handling and reporting when UID's and GID's didn't match), they were easily merged. Fatal errors now always syslog and exit(1). 2. The exec*() call for running the new process has been changed and made consistent. For improved security, the absolute path to the Python interpreter (as discovered by configure) is compiled into these programs, and the environment variable PYTHONPATH is set to include only the absolute path the the installed Mailman package ($prefix/Mailman). Scripts are invoked by exec'ing the Python interpreter with the first argument being the absolute path to the script to run, along with any additional arguments on argc/argv. See the function run_script() in common.c for details. 3. alias-wrapper.c has not yet been fully merged. I gathered from Ken that it doesn't work completely well anyway. 4. check_caller() in common.c still checks the gid, but as we discussed before, this may be redundant. I wanted one check-in with a history of this feature first though. 5. Added an Emacs turd at the end of all files so that the C code will be edited using Python's standard C style. Reformatted existing code. 6. Removed pseudo-log history from comments at top of files.
* Makefile is no longer necessary, since it will be generated by thebwarsaw1998-05-261-71/+0
| | | | configure script from the new Makefile.in file.
* Autoconf template for this directory's Makefile.bwarsaw1998-05-261-0/+124
|
* Fixed a typo in the zipcode.viega1998-05-264-4/+4
|
* Added copyright notices to all source files where I am legally entitled to ↵viega1998-05-254-6/+82
| | | | | | | do so. Added a copy of the GNU GPL. Added information about mailman-users in README, and reworded some text in there (made the credits less verbose... perhaps they should move to a credits file?)
* Some inconsequential formatting changes.bwarsaw1998-05-012-148/+170
| | | | | | | | | - Use "Python" C editing style when used with X/Emacs - Make X/Emacs friendly by putting function opening braces in column zero and putting function name on separate line from return type - Also added a C local variables section
* Some inconsequential formatting changes.bwarsaw1998-05-011-43/+58
| | | | | | | | | | - Use "Python" C editing style when used with X/Emacs - Make X/Emacs friendly by putting function opening braces in column zero and putting function name on separate line from return type - Use C style comments instead of C++ style comments. Not all C compilers grok line comments.
* Well, make main return an int.klm1998-04-281-0/+2
|
* Declare main as an int routine so gcc doesn't complain, even though itklm1998-04-282-2/+2
| | | | doesn't return an int.
* Misuse of %s in format string for LEGAL_PARENT_[UG]ID was causingklm1998-04-281-3/+3
| | | | | | | segmentation fault when bad id was detected. Declare main as an int routine so gcc doesn't complain, even though it doesn't return an int.
* Added private_wrapper entry, for the private-archives cgi wrapper.mailman1998-04-111-1/+5
|
* John consolidated the cgi wrappers into a single source file.mailman1998-04-0311-901/+96
|
* I seem to have the right gid now - mail seems to be running asmailman1998-03-301-1/+1
| | | | daemon/other on my (sol 2.6) system.
* Added roster_wrapper target, for new (actually, extracted frommailman1998-03-301-1/+5
| | | | subscribe functionality) subscriber-roster.
* *** empty log message ***klm1998-03-301-0/+107
|
* Do not depend on write access to an arbitrary file name in /tmp forklm1998-03-081-5/+6
| | | | logging - just print to stdout for now. (Is this a security breach??)
* Not using /tmp/fart file, using regular print's instead - otherwisemailman1998-03-081-4/+4
| | | | | the program can be trivially made to fail by creating /tmp/fart such that daemon cannot overwrite it.
* Reverting to original setting that worked, despite the fact that imailman1998-03-051-1/+1
| | | | changed the mailman account GID.
* Track the change of the mailman group.mailman1998-03-051-1/+1
|
* Initial revisionmailman1998-02-2710-0/+902
|
* We use smtp's uid and gid - which happens to be that of root. Am imailman1998-02-261-2/+2
| | | | doing the wrong thing? It works, but i'm not clear about this.
* Initial revisionmailman1998-02-261-0/+135