~sambuddhabasu1/mailman/fix_mailman_run_error

« back to all changes in this revision

Viewing changes to src/mailman/interfaces/nntp.py

  • Committer: Barry Warsaw
  • Date: 2012-04-01 18:53:38 UTC
  • mfrom: (7139.1.4 bug-967409)
  • Revision ID: barry@list.org-20120401185338-5qujo0c3kc9a8wtr
 * The `news` runner and queue has been renamed to the more accurate `nntp`.
   The runner has also been ported to Mailman 3 (LP: #967409).  Beta testers
   can can safely remove `$var_dir/queue/news`.

 * Configuration schema variable changes:
   [nntp]username -> [nntp]user
   [nntp]port (added)

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
 
28
28
class NewsModeration(Enum):
29
 
    # The newsgroup is not moderated
 
29
    # The newsgroup is not moderated.
30
30
    none = 0
31
31
    # The newsgroup is moderated, but allows for an open posting policy.
32
32
    open_moderated = 1
33
 
    # The newsgroup is moderated
 
33
    # The newsgroup is moderated.
34
34
    moderated = 2