diff options
| author | bwarsaw | 2000-12-20 21:29:16 +0000 |
|---|---|---|
| committer | bwarsaw | 2000-12-20 21:29:16 +0000 |
| commit | 79cc2899ed288aac4ffb1b664977aa4ea5eac66a (patch) | |
| tree | e1614de9adbabf025107da0856334e0fbeba30b0 /Mailman/Queue/__init__.py | |
| parent | 1768e2166d1791630a728085ac95c32cbe5bb957 (diff) | |
| download | mailman-79cc2899ed288aac4ffb1b664977aa4ea5eac66a.tar.gz mailman-79cc2899ed288aac4ffb1b664977aa4ea5eac66a.tar.zst mailman-79cc2899ed288aac4ffb1b664977aa4ea5eac66a.zip | |
Multiple queue runner classes, in a new package Mailman.Queue.
Runner is the base class providing the framework for other qrunner
specializations.
IncomingRunner runs through qfiles/in taking messages from the smtpd,
sending them through the standard message handler pipeline and
potentially writing the message to qfiles/out or qfiles/news.
OutgoingRunner takes message from qfiles/out and hands them over to
the MTA.
NewsRunner takes message from qfiles/news and hands them over to the
news server.
Diffstat (limited to 'Mailman/Queue/__init__.py')
| -rw-r--r-- | Mailman/Queue/__init__.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Mailman/Queue/__init__.py b/Mailman/Queue/__init__.py new file mode 100644 index 000000000..a46d82f55 --- /dev/null +++ b/Mailman/Queue/__init__.py @@ -0,0 +1,15 @@ +# Copyright (C) 1998,1999,2000 by the Free Software Foundation, Inc. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License +# as published by the Free Software Foundation; either version 2 +# of the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
