diff options
| author | Barry Warsaw | 2009-11-28 18:51:13 -0500 |
|---|---|---|
| committer | Barry Warsaw | 2009-11-28 18:51:13 -0500 |
| commit | ebb3ead38ca35fc053f6b4df3919499c266636ed (patch) | |
| tree | ac308c19163fe6a1e7a39434c8ae5e43a8ab9296 /src/mailman/interfaces/mta.py | |
| parent | 5f799a91a16e54f8d7f6333b49a7674b92cc204a (diff) | |
| download | mailman-ebb3ead38ca35fc053f6b4df3919499c266636ed.tar.gz mailman-ebb3ead38ca35fc053f6b4df3919499c266636ed.tar.zst mailman-ebb3ead38ca35fc053f6b4df3919499c266636ed.zip | |
Diffstat (limited to 'src/mailman/interfaces/mta.py')
| -rw-r--r-- | src/mailman/interfaces/mta.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/mailman/interfaces/mta.py b/src/mailman/interfaces/mta.py index 65696a10d..0186fa679 100644 --- a/src/mailman/interfaces/mta.py +++ b/src/mailman/interfaces/mta.py @@ -50,8 +50,13 @@ class IMailTransportAgentAliases(Interface): def delete(mlist): """Tell the MTA that the mailing list was deleted.""" - def regenerate(): - """Regenerate the full aliases file.""" + def regenerate(output=None): + """Regenerate the full aliases file. + + :param output: The file name or file object to send the output to. If + not given or None, and MTA specific file is used. + :type output: string, file object, None + """ |
