diff options
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 + """ |
