~dushyant37/mailman/archiver-mm3

« back to all changes in this revision

Viewing changes to src/mailman/runners/maildir.py

  • Committer: Barry Warsaw
  • Date: 2011-06-01 21:09:32 UTC
  • Revision ID: barry@list.org-20110601210932-y0qw4ktxvu6fo4dq
Major terminology shift:

* Queue runners are now called just 'Runners' since several of them don't
  manage queue directories.
* Ban the term 'qrunner' too.
* The master queue runner watcher should now just be called the 'master' or
  the 'master runner'.
* bin/qrunner -> bin/runner
* mailman.qrunner log file -> mailman.runner
* master-qrunner.lck -> master.lck
* master-qrunner.pid -> master.pid

Also:

* Remove some obsolete files
* Begin the .txt -> .rst renaming

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
# You should have received a copy of the GNU General Public License along with
16
16
# GNU Mailman.  If not, see <http://www.gnu.org/licenses/>.
17
17
 
18
 
"""Maildir pre-queue runner.
 
18
"""Maildir runner.
19
19
 
20
20
Most MTAs can be configured to deliver messages to a `Maildir'[1].  This
21
21
runner will read messages from a maildir's new/ directory and inject them into
47
47
mechanism.
48
48
"""
49
49
 
50
 
# NOTE: Maildir delivery is experimental in Mailman 2.1.
 
50
# NOTE: Maildir delivery is experimental in Mailman 2.1, and untested in
 
51
# Mailman 3.  Instead, use LMTP delivery for Mailman 3.
51
52
 
52
53
import os
53
54
import errno