diff options
| author | Barry Warsaw | 2009-12-10 01:08:39 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2009-12-10 01:08:39 -0500 |
| commit | f23ac8ca30228cd66b9dcb106de3e935773e2363 (patch) | |
| tree | 040bf851e6f2b13717054c5061b06ba96cd80411 /src/mailman/interfaces/switchboard.py | |
| parent | 8c7ee646de9bcc42059ae852f5aaac0730aafe80 (diff) | |
| download | mailman-f23ac8ca30228cd66b9dcb106de3e935773e2363.tar.gz mailman-f23ac8ca30228cd66b9dcb106de3e935773e2363.tar.zst mailman-f23ac8ca30228cd66b9dcb106de3e935773e2363.zip | |
Diffstat (limited to 'src/mailman/interfaces/switchboard.py')
| -rw-r--r-- | src/mailman/interfaces/switchboard.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mailman/interfaces/switchboard.py b/src/mailman/interfaces/switchboard.py index 866093d12..6acb40275 100644 --- a/src/mailman/interfaces/switchboard.py +++ b/src/mailman/interfaces/switchboard.py @@ -32,8 +32,11 @@ from zope.interface import Interface, Attribute class ISwitchboard(Interface): """The switchboard.""" + name = Attribute( + """The name of the switchboard's queue.""") + queue_directory = Attribute( - """The name of the queue directory this switchboard is responsible for. + """The queue directory this switchboard is responsible for. This should be a subdirectory of the system-wide top-level queue directory. |
